Skip to content

Commit

Permalink
Bump the all group in /localcert with 9 updates (#62)
Browse files Browse the repository at this point in the history
* Bump the all group in /localcert with 9 updates

Bumps the all group in /localcert with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [cffi](https://github.com/python-cffi/cffi) | `1.15.1` | `1.16.0` |
| [charset-normalizer](https://github.com/Ousret/charset_normalizer) | `3.2.0` | `3.3.2` |
| [cryptography](https://github.com/pyca/cryptography) | `41.0.3` | `41.0.5` |
| [django](https://github.com/django/django) | `4.2.4` | `4.2.7` |
| [django-allauth](https://github.com/pennersr/django-allauth) | `0.55.2` | `0.58.1` |
| [psycopg2-binary](https://github.com/psycopg/psycopg2) | `2.9.7` | `2.9.9` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.0.4` | `2.0.7` |
| [black](https://github.com/psf/black) | `23.7.0` | `23.10.1` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.3.0` | `7.3.2` |


Updates `cffi` from 1.15.1 to 1.16.0
- [Release notes](https://github.com/python-cffi/cffi/releases)
- [Commits](python-cffi/cffi@v1.15.1...v1.16.0)

Updates `charset-normalizer` from 3.2.0 to 3.3.2
- [Release notes](https://github.com/Ousret/charset_normalizer/releases)
- [Changelog](https://github.com/Ousret/charset_normalizer/blob/master/CHANGELOG.md)
- [Commits](jawah/charset_normalizer@3.2.0...3.3.2)

Updates `cryptography` from 41.0.3 to 41.0.5
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](pyca/cryptography@41.0.3...41.0.5)

Updates `django` from 4.2.4 to 4.2.7
- [Commits](django/django@4.2.4...4.2.7)

Updates `django-allauth` from 0.55.2 to 0.58.1
- [Changelog](https://github.com/pennersr/django-allauth/blob/main/ChangeLog.rst)
- [Commits](pennersr/django-allauth@0.55.2...0.58.1)

Updates `psycopg2-binary` from 2.9.7 to 2.9.9
- [Changelog](https://github.com/psycopg/psycopg2/blob/master/NEWS)
- [Commits](psycopg/psycopg2@2.9.7...2.9.9)

Updates `urllib3` from 2.0.4 to 2.0.7
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.0.4...2.0.7)

Updates `black` from 23.7.0 to 23.10.1
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@23.7.0...23.10.1)

Updates `coverage` from 7.3.0 to 7.3.2
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.3.0...7.3.2)

---
updated-dependencies:
- dependency-name: cffi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: cryptography
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: django
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: django-allauth
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: psycopg2-binary
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: coverage
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>

* Middleware now needed for allauth

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Robert Alexander <[email protected]>
  • Loading branch information
dependabot[bot] and ralexander-phi authored Nov 8, 2023
1 parent f136a07 commit decb7fb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions localcert/localcert/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"django.middleware.clickjacking.XFrameOptionsMiddleware",
"allauth.account.middleware.AccountMiddleware",
]

ROOT_URLCONF = "localcert.urls"
Expand Down
4 changes: 2 additions & 2 deletions localcert/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
beautifulsoup4==4.12.2
black==23.7.0
coverage==7.3.0
black==23.10.1
coverage==7.3.2
dnspython==2.4.2
flake8==6.1.0
pip-upgrader==1.4.15
14 changes: 7 additions & 7 deletions localcert/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
asgiref==3.7.2
certifi==2023.7.22
cffi==1.15.1
charset-normalizer==3.2.0
cryptography==41.0.3
cffi==1.16.0
charset-normalizer==3.3.2
cryptography==41.0.5
defusedxml==0.7.1
Django==4.2.4
django-allauth==0.55.2
Django==4.2.7
django-allauth==0.58.1
django-csp==3.7
gunicorn==21.2.0
idna==3.4
oauthlib==3.2.2
psycopg2-binary==2.9.7
psycopg2-binary==2.9.9
pycparser==2.21
PyJWT==2.8.0
python3-openid==3.2.0
requests==2.31.0
requests-oauthlib==1.3.1
sqlparse==0.4.4
urllib3==2.0.4
urllib3==2.0.7

0 comments on commit decb7fb

Please sign in to comment.