Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Bump the pypi-dependencies group in /requirements with 53 updates #2

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 3, 2024

Bumps the pypi-dependencies group in /requirements with 53 updates:

Package From To
asgiref 3.7.2 3.8.1
cbor2 5.6.2 5.6.4
certifi 2024.7.4 2024.8.30
cffi 1.16.0 1.17.0
click-didyoumean 0.3.0 0.3.1
commonground-api-common 1.13.0 1.13.2
django-admin-index 3.1.0 3.1.1
django-filter 24.2 24.3
django-formtools 2.3 2.5.1
django-markup 1.8.1 1.9
django-otp 1.0.6 1.5.2
django-sendfile2 0.7.0 0.7.1
django-setup-configuration 0.1.0 0.3.0
django-solo 2.2.0 2.3.0
djangorestframework-gis 1.0 1.1
drf-nested-routers 0.93.3 0.94.1
ecs-logging 2.1.0 2.2.0
humanize 4.9.0 4.10.0
idna 3.7 3.8
isodate 0.6.0 0.6.1
josepy 1.9.0 1.14.0
jsonschema 4.17.3 4.23.0
kombu 5.3.5 5.4.0
markupsafe 2.1.3 2.1.5
mozilla-django-oidc 4.0.0 4.0.1
phonenumberslite 8.13.30 8.13.44
prompt-toolkit 3.0.43 3.0.47
pycparser 2.20 2.22
pyjwt 2.4.0 2.9.0
pyopenssl 24.0.0 24.2.1
pyrsistent 0.17.3 0.20.0
python-dotenv 1.0.0 1.0.1
pyyaml 6.0.1 6.0.2
sentry-sdk 2.12.0 2.13.0
sqlparse 0.5.0 0.5.1
typing-extensions 4.9.0 4.12.2
uwsgi 2.0.23 2.0.26
webauthn 2.0.0 2.2.0
wrapt 1.14.1 1.16.0
zgw-consumers 0.29.0 0.35.1
beautifulsoup4 4.9.3 4.12.3
black 24.3.0 24.8.0
cssselect 1.1.0 1.2.0
django-debug-toolbar 4.2.0 4.4.6
django-webtest 1.9.7 1.9.12
factory-boy 3.2.0 3.3.1
flake8 7.0.0 7.1.1
freezegun 1.1.0 1.5.1
pip-tools 7.3.0 7.4.1
requests-mock 1.8.0 1.12.1
soupsieve 2.2.1 2.6
sphinx-tabs 3.4.4 3.4.5
yarl 1.9.4 1.9.7

Updates asgiref from 3.7.2 to 3.8.1

Changelog

Sourced from asgiref's changelog.

3.8.1 (2024-03-22)

  • Fixes a regression in 3.8.0 affecting nested task cancellation inside sync_to_async.

3.8.0 (2024-03-20)

  • Adds support for Python 3.12.

  • Drops support for (end-of-life) Python 3.7.

  • Fixes task cancellation propagation to subtasks when using synchronous Django middleware.

  • Allows nesting sync_to_async via asyncio.wait_for.

  • Corrects WSGI adapter handling of root path.

  • Handles case where "client" is None in WsgiToAsgi adapter.

Commits
  • e38d3c3 Releasing 3.8.1
  • 8769434 Raise exception if exec_coro is done.
  • 852344e Add tox.ini to MANIFEST.in
  • f710647 Fix a rST problem in the pathsend extension documentation
  • 4c28385 Releasing 3.8.0
  • 4209b6c Correct WSGI adapter handling of root path.
  • 8cf847a Update error-on-send text in main spec
  • 8108512 Move variable initialization in AsyncToSync from init to call (#440)
  • 6f02daa Clarify send error behaviour more clearly
  • 0503c2c Fix task cancellation propagation to subtasks when using sync middleware (#435)
  • Additional commits viewable in compare view

Updates cbor2 from 5.6.2 to 5.6.4

Release notes

Sourced from cbor2's releases.

5.6.4

  • Fixed compilation of C extension failing on GCC 14
  • Fixed compiler warnings when building C extension

5.6.3

  • Fixed decoding of epoch-based dates being affected by the local time zone in the C extension
Changelog

Sourced from cbor2's changelog.

Version history

.. currentmodule:: cbor2

This library adheres to Semantic Versioning <http://semver.org/>_.

UNRELEASED

  • Added support for Python 3.13

5.6.4 (2024-06-06)

  • Fixed compilation of C extension failing on GCC 14
  • Fixed compiler warnings when building C extension

5.6.3 (2024-04-11)

  • Fixed decoding of epoch-based dates being affected by the local time zone in the C extension

5.6.2 (2024-02-19)

  • Fixed __hash__() of the C version of the CBORTag type crashing when there's a recursive reference cycle
  • Fixed type annotation for the file object in cbor2.dump(), cbor2.load(), CBOREncoder and CBORDecoder to be IO[bytes] instead of BytesIO
  • Worked around a CPython bug <https://github.com/python/cpython/issues/99612>_ that caused a SystemError to be raised, or even a buffer overflow to occur when decoding a long text string that contained only ASCII characters
  • Changed the return type annotations of cbor2.load() and cbor2.load() to return Any instead of object so as not to force users to make type casts

5.6.1 (2024-02-01)

  • Fixed use-after-free in the decoder's C version when prematurely encountering the end of stream
  • Fixed the C version of the decoder improperly raising CBORDecodeEOF when decoding a text string longer than 65536 bytes

5.6.0 (2024-01-17)

  • Added the cbor2 command line tool (for pipx run cbor2)
  • Added support for native date encoding (bschoenmaeckers)
  • Made the C extension mandatory when the environment variable CBOR2_BUILD_C_EXTENSION is set to 1.
  • Fixed SystemError in the C extension when decoding a Fractional with a bad number of arguments or a non-tuple value
  • Fixed SystemError in the C extension when the decoder object hook raises an exception
  • Fixed a segmentation fault when decoding invalid unicode data
  • Fixed infinite recursion when trying to hash a CBOR tag whose value points to the tag

... (truncated)

Commits
  • 13b7541 Bumped up the version
  • dba7265 Updated pre-commit modules and applied fixes
  • 13681d5 Fixed a number of compiler warnings (#239)
  • 573d520 Added the pull request template
  • a4ebd57 Fixed incorrect return type of raise_from() (#238)
  • 8794b37 [pre-commit.ci] pre-commit autoupdate (#233)
  • e1b65f2 [pre-commit.ci] pre-commit autoupdate (#230)
  • ed73868 Fixed conflict when uploading binary wheel artifacts
  • 34d39ef Updated the release date of v5.6.3
  • c440117 Fixed compiler error in CBORDecoder_decode_epoch_date()
  • Additional commits viewable in compare view

Updates certifi from 2024.7.4 to 2024.8.30

Commits

Updates cffi from 1.16.0 to 1.17.0

Release notes

Sourced from cffi's releases.

v1.17.0

  • Add support for Python 3.13.
    • Free-threaded CPython builds (i.e. python3.13t and the 3.13t ABI) are not currently supported.
  • In API mode, when you get a function from a C library by writing fn = lib.myfunc, you get an object of a special type for performance reasons, instead of a <cdata 'C-function-type'>. Before version 1.17 you could only call such objects. You could write ffi.addressof(lib, "myfunc") in order to get a real <cdata> object, based on the idea that in these cases in C you'd usually write &myfunc instead of myfunc. In version 1.17, the special object lib.myfunc can now be passed in many places where CFFI expects a regular <cdata> object. For example, you can now pass it as a callback to a C function call, or write it inside a C structure field of the correct pointer-to-function type, or use ffi.cast() or ffi.typeof() on it.

Full Changelog: python-cffi/cffi@v1.16.0...v1.17.0

v1.17.0rc1

  • Add support for Python 3.13.
  • In API mode, when you get a function from a C library by writing fn = lib.myfunc, you get an object of a special type for performance reasons, instead of a object. For example, you can now pass it as a callback to a C function call, or write it inside a C structure field of the correct pointer-to-function type, or use ffi.cast() or ffi.typeof() on it.
  • Build wheels for musllinux aarch64.
Commits

Updates click-didyoumean from 0.3.0 to 0.3.1

Release notes

Sourced from click-didyoumean's releases.

v0.3.1

What's Changed

New Contributors

Full Changelog: click-contrib/click-didyoumean@v0.3.0...v0.3.1

Commits
  • e571cc8 Update pyproject.toml
  • ffdbc35 Merge pull request #19 from sisp/fix
  • 5c013e8 Run CI for Python 3.6 on Ubuntu 20.04
  • 0a1d2aa Install isort only for Python <4
  • 6641cde Merge pull request #18 from sisp/chore/remove-python-upper-bound
  • d1db080 Remove upper bound from Python version specifier
  • e278a2d Use setup-python v2
  • 417b79d Test on Python 3.10
  • d93a155 Merge pull request #14 from Mogost/patch-1
  • 3746002 Add homepage url and readme for pypi
  • Additional commits viewable in compare view

Updates commonground-api-common from 1.13.0 to 1.13.2

Changelog

Sourced from commonground-api-common's changelog.

1.13.2 (2024-07-05)

  • Added identificatie to UniekeIdentificatieValidator error message

1.13.1 (2024-05-28)

  • Marked notifications view scopes as private
  • Added natural keys to authorization models
Commits
  • 88d45a4 🔖 release 1.13.2
  • 4ea0638 Merge pull request #31 from maykinmedia/feature/oz-1256-validation-id-in-error
  • 5c9cb4dopen-zaak/open-zaak#1256
  • ed4f335 Merge pull request #30 from maykinmedia/release/1.13.1
  • b64ab73 🔖 release 1.13.1
  • 53e9051 Merge pull request #27 from maykinmedia/feature/ci-cd-configure-auth
  • a0f5174 Merge pull request #28 from maykinmedia/issue/duplicated-scopes
  • d407fe6 ♻️ don't show scopes from notifications.api in the ref page
  • 686c00f ✨ Add natural keys to allow loading of auth config dumps
  • See full diff in compare view

Updates django-admin-index from 3.1.0 to 3.1.1

Changelog

Sourced from django-admin-index's changelog.

3.1.1 (2024-02-29)

Bugfix release

  • Fixed N + 1 query regression introduced in 3.1.0
  • Fixed typos in README
  • Formatted the code with latest black version
  • Added missing Dutch translations
Commits
  • 73d758c 🔖 Bump version to 3.1.1 and update changelog
  • 8daa20e 🌐 Add Dutch translations
  • 0475c47 🚨 Format with latest black version
  • 95dd99a Merge pull request #90 from onyx-flame/bugfix/excess-sql-queries
  • 284421c Merge pull request #91 from maykinmedia/Viicos-patch-1
  • 183a3f2 Fix typos in readme
  • 3ca400c fix: got rid of excess SQL queries
  • See full diff in compare view

Updates django-filter from 24.2 to 24.3

Changelog

Sourced from django-filter's changelog.

Version 24.3 (2024-08-02)

  • Adds official support for Django 5.1.

  • Allow using dictionaries for grouped choices on Django 5.0+.

    Thanks to Sævar Öfjörð Magnússon.

  • Adds unknown_field_behavior FilterSet option to allowing warning and ignore behaviours for unknown field types during FilterSet generation.

    Thanks to Loes.

Commits

Updates django-formtools from 2.3 to 2.5.1

Changelog

Sourced from django-formtools's changelog.

2.5.1 (2023-12-19)

  • Version 2.5 was never released on PyPi due to a pyproject.toml misconfiguration.

2.5 (2023-11-28)

  • Confirmed support for Python 3.12 and Django 5.0.

  • Replaced deprecated pkg_resources usage by importlib.metadata.

  • Applied PEP 621 (replaced setup.py with pyproject.toml).

  • Removed Python 3.7 support.

  • Updated translations (Galician, Portuguese, Slovenian, Serbian).

2.4.1 (2023-05-13)

  • Fixed a regression causing a recursion error when getting get_form_list() from a form condition (#220).

  • Removed Python 3.6 support and added Python 3.11 to test matrix.

  • Dropped testing for Django < 3.2 and confirmed support for Django 4.2.

2.4 (2022-09-28)

  • Updated translations from Transifex.

  • Any kwarg passed to render_goto_step() is passed over to render.

  • WizardView is using get_form_list() instead of directly accessing form_list (#168).

  • Added Python 3.10 to test matrix.

  • Dropped testing for Django 3.1.

  • Confirmed support for Django 4.0 and 4.1.

Commits
  • a60dbd9 Fixes #260 - Add tool.setuptools_scm section in pyproject
  • a8e16fc Updated translations from Transifex
  • 3dff6e6 Update Transifex config syntax for new client
  • 31c202c Updated changelog.rst for 2.5.0 release
  • 9548140 Add ruff rules for naming, performance, simplification, and timezones
  • bd3d975 Removed unrelated content in README
  • e56c457 Replace flake8 with ruff
  • e7b9365 Add pre-commit checks
  • 1652dec PEP 621: Migrate from setup.py to pyproject.toml
  • a4db7c5 Better example HTML in docs for previous/first buttons
  • Additional commits viewable in compare view

Updates django-markup from 1.8.1 to 1.9

Release notes

Sourced from django-markup's releases.

v1.9

What's Changed

Full Changelog: bartTC/django-markup@v1.8.1...v1.9

Changelog

Sourced from django-markup's changelog.

v1.9 (2024-08-11):

  • Minor Type Annotation fixes.
  • Switch from pipenv to Poetry.
  • Added support for Django 5.1.
Commits

Updates django-otp from 1.0.6 to 1.5.2

Changelog

Sourced from django-otp's changelog.

v1.5.2 - August 18, 2024 - otp_verification_failed signal

  • [#150](https://github.com/django-otp/django-otp/issues/150)_: Add signal when OTP verification fails

.. _#150: django-otp/django-otp#150

v1.5.1 - July 23, 2024 - Admin search fields

  • [#147](https://github.com/django-otp/django-otp/issues/147)_: Add search ability in admin using username and email

.. _#147: django-otp/django-otp#147

v1.5.0 - April 16, 2024 - Support segno for QR codes

  • [#141](https://github.com/django-otp/django-otp/issues/141): Support alternative QR code library segno.

    Previously, only the qrcode_ library was supported.

    Use segno by installing django-otp[segno] or just install the segno package.

.. _#141: django-otp/django-otp#141 .. _segno: https://pypi.python.org/pypi/segno/

v1.4.1 - April 10, 2024 - Minor EmailDevice updates

  • [#140](https://github.com/django-otp/django-otp/issues/140)_: Support customization of email delivery.

    See the :class:~django_otp.plugins.otp_email.models.EmailDevice documentation for API details.

  • Support translation of the "sent by email" message.

.. _#140: django-otp/django-otp#140

v1.4.0 - April 09, 2024 - Add TimestampMixin

  • [#137](https://github.com/django-otp/django-otp/issues/137)_: Add TimestampMixin

    Add a new TimestampMixin with created_at and last_used_at fields for device models.

... (truncated)

Commits
  • 8e30f75 Version 1.5.2
  • 36c516c Documentation cleanup
  • b43e18b Add signal when OTP verification fails (#150)
  • c18b38d Version 1.5.1
  • 0acb5ed Search field cleanup
  • c22f993 Added search ability in admin using username and email (#147)
  • 1cb288f Version 1.5.0
  • a9062d9 Add support for segno as alternative to qrcode for QR image generation
  • 48996ef Version 1.4.1
  • 5bd3a1a Documentation and internationalization updates.
  • Additional commits viewable in compare view

Updates django-sendfile2 from 0.7.0 to 0.7.1

Changelog

Sourced from django-sendfile2's changelog.

0.7.1

:release-date: 2024-02-17

  • Drop Python 3.7 support
  • Drop Django 3.2 and 4.0 support
  • Add Python 3.11 and 3.12 support
  • Add Django 4.2 and 5.0 support
Commits

Updates django-setup-configuration from 0.1.0 to 0.3.0

Changelog

Sourced from django-setup-configuration's changelog.

0.3.0 (2024-07-15)

  • added option --dry-run for generate_config_docs management command to check that docs are up-to-date without creating them.

0.2.0 (2024-07-11)

  • generate_config_docs management command added to autogenerate documentation based on configurationsteps
Commits
  • 190bcf3 Release 0.3
  • f2aebc8 Merge pull request #15 from maykinmedia/issue/13-config-docs-dry-run
  • 6e7e9d5 #13 Add command option to check that docs are up-to-date
  • 0bd1602 Release 0.2
  • 6e9a07c Merge pull request #9 from maykinmedia/feature/configuration-docs
  • 5629f83 #8 Define related_settings on ConfigSettings
  • 9911b82 Update documentation, type annotations + other PR feedback
  • 33a4532 #8 Refactor ConfigSettings and management command
  • fe6e798 #8 Integrate cration of docs with config steps + other feedback
  • b7a5383 #8 Add documentation for generation of config docs
  • Additional commits viewable in compare view

Updates django-solo from 2.2.0 to 2.3.0

Release notes

Sourced from django-solo's releases.

2.3.0

What's Changed

New Contributors

Full Changelog: lazybird/django-solo@2.2.0...2.3.0

Changelog

Sourced from django-solo's changelog.

django-solo-2.3.0

Date: 1 July, 2024

  • Add typing support
  • Deprecate solo.models.get_cache
  • Switch to pyproject.toml
  • Switch to Ruff for formatting and linting
Commits

Updates djangorestframework-gis from 1.0 to 1.1

Release notes

Sourced from djangorestframework-gis's releases.

1.1.0 [2024-08-17]

Features

  • Allowed GeoFeatureModelSerializer to support models without geometry field.

Changes

Dependencies:

  • Bumped django-filters~=23.5.

  • Added Django 4.2, 5.0, 5.1 to automated testing build.

  • Dropped several EOL dependencies from automated testing build:

    • Python 3.6 and 3.7.
    • Django 2.2, 3.0, 3.1 and 4.0.
    • djangorestframework < 3.12.

    The library may continue working with the dependencies listed above, but it's not guaranteed.

Changelog

Sourced from djangorestframework-gis's changelog.

Version 0.11.1 [2017-05-05]

  • [#119](https://github.com/openwisp/django-rest-framework-gis/issues/119) <https://github.com/openwisp/django-rest-framework-gis/issues/119>_: Added support to "all" fields in serializer
  • [#130](https://github.com/openwisp/django-rest-framework-gis/issues/130) <https://github.com/openwisp/django-rest-framework-gis/pull/130>_: Added compatibility with DRF 3.6
Commits
  • 927c9ee 1.1.0 release
  • 533567a [deps] Allow djangorestframework up to 3.15.x
  • 3449785 [deps] Update psycopg2 requirement from ~=2.8.0 to ~=2.9.9
  • 00096c0 [deps] Update django-filter requirement from ~=23.5 to >=23.5,<25.0
  • 2f6df04 [deps/ci] QA reformat, updated CI, updated deps
  • 110abaa [docs] Added Issue Template, PR Template
  • 01e43df [deps] Update openwisp-utils[qa] requirement from ~=1.0.0 to ~=1.0.5
  • 33df16c [deps] Enabled dependabot
  • 4e661aa [docs] Fixed build status badge
  • 4f244d5 [feature] Allow geometry-less models #282
  • Additional commits viewable in compare view

Updates drf-nested-routers from 0.93.3 to 0.94.1

Commits
  • 6144169 Bump version: 0.94.0 → 0.94.1
  • 299c073 Merge pull request #344 from intgr-forks/test-with-latest-django-drf-python
  • f946fd3 Update requirements.txt
  • b3ecc12 Keep index.md & README.md in sync
  • 9747257 Try Python 3.13-dev?
  • dacd8e9 Updates
  • f87e2e6 Merge pull request #343 from intgr-forks/add-python-typing-marker
  • a5fc80b Merge pull request #325 from alanjds/pyup-update-flake8-6.1.0-to-7.0.0
  • 357ecad Enable testing with Python 3.12, Django 5.0, DRF 3.15
  • fae1795 Mark package as including typehints
  • Additional commits viewable in compare view

Updates ecs-logging from 2.1.0 to 2.2.0

Release notes

Sourced from ecs-logging's releases.

2.2.0

What's Changed

Features

  • Rewrite type annotations (#119)
  • Make it possible override the JSON serializer in StructlogFormatter (#114)

Bugfixes

  • Don't de-dot ecs.version (#118)
  • Use fromtimestamp instead of deprecated utcfromtimestamp (#105)
  • Remove unused imports and fix an undefined name (#101)

New Contributors

Full Changelog: elastic/ecs-logging-python@2.1.0...2.2.0

Changelog

Sourced from ecs-logging's changelog.

2.2.0 (2024-06-28)

  • Rewrite type annotations (#119)
  • Don't de-dot ecs.version (#118)
  • Make it possible override the JSON serializer in StructlogFormatter (#114)
  • Use fromtimestamp instead of deprecated utcfromtimestamp (#105)
  • Remove unused imports and fix an undefined name (#101)
Commits

Updates humanize from 4.9.0 to 4.10.0

Release notes

Sourced from humanize's releases.

4.10.0

Changed

  • Replace deprecated pydocstyle with Ruff and update to Black 2024 style (#170) @​hugovk

Fixed

Bumps the pypi-dependencies group in /requirements with 53 updates:

| Package | From | To |
| --- | --- | --- |
| [asgiref](https://github.com/django/asgiref) | `3.7.2` | `3.8.1` |
| [cbor2](https://github.com/agronholm/cbor2) | `5.6.2` | `5.6.4` |
| [certifi](https://github.com/certifi/python-certifi) | `2024.7.4` | `2024.8.30` |
| [cffi](https://github.com/python-cffi/cffi) | `1.16.0` | `1.17.0` |
| [click-didyoumean](https://github.com/click-contrib/click-didyoumean) | `0.3.0` | `0.3.1` |
| [commonground-api-common](https://github.com/maykinmedia/commonground-api-common) | `1.13.0` | `1.13.2` |
| [django-admin-index](https://github.com/maykinmedia/django-admin-index) | `3.1.0` | `3.1.1` |
| [django-filter](https://github.com/carltongibson/django-filter) | `24.2` | `24.3` |
| [django-formtools](https://github.com/jazzband/django-formtools) | `2.3` | `2.5.1` |
| [django-markup](https://github.com/bartTC/django-markup) | `1.8.1` | `1.9` |
| [django-otp](https://github.com/django-otp/django-otp) | `1.0.6` | `1.5.2` |
| [django-sendfile2](https://github.com/moggers87/django-sendfile2) | `0.7.0` | `0.7.1` |
| [django-setup-configuration](https://github.com/maykinmedia/django-setup-configuration) | `0.1.0` | `0.3.0` |
| [django-solo](https://github.com/lazybird/django-solo) | `2.2.0` | `2.3.0` |
| [djangorestframework-gis](https://github.com/openwisp/django-rest-framework-gis) | `1.0` | `1.1` |
| [drf-nested-routers](https://github.com/alanjds/drf-nested-routers) | `0.93.3` | `0.94.1` |
| [ecs-logging](https://github.com/elastic/ecs-logging-python) | `2.1.0` | `2.2.0` |
| [humanize](https://github.com/python-humanize/humanize) | `4.9.0` | `4.10.0` |
| [idna](https://github.com/kjd/idna) | `3.7` | `3.8` |
| [isodate](https://github.com/gweis/isodate) | `0.6.0` | `0.6.1` |
| [josepy](https://github.com/certbot/josepy) | `1.9.0` | `1.14.0` |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.17.3` | `4.23.0` |
| [kombu](https://github.com/celery/kombu) | `5.3.5` | `5.4.0` |
| [markupsafe](https://github.com/pallets/markupsafe) | `2.1.3` | `2.1.5` |
| [mozilla-django-oidc](https://github.com/mozilla/mozilla-django-oidc) | `4.0.0` | `4.0.1` |
| [phonenumberslite](https://github.com/daviddrysdale/python-phonenumbers) | `8.13.30` | `8.13.44` |
| [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) | `3.0.43` | `3.0.47` |
| [pycparser](https://github.com/eliben/pycparser) | `2.20` | `2.22` |
| [pyjwt](https://github.com/jpadilla/pyjwt) | `2.4.0` | `2.9.0` |
| [pyopenssl](https://github.com/pyca/pyopenssl) | `24.0.0` | `24.2.1` |
| [pyrsistent](https://github.com/tobgu/pyrsistent) | `0.17.3` | `0.20.0` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.0.0` | `1.0.1` |
| [pyyaml](https://github.com/yaml/pyyaml) | `6.0.1` | `6.0.2` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.12.0` | `2.13.0` |
| [sqlparse](https://github.com/andialbrecht/sqlparse) | `0.5.0` | `0.5.1` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.9.0` | `4.12.2` |
| [uwsgi](https://uwsgi-docs.readthedocs.io/en/latest/) | `2.0.23` | `2.0.26` |
| [webauthn](https://github.com/duo-labs/py_webauthn) | `2.0.0` | `2.2.0` |
| [wrapt](https://github.com/GrahamDumpleton/wrapt) | `1.14.1` | `1.16.0` |
| [zgw-consumers](https://github.com/maykinmedia/zgw-consumers) | `0.29.0` | `0.35.1` |
| [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/) | `4.9.3` | `4.12.3` |
| [black](https://github.com/psf/black) | `24.3.0` | `24.8.0` |
| [cssselect](https://github.com/scrapy/cssselect) | `1.1.0` | `1.2.0` |
| [django-debug-toolbar](https://github.com/jazzband/django-debug-toolbar) | `4.2.0` | `4.4.6` |
| [django-webtest](https://github.com/django-webtest/django-webtest) | `1.9.7` | `1.9.12` |
| [factory-boy](https://github.com/FactoryBoy/factory_boy) | `3.2.0` | `3.3.1` |
| [flake8](https://github.com/pycqa/flake8) | `7.0.0` | `7.1.1` |
| [freezegun](https://github.com/spulec/freezegun) | `1.1.0` | `1.5.1` |
| [pip-tools](https://github.com/jazzband/pip-tools) | `7.3.0` | `7.4.1` |
| [requests-mock](https://github.com/jamielennox/requests-mock) | `1.8.0` | `1.12.1` |
| [soupsieve](https://github.com/facelessuser/soupsieve) | `2.2.1` | `2.6` |
| [sphinx-tabs](https://github.com/executablebooks/sphinx-tabs) | `3.4.4` | `3.4.5` |
| [yarl](https://github.com/aio-libs/yarl) | `1.9.4` | `1.9.7` |


Updates `asgiref` from 3.7.2 to 3.8.1
- [Changelog](https://github.com/django/asgiref/blob/main/CHANGELOG.txt)
- [Commits](django/asgiref@3.7.2...3.8.1)

Updates `cbor2` from 5.6.2 to 5.6.4
- [Release notes](https://github.com/agronholm/cbor2/releases)
- [Changelog](https://github.com/agronholm/cbor2/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/cbor2@5.6.2...5.6.4)

Updates `certifi` from 2024.7.4 to 2024.8.30
- [Commits](certifi/python-certifi@2024.07.04...2024.08.30)

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

Updates `click-didyoumean` from 0.3.0 to 0.3.1
- [Release notes](https://github.com/click-contrib/click-didyoumean/releases)
- [Commits](click-contrib/click-didyoumean@v0.3.0...v0.3.1)

Updates `commonground-api-common` from 1.13.0 to 1.13.2
- [Changelog](https://github.com/maykinmedia/commonground-api-common/blob/main/CHANGELOG.rst)
- [Commits](maykinmedia/commonground-api-common@1.13.0...1.13.2)

Updates `django-admin-index` from 3.1.0 to 3.1.1
- [Changelog](https://github.com/maykinmedia/django-admin-index/blob/master/CHANGELOG.rst)
- [Commits](maykinmedia/django-admin-index@3.1.0...3.1.1)

Updates `django-filter` from 24.2 to 24.3
- [Release notes](https://github.com/carltongibson/django-filter/releases)
- [Changelog](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst)
- [Commits](carltongibson/django-filter@24.2...24.3)

Updates `django-formtools` from 2.3 to 2.5.1
- [Changelog](https://github.com/jazzband/django-formtools/blob/master/docs/changelog.rst)
- [Commits](jazzband/django-formtools@2.3...2.5.1)

Updates `django-markup` from 1.8.1 to 1.9
- [Release notes](https://github.com/bartTC/django-markup/releases)
- [Changelog](https://github.com/bartTC/django-markup/blob/main/CHANGELOG.md)
- [Commits](bartTC/django-markup@v1.8.1...v1.9)

Updates `django-otp` from 1.0.6 to 1.5.2
- [Changelog](https://github.com/django-otp/django-otp/blob/master/CHANGES.rst)
- [Commits](django-otp/django-otp@v1.0.6...v1.5.2)

Updates `django-sendfile2` from 0.7.0 to 0.7.1
- [Release notes](https://github.com/moggers87/django-sendfile2/releases)
- [Changelog](https://github.com/moggers87/django-sendfile2/blob/main/CHANGELOG.rst)
- [Commits](moggers87/django-sendfile2@v0.7.0...v0.7.1)

Updates `django-setup-configuration` from 0.1.0 to 0.3.0
- [Changelog](https://github.com/maykinmedia/django-setup-configuration/blob/main/CHANGELOG.rst)
- [Commits](maykinmedia/django-setup-configuration@0.1.0...0.3.0)

Updates `django-solo` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/lazybird/django-solo/releases)
- [Changelog](https://github.com/lazybird/django-solo/blob/master/CHANGES)
- [Commits](lazybird/django-solo@2.2.0...2.3.0)

Updates `djangorestframework-gis` from 1.0 to 1.1
- [Release notes](https://github.com/openwisp/django-rest-framework-gis/releases)
- [Changelog](https://github.com/openwisp/django-rest-framework-gis/blob/master/CHANGES.rst)
- [Commits](openwisp/django-rest-framework-gis@v1.0.0...v1.1.0)

Updates `drf-nested-routers` from 0.93.3 to 0.94.1
- [Release notes](https://github.com/alanjds/drf-nested-routers/releases)
- [Commits](alanjds/drf-nested-routers@v0.93.3...v0.94.1)

Updates `ecs-logging` from 2.1.0 to 2.2.0
- [Release notes](https://github.com/elastic/ecs-logging-python/releases)
- [Changelog](https://github.com/elastic/ecs-logging-python/blob/main/CHANGELOG.md)
- [Commits](elastic/ecs-logging-python@2.1.0...2.2.0)

Updates `humanize` from 4.9.0 to 4.10.0
- [Release notes](https://github.com/python-humanize/humanize/releases)
- [Commits](python-humanize/humanize@4.9.0...4.10.0)

Updates `idna` from 3.7 to 3.8
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.7...v3.8)

Updates `isodate` from 0.6.0 to 0.6.1
- [Changelog](https://github.com/gweis/isodate/blob/master/CHANGES.txt)
- [Commits](gweis/isodate@0.6.0...0.6.1)

Updates `josepy` from 1.9.0 to 1.14.0
- [Changelog](https://github.com/certbot/josepy/blob/master/CHANGELOG.rst)
- [Commits](certbot/josepy@v1.9.0...v1.14.0)

Updates `jsonschema` from 4.17.3 to 4.23.0
- [Release notes](https://github.com/python-jsonschema/jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/jsonschema@v4.17.3...v4.23.0)

Updates `kombu` from 5.3.5 to 5.4.0
- [Release notes](https://github.com/celery/kombu/releases)
- [Changelog](https://github.com/celery/kombu/blob/main/Changelog.rst)
- [Commits](celery/kombu@v5.3.5...v5.4.0)

Updates `markupsafe` from 2.1.3 to 2.1.5
- [Release notes](https://github.com/pallets/markupsafe/releases)
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst)
- [Commits](pallets/markupsafe@2.1.3...2.1.5)

Updates `mozilla-django-oidc` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/mozilla/mozilla-django-oidc/releases)
- [Changelog](https://github.com/mozilla/mozilla-django-oidc/blob/main/HISTORY.rst)
- [Commits](mozilla/mozilla-django-oidc@4.0.0...4.0.1)

Updates `phonenumberslite` from 8.13.30 to 8.13.44
- [Commits](daviddrysdale/python-phonenumbers@v8.13.30...v8.13.44)

Updates `prompt-toolkit` from 3.0.43 to 3.0.47
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases)
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/CHANGELOG)
- [Commits](prompt-toolkit/python-prompt-toolkit@3.0.43...3.0.47)

Updates `pycparser` from 2.20 to 2.22
- [Release notes](https://github.com/eliben/pycparser/releases)
- [Changelog](https://github.com/eliben/pycparser/blob/main/CHANGES)
- [Commits](eliben/pycparser@release_v2.20...release_v2.22)

Updates `pyjwt` from 2.4.0 to 2.9.0
- [Release notes](https://github.com/jpadilla/pyjwt/releases)
- [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst)
- [Commits](jpadilla/pyjwt@2.4.0...2.9.0)

Updates `pyopenssl` from 24.0.0 to 24.2.1
- [Changelog](https://github.com/pyca/pyopenssl/blob/main/CHANGELOG.rst)
- [Commits](pyca/pyopenssl@24.0.0...24.2.1)

Updates `pyrsistent` from 0.17.3 to 0.20.0
- [Changelog](https://github.com/tobgu/pyrsistent/blob/master/CHANGES.txt)
- [Commits](tobgu/pyrsistent@v0.17.3...v0.20.0)

Updates `python-dotenv` from 1.0.0 to 1.0.1
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.0.0...v1.0.1)

Updates `pyyaml` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/main/CHANGES)
- [Commits](yaml/pyyaml@6.0.1...6.0.2)

Updates `sentry-sdk` from 2.12.0 to 2.13.0
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@2.12.0...2.13.0)

Updates `sqlparse` from 0.5.0 to 0.5.1
- [Changelog](https://github.com/andialbrecht/sqlparse/blob/master/CHANGELOG)
- [Commits](andialbrecht/sqlparse@0.5.0...0.5.1)

Updates `typing-extensions` from 4.9.0 to 4.12.2
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.9.0...4.12.2)

Updates `uwsgi` from 2.0.23 to 2.0.26

Updates `webauthn` from 2.0.0 to 2.2.0
- [Release notes](https://github.com/duo-labs/py_webauthn/releases)
- [Changelog](https://github.com/duo-labs/py_webauthn/blob/master/CHANGELOG.md)
- [Commits](duo-labs/py_webauthn@v2.0.0...v2.2.0)

Updates `wrapt` from 1.14.1 to 1.16.0
- [Release notes](https://github.com/GrahamDumpleton/wrapt/releases)
- [Changelog](https://github.com/GrahamDumpleton/wrapt/blob/develop/docs/changes.rst)
- [Commits](GrahamDumpleton/wrapt@1.14.1...1.16.0)

Updates `zgw-consumers` from 0.29.0 to 0.35.1
- [Changelog](https://github.com/maykinmedia/zgw-consumers/blob/main/CHANGELOG.rst)
- [Commits](maykinmedia/zgw-consumers@0.29.0...0.35.1)

Updates `beautifulsoup4` from 4.9.3 to 4.12.3

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

Updates `cssselect` from 1.1.0 to 1.2.0
- [Changelog](https://github.com/scrapy/cssselect/blob/master/CHANGES)
- [Commits](scrapy/cssselect@v1.1.0...v1.2.0)

Updates `django-debug-toolbar` from 4.2.0 to 4.4.6
- [Release notes](https://github.com/jazzband/django-debug-toolbar/releases)
- [Changelog](https://github.com/jazzband/django-debug-toolbar/blob/main/docs/changes.rst)
- [Commits](django-commons/django-debug-toolbar@4.2...4.4.6)

Updates `django-webtest` from 1.9.7 to 1.9.12
- [Changelog](https://github.com/django-webtest/django-webtest/blob/master/CHANGES.rst)
- [Commits](django-webtest/django-webtest@1.9.7...1.9.12)

Updates `factory-boy` from 3.2.0 to 3.3.1
- [Changelog](https://github.com/FactoryBoy/factory_boy/blob/master/docs/changelog.rst)
- [Commits](FactoryBoy/factory_boy@3.2.0...3.3.1)

Updates `flake8` from 7.0.0 to 7.1.1
- [Commits](PyCQA/flake8@7.0.0...7.1.1)

Updates `freezegun` from 1.1.0 to 1.5.1
- [Release notes](https://github.com/spulec/freezegun/releases)
- [Changelog](https://github.com/spulec/freezegun/blob/master/CHANGELOG)
- [Commits](spulec/freezegun@1.1.0...1.5.1)

Updates `pip-tools` from 7.3.0 to 7.4.1
- [Release notes](https://github.com/jazzband/pip-tools/releases)
- [Changelog](https://github.com/jazzband/pip-tools/blob/main/CHANGELOG.md)
- [Commits](jazzband/pip-tools@7.3.0...7.4.1)

Updates `requests-mock` from 1.8.0 to 1.12.1
- [Release notes](https://github.com/jamielennox/requests-mock/releases)
- [Commits](jamielennox/requests-mock@1.8.0...1.12.1)

Updates `soupsieve` from 2.2.1 to 2.6
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.2.1...2.6)

Updates `sphinx-tabs` from 3.4.4 to 3.4.5
- [Release notes](https://github.com/executablebooks/sphinx-tabs/releases)
- [Changelog](https://github.com/executablebooks/sphinx-tabs/blob/master/CHANGELOG.md)
- [Commits](executablebooks/sphinx-tabs@v3.4.4...v3.4.5)

Updates `yarl` from 1.9.4 to 1.9.7
- [Release notes](https://github.com/aio-libs/yarl/releases)
- [Changelog](https://github.com/aio-libs/yarl/blob/master/CHANGES.rst)
- [Commits](aio-libs/yarl@v1.9.4...v1.9.7)

---
updated-dependencies:
- dependency-name: asgiref
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: cbor2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: cffi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: click-didyoumean
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: commonground-api-common
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: django-admin-index
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: django-filter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: django-formtools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: django-markup
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: django-otp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: django-sendfile2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: django-setup-configuration
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: django-solo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: djangorestframework-gis
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: drf-nested-routers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: ecs-logging
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: humanize
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: isodate
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: josepy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: kombu
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: markupsafe
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: mozilla-django-oidc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: phonenumberslite
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: prompt-toolkit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: pycparser
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: pyjwt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: pyopenssl
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: pyrsistent
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: python-dotenv
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: pyyaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: sqlparse
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: typing-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: uwsgi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: webauthn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: wrapt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: zgw-consumers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: beautifulsoup4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: cssselect
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: django-debug-toolbar
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: django-webtest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: factory-boy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: flake8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: freezegun
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: pip-tools
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: requests-mock
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: soupsieve
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi-dependencies
- dependency-name: sphinx-tabs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
- dependency-name: yarl
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pypi-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 3, 2024
@Coperh Coperh closed this Sep 3, 2024
Copy link
Author

dependabot bot commented on behalf of github Sep 3, 2024

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/pip/requirements/pypi-dependencies-876bfc53a5 branch September 3, 2024 15:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant