Skip to content

Bump the all-python-dependencies group across 1 directory with 19 updates #1656

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 16, 2025

Bumps the all-python-dependencies group with 19 updates in the / directory:

Package From To
django 4.2.20 4.2.23
whitenoise 6.6.0 6.9.0
django-mysql 4.12.0 4.17.0
django-csp 3.7 3.8
django-import-export 3.3.1 3.3.9
django-admin-rangefilter 0.11.2 0.13.2
fontawesomefree 6.4.2 6.6.0
graphene-django 3.1.5 3.2.3
django-filter 23.3 23.5
rules 3.3 3.5
numpy 1.26.1 1.26.4
pandas 2.1.2 2.3.0
sqlalchemy 2.0.23 2.0.41
mysqlclient 2.2.4 2.2.7
google-cloud-bigquery[pandas] 3.19.0 3.34.0
debugpy 1.8.0 1.8.14
jsonschema 4.19.2 4.24.0
pycryptodome 3.19.1 3.23.0
pytz 2023.3.post1 2023.4

Updates django from 4.2.20 to 4.2.23

Commits
  • a698dc2 [4.2.x] Bumped version for 4.2.23 release.
  • b597d46 [4.2.x] Refs CVE-2025-48432 -- Prevented log injection in remaining response ...
  • 10ba3f7 [4.2.x] Refs CVE-2025-48432 -- Made SuspiciousOperation logging use log_respo...
  • ba24ee3 [4.2.x] Refactored logging_tests to reuse assertions for log records.
  • b07f886 [4.2.x] Added CVE-2025-48432 to security archive.
  • 8d87045 [4.2.x] Post-release version bump.
  • 7275cc5 [4.2.x] Bumped version for 4.2.22 release.
  • ac03c5e [4.2.x] Fixed CVE-2025-48432 -- Escaped formatting arguments in `log_response...
  • c62f4ee [4.2.x] Added stub release notes and release date for 4.2.22.
  • c5b4263 [4.2.x] Fixed #36402, Refs #35980 -- Updated built package name in reusable a...
  • Additional commits viewable in compare view

Updates whitenoise from 6.6.0 to 6.9.0

Changelog

Sourced from whitenoise's changelog.

6.9.0 (2025-02-06)

  • Support Django 5.2.

6.8.2 (2024-10-29)

  • Fix compression speed gains for the thread pool when running Django’s collectstatic. The thread pool had no effect due to use of a generator for the results, a refactoring introduced when reviewing the initial PR.

    Thanks to Petr Přikryl for the investigation and fix in PR [#616](https://github.com/evansd/whitenoise/issues/616) <https://github.com/evansd/whitenoise/pull/616>__.

6.8.1 (2024-10-28)

  • Raise any errors from threads in the whitenoise.compress command.

    Regression in 6.8.0. Thanks to Tom Grainger for the spotting this with a comment on PR [#484](https://github.com/evansd/whitenoise/issues/484) <https://github.com/evansd/whitenoise/pull/484#discussion_r1818989096>__.

6.8.0 (2024-10-28)

  • Drop Django 3.2 to 4.1 support.

  • Drop Python 3.8 support.

  • Support Python 3.13.

  • Fix a bug introduced in version 6.0.0 where Range requests could lead to database connection errors in other requests.

    Thanks to Per Myren for the detailed investigation and fix in PR [#612](https://github.com/evansd/whitenoise/issues/612) <https://github.com/evansd/whitenoise/pull/612>__.

  • Use Django’s |FORCE_SCRIPT_NAME|__ setting correctly. This reverts a change from version 5.3.0 that added a call to Django’s |get_script_prefix() method|__ outside of the request-response cycle.

    .. |FORCE_SCRIPT_NAME| replace:: FORCE_SCRIPT_NAME __ https://docs.djangoproject.com/en/stable/ref/settings/#std:setting-FORCE_SCRIPT_NAME

    .. |get_script_prefix() method| replace:: get_script_prefix() method __ https://docs.djangoproject.com/en/stable/ref/urlresolvers/#django.urls.get_script_prefix

    Thanks to Sarah Boyce in PR [#486](https://github.com/evansd/whitenoise/issues/486) <https://github.com/evansd/whitenoise/pull/486>__.

  • Compress files using a thread pool. This speeds up the compression step up to four times in benchmarks.

    Thanks to Anthony Ricaud in PR [#484](https://github.com/evansd/whitenoise/issues/484) <https://github.com/evansd/whitenoise/pull/484>__.

... (truncated)

Commits

Updates django-mysql from 4.12.0 to 4.17.0

Changelog

Sourced from django-mysql's changelog.

4.17.0 (2025-05-13)

  • Added field classes :class:~django_mysql.models.TinyIntegerField and :class:~django_mysql.models.PositiveTinyIntegerField that use MySQL’s one-byte TINYINT data type.

4.16.0 (2025-02-06)

  • Support Django 5.2.

4.15.0 (2024-10-29)

  • Drop Django 3.2 to 4.1 support.

  • Drop Python 3.8 support.

  • Support Python 3.13.

  • Add testing for MariaDB 10.11 and 11.4, and MySQL 9.0. Drop testing for EOL MariaDB 10.7 and 10.8. No changes were needed.

4.14.0 (2024-06-19)

  • Support Django 5.1.

  • Drop support for MariaDB 10.4. It is no longer maintained and Django 5.1 does not support it.

4.13.0 (2024-04-26)

  • Lazily import django.test to reduce import time.

    Thanks to Angus Holder in PR [#1084](https://github.com/adamchainz/django-mysql/issues/1084) <https://github.com/adamchainz/django-mysql/pull/1084>__.

Commits

Updates django-csp from 3.7 to 3.8

Release notes

Sourced from django-csp's releases.

3.8

Please note that 3.8 is Python-code-identical to 3.8rc1, and there were no regressions or problems noted or reported with 3.8rc0 nor 3.8rc1

django-csp lives!

It's been more than a year since the last release and the project needed some refreshing before we can move forward with it.

This release aims to be functionally equivalent to 3.7, but with formal support for more modern Django and Python versions, all the way up to Django 5 on Python 3.12

Please see https://github.com/mozilla/django-csp/blob/3.8rc/CHANGES for a short summary of changes.

Feedback and bug reports are very welcome. 🙇

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from django-csp's changelog.

3.8

Please note: this release folds in a number of fixups, upgrades and documentation tweaks, but is functionally the same as 3.7. New features will come with 3.9+

  • Update Python syntax for modern versions with pyupgrade
  • Drop support for EOL Python <3.8 and Django <2.2 version; add support up to Django 5 on Python 3.12
  • Switch to ruff instead of pep8 and flake8
  • Move from CircleCI to Github Actions for CI
  • Add support for using pre-commit with the project
  • Remove deprecation warning for child-src
  • Fix capturing brackets in script template tags
  • Update docs to clarify when nonce will not be added to headers
  • Move from setup.py and setup.cfg to pyproject.toml (#209)

Note: identical other than release packaging to 3.8rc1

3.8rc1

  • Move from setup.py and setup.cfg to pyproject.toml (#209)

3.8rc

Please note: this release folds in a number of fixups, upgrades and documentation tweaks, but is functionally the same as 3.7. New features will come with 3.9+

  • Update Python syntax for modern versions with pyupgrade
  • Drop support for EOL Python <3.8 and Django <2.2 version; add support up to Django 5 on Python 3.12
  • Switch to ruff instead of pep8 and flake8
  • Move from CircleCI to Github Actions for CI
  • Add support for using pre-commit with the project
  • Remove deprecation warning for child-src
  • Fix capturing brackets in script template tags
  • Update docs to clarify when nonce will not be added to headers
Commits
  • 4899179 Prepare for 3.8 final release
  • 684b12a Prepare for 3.8rc1 release - just one packaging change
  • b1dd37e Tomlify setup.py (#216)
  • 7200b16 Prepare for 3.8rc release (#215)
  • 4be512c Update GH actions helpers to use Node 20-based versions (#214)
  • 371da46 Bring codebase up to modern Python using pyupgrade (#213)
  • 9698258 MiddlewareMixin is always present in django>=3.2
  • 12116dc Update settings documentation to move deprecated-within-csp settings to their...
  • 61f3124 Update README.rst
  • 58113ef Fix sphinx theme installation (#208)
  • Additional commits viewable in compare view

Updates django-import-export from 3.3.1 to 3.3.9

Release notes

Sourced from django-import-export's releases.

3.3.9

Patch release - refer to changelog

3.3.8

Patch release - refer to changelog

3.3.7

Patch release - refer to changelog

3.3.6

Patch release - refer to changelog

3.3.5

Patch release - refer to changelog

3.3.4

No release notes provided.

3.3.3

Patch release. See changelog.

3.3.2

Patch release. Please refer to CHANGELOG.

Changelog

Sourced from django-import-export's changelog.

3.3.9 (2024-04-28)

  • Update translations for Russian language (1797 <https://github.com/django-import-export/django-import-export/pull/1797>_)

3.3.8 (2024-04-08)

  • Add additional django template block for extending import page (1776 <https://github.com/django-import-export/django-import-export/pull/1776>_)

3.3.7 (2024-02-03)

  • Pass :meth:~import_export.mixins.BaseExportMixin.get_export_resource_kwargs to Resource constructor :meth:~import_export.admin.ExportMixin.export_action (1739 <https://github.com/django-import-export/django-import-export/pull/1739>_)
  • Fix issue with model class passed to Resource constructor crashing on export (1745 <https://github.com/django-import-export/django-import-export/pull/1745>_)
  • Fix indentation for skip_row docstring (1743 <https://github.com/django-import-export/django-import-export/pull/1743>_)
  • Return kwargs by default from :meth:~import_export.mixins.BaseImportExportMixin.get_resource_kwargs (1748 <https://github.com/django-import-export/django-import-export/pull/1748>_)

3.3.6 (2024-01-10)

  • Fix issue with highlight when using 'light' color scheme (1728 <https://github.com/django-import-export/django-import-export/pull/1728>_)

3.3.5 (2023-12-19)

  • Remove unnecessary ChangeList queries to speed up export via Admin UI (1715 <https://github.com/django-import-export/django-import-export/pull/1715>_)
  • Respect color scheme override (1720 <https://github.com/django-import-export/django-import-export/pull/1720>_)
  • Update FAQ to cover skipping rows with validation errors (1721 <https://github.com/django-import-export/django-import-export/pull/1721>_)

3.3.4 (2023-12-09)

  • Added support for django5 (1634 <https://github.com/django-import-export/django-import-export/pull/1634>_)
  • Show list of exported fields in Admin UI (1685 <https://github.com/django-import-export/django-import-export/pull/1685>_)
  • Added CONTRIBUTING.md
  • Added support for python 3.12 (1698 <https://github.com/django-import-export/django-import-export/pull/1698>_)
  • Update Finnish translations (1701 <https://github.com/django-import-export/django-import-export/pull/1701>_)

3.3.3 (2023-11-11)

  • :meth:~import_export.admin.ExportActionMixin.export_admin_action can be overridden by subclassing it in the ModelAdmin (1681 <https://github.com/django-import-export/django-import-export/pull/1681>_)

3.3.2 (2023-11-09)

  • Updated Spanish translations (1639 <https://github.com/django-import-export/django-import-export/pull/1639>_)

... (truncated)

Commits
  • ab2c0d3 Preparing release 3.3.9
  • 8d7d9dd updated changelog
  • 964dd7a Merge branch 'main' of github.com:django-import-export/django-import-export
  • 03bd6fb Update translation for russian language (#1797)
  • b86c60c updated bulk testing docs
  • 5c3c8dc Back to development: 3.3.9
  • 884f03d Preparing release 3.3.8
  • 26b99c0 updated changelog
  • 9b4c3b5 feat(dj.admin import): Add additional django template block for extending (#1...
  • 493ff3c updated changelog
  • Additional commits viewable in compare view

Updates django-admin-rangefilter from 0.11.2 to 0.13.2

Release notes

Sourced from django-admin-rangefilter's releases.

0.13.2

Fix

  • Fix prevent datetimeshortcuts from rendering multiple times (#129) (thx @​vxsx)

0.13.1

Fix

0.13.0

Added

  • Compatibility Django 5
  • Add support for collapsable filter (Django >= 4.1) (#120). Change the default range template

A big thanks to @​mgrdcm

0.12.5

Fix

  • Fix quick select template property #118

0.12.4

Fix

  • Typo

0.12.3

Fix

  • Typo

v0.12.2

Fix

  • DateTimeRangeFilter: microsecond is optional

0.12.1

Added

Fix

  • DateTimeRangeFilter: upper time bound includes microseconds #115 (@​ef-end-y)

0.12.0

Added

  • Compatibility Django 5
  • Added Greek translation #111 (thx @​tagmat)

Fix

  • NumericRangeFilter: Fix SCP
Changelog

Sourced from django-admin-rangefilter's changelog.

[0.13.2] - 2024-08-24

Fix

  • Fix prevent datetimeshortcuts from rendering multiple times (#129) (thx @​vxsx)

[0.13.1] - 2024-07-23

Fix

[0.13.0] - 2024-05-21

Added

  • Compatibility Django 5
  • Add support for collapsable filter (Django >= 4.1) (#120). Change the default range template

[0.12.5] - 2024-05-18

Fix

  • Fix quick select template property #118

[0.12.4] - 2024-04-13

Fix

  • Typo

[0.12.3] - 2024-04-13

Fix

  • Typo

[0.12.2] - 2024-04-13

Fix

  • DateTimeRangeFilter: microsecond is optional #115

[0.12.1] - 2024-02-12

Added

  • Use current timezone instead of default #114

Fix

  • DateTimeRangeFilter: upper time bound includes microseconds #115

[0.12.0] - 2023-12-09

Added

  • Compatibility Django 5
  • Added Greek translation (thx @​tagmat) #111

Fix

  • NumericRangeFilter: Fix SCP
Commits

Updates fontawesomefree from 6.4.2 to 6.6.0

Release notes

Sourced from fontawesomefree's releases.

Release 6.6.0

Change log available at https://fontawesome.com/docs/changelog/

Release 6.5.2

Change log available at https://fontawesome.com/docs/changelog/

Release 6.5.1

Change log available at https://fontawesome.com/docs/changelog/

Release 6.5.0

Change log available at https://fontawesome.com/docs/changelog/

Commits

Updates graphene-django from 3.1.5 to 3.2.3

Release notes

Sourced from graphene-django's releases.

v3.2.3

What's Changed

New Contributors

Full Changelog: graphql-python/graphene-django@v3.2.2...v3.2.3

v3.2.2

What's Changed

Full Changelog: graphql-python/graphene-django@v3.2.1...v3.2.2

v3.2.1

What's Changed

New Contributors

Full Changelog: graphql-python/graphene-django@v3.2.0...v3.2.1

v3.2.0

What's Changed

New Contributors

Full Changelog: graphql-python/graphene-django@v3.1.6...v3.2.0

... (truncated)

Commits
  • c52cf2b Bump version to 3.2.3
  • e69e4a0 Bugfix: call resolver function in DjangoConnectionField as documented (#1...
  • 97deb76 fix typed choices, make working with different Django 5x choices options (#1539)
  • 8d4a64a add official Django 5.1 support (#1540)
  • 2692250 remove dead code: singledispatch has been in the standard library ... (#1534)
  • 28c71c5 Bump to 3.2.2
  • 6f21dc7 Not require explicitly set ordering in DjangoConnectionField (#1518)
  • ea45de0 Make use of http.HTTPStatus for response status code checks (#1487)
  • eac113e Bump django from 3.2.24 to 3.2.25 in /examples/cookbook (#1508)
  • d69c905 Bump to 3.2.1 (#1512)
  • Additional commits viewable in compare view

Updates django-filter from 23.3 to 23.5

Changelog

Sourced from django-filter's changelog.

Version 23.5 (2023-12-05)

  • Fixed OrderingFilter handling of empty values. (#1628)

    Thanks to Matt Munns.

Version 23.4 (2023-11-20)

  • Official support for Django 5.0 and Python 3.12.

  • Fix DeprecationWarning for pkgutil.find_loader.

    Thanks to wmorrell.

  • Adopted Furo theme for docs.

Commits
  • 00e8865 Bumped version and changes for 23.5 release.
  • 39bf174 Fixed OrderingFilter handling of empty values. (#1628)
  • b9ded74 Fixed code-block error in docs.
  • 783b592 Add filterset_fields lookup expresson to docs (#1460)
  • d693a59 Allow choices to contains optgroups in DateRangeFilter (#1621)
  • 83b314f Bumped version, changes, and trove classifiers for 23.4 release.
  • 15a5c72 Fix DeprecationWarning for pkgutil.find_loader (#1623)
  • 4c2a2e6 Removed extra word in tips.txt (#1624)
  • 4a618e0 Added CI runs for Django 5.0 and Python 3.12 (#1618)
  • 3d352ce Fixed links to supported versions in README. (#1617)
  • Additional commits viewable in compare view

Updates rules from 3.3 to 3.5

Release notes

Sourced from rules's releases.

v3.5.0

Highlights

  • Add support for Django 5.1

What's Changed

New Contributors

Full Changelog: dfunckt/django-rules@v3.4.0...v3.5.0

v3.4.0

Highlights

  • Add support for Django 4.2 and 5.0
  • Add support for Python 3.11 and 3.12
  • Drop support for EOL Python 3.7
  • Drop support for EOL Django 2.2 and 4.0
  • Fix bug: type annotations were not used because py.typed was not always installed.

What's Changed

New Contributors

Full Changelog: dfunckt/django-rules@v3.3.0...v3.4.0

Changelog

Sourced from rules's changelog.

Changelog

Unreleased

Add a sentence for each interesting change in this section.


v3.5.0 - 2024/09/02

  • Add support for Django 5.1

v3.4.0 - 2024/05/18

  • Add support for Django 4.2 and 5.0
  • Add support for Python 3.11 and 3.12
  • Drop support for EOL Python 3.7
  • Drop support for EOL Django 2.2 and 4.0
  • Fix bug: type annotations were not used because py.typed was not always installed.

v3.3.0 - 2022/03/23

  • Introduce type annotations for common APIs

v3.2.1 - 2022/03/02

  • Fixed incorrect Django versions mentioned in CHANGELOG

v3.2.0 - 2022/03/02

  • Added support for Python 3.10
  • Dropped support for Python 3.6 (EOL)
  • Dropped support for Django 3.0 and 3.1 (EOL)

v3.1.0 - 2021/12/22

  • Added support for Django 4.0

v3.0.0 - 2021/05/10

  • Dropped support for Python 2
  • Dropped support for Django versions before 2.2

v2.2.0 - 2020/01/17

  • Added support for Django v3.0

v2.1.0 - 2019/08/11

... (truncated)

Commits
  • 6ce69d0 Merge pull request #194 from dfunckt/release-v3.5.0
  • cd7a7d0 Update init.py
  • c22777d Update CHANGELOG.md
  • 22f70f9 Merge pull request #193 from kimihito/chore/support-django51
  • ce5877c Support for Django 5.1
  • a8da753 Merge pull request #192 from dpgraham4401/fix_docs_link
  • bbb994c use 'stable' path instead of hardcoded version number for django documentatio...
  • 64e5bf3 Merge pull request #188 from dfunckt/v3.4.0
  • 92eec0c Release 3.4.0
  • 5ed287b Merge pull request #184 from dfunckt/mypy
  • Additional commits viewable in compare view

Updates numpy from 1.26.1 to 1.26.4

Release not...

Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jun 16, 2025
…ates

Bumps the all-python-dependencies group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [django](https://github.com/django/django) | `4.2.20` | `4.2.23` |
| [whitenoise](https://github.com/evansd/whitenoise) | `6.6.0` | `6.9.0` |
| [django-mysql](https://github.com/adamchainz/django-mysql) | `4.12.0` | `4.17.0` |
| [django-csp](https://github.com/mozilla/django-csp) | `3.7` | `3.8` |
| [django-import-export](https://github.com/django-import-export/django-import-export) | `3.3.1` | `3.3.9` |
| [django-admin-rangefilter](https://github.com/silentsokolov/django-admin-rangefilter) | `0.11.2` | `0.13.2` |
| [fontawesomefree](https://github.com/FortAwesome/Font-Awesome) | `6.4.2` | `6.6.0` |
| [graphene-django](https://github.com/graphql-python/graphene-django) | `3.1.5` | `3.2.3` |
| [django-filter](https://github.com/carltongibson/django-filter) | `23.3` | `23.5` |
| [rules](https://github.com/dfunckt/django-rules) | `3.3` | `3.5` |
| [numpy](https://github.com/numpy/numpy) | `1.26.1` | `1.26.4` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.1.2` | `2.3.0` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.23` | `2.0.41` |
| [mysqlclient](https://github.com/PyMySQL/mysqlclient) | `2.2.4` | `2.2.7` |
| [google-cloud-bigquery[pandas]](https://github.com/googleapis/python-bigquery) | `3.19.0` | `3.34.0` |
| [debugpy](https://github.com/microsoft/debugpy) | `1.8.0` | `1.8.14` |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.19.2` | `4.24.0` |
| [pycryptodome](https://github.com/Legrandin/pycryptodome) | `3.19.1` | `3.23.0` |
| [pytz](https://github.com/stub42/pytz) | `2023.3.post1` | `2023.4` |



Updates `django` from 4.2.20 to 4.2.23
- [Commits](django/django@4.2.20...4.2.23)

Updates `whitenoise` from 6.6.0 to 6.9.0
- [Changelog](https://github.com/evansd/whitenoise/blob/main/docs/changelog.rst)
- [Commits](evansd/whitenoise@6.6.0...6.9.0)

Updates `django-mysql` from 4.12.0 to 4.17.0
- [Changelog](https://github.com/adamchainz/django-mysql/blob/main/docs/changelog.rst)
- [Commits](adamchainz/django-mysql@4.12.0...4.17.0)

Updates `django-csp` from 3.7 to 3.8
- [Release notes](https://github.com/mozilla/django-csp/releases)
- [Changelog](https://github.com/mozilla/django-csp/blob/main/CHANGES.md)
- [Commits](mozilla/django-csp@3.7...3.8)

Updates `django-import-export` from 3.3.1 to 3.3.9
- [Release notes](https://github.com/django-import-export/django-import-export/releases)
- [Changelog](https://github.com/django-import-export/django-import-export/blob/main/docs/changelog.rst)
- [Commits](django-import-export/django-import-export@3.3.1...3.3.9)

Updates `django-admin-rangefilter` from 0.11.2 to 0.13.2
- [Release notes](https://github.com/silentsokolov/django-admin-rangefilter/releases)
- [Changelog](https://github.com/silentsokolov/django-admin-rangefilter/blob/master/CHANGELOG.md)
- [Commits](silentsokolov/django-admin-rangefilter@v0.11.2...v0.13.2)

Updates `fontawesomefree` from 6.4.2 to 6.6.0
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.4.2...6.6.0)

Updates `graphene-django` from 3.1.5 to 3.2.3
- [Release notes](https://github.com/graphql-python/graphene-django/releases)
- [Commits](graphql-python/graphene-django@v3.1.5...v3.2.3)

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

Updates `rules` from 3.3 to 3.5
- [Release notes](https://github.com/dfunckt/django-rules/releases)
- [Changelog](https://github.com/dfunckt/django-rules/blob/master/CHANGELOG.md)
- [Commits](dfunckt/django-rules@v3.3.0...v3.5.0)

Updates `numpy` from 1.26.1 to 1.26.4
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.26.1...v1.26.4)

Updates `pandas` from 2.1.2 to 2.3.0
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.1.2...v2.3.0)

Updates `sqlalchemy` from 2.0.23 to 2.0.41
- [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases)
- [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst)
- [Commits](https://github.com/sqlalchemy/sqlalchemy/commits)

Updates `mysqlclient` from 2.2.4 to 2.2.7
- [Release notes](https://github.com/PyMySQL/mysqlclient/releases)
- [Changelog](https://github.com/PyMySQL/mysqlclient/blob/main/HISTORY.rst)
- [Commits](PyMySQL/mysqlclient@v2.2.4...v2.2.7)

Updates `google-cloud-bigquery[pandas]` from 3.19.0 to 3.34.0
- [Release notes](https://github.com/googleapis/python-bigquery/releases)
- [Changelog](https://github.com/googleapis/python-bigquery/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-bigquery@v3.19.0...v3.34.0)

Updates `debugpy` from 1.8.0 to 1.8.14
- [Release notes](https://github.com/microsoft/debugpy/releases)
- [Commits](microsoft/debugpy@v1.8.0...v1.8.14)

Updates `jsonschema` from 4.19.2 to 4.24.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.19.2...v4.24.0)

Updates `pycryptodome` from 3.19.1 to 3.23.0
- [Release notes](https://github.com/Legrandin/pycryptodome/releases)
- [Changelog](https://github.com/Legrandin/pycryptodome/blob/master/Changelog.rst)
- [Commits](Legrandin/pycryptodome@v3.19.1...v3.23.0)

Updates `pytz` from 2023.3.post1 to 2023.4
- [Release notes](https://github.com/stub42/pytz/releases)
- [Commits](stub42/pytz@release_2023.3.post1...release_2023.4)

---
updated-dependencies:
- dependency-name: django
  dependency-version: 4.2.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-python-dependencies
- dependency-name: whitenoise
  dependency-version: 6.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: django-mysql
  dependency-version: 4.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: django-csp
  dependency-version: '3.8'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: django-import-export
  dependency-version: 3.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-python-dependencies
- dependency-name: django-admin-rangefilter
  dependency-version: 0.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: fontawesomefree
  dependency-version: 6.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: graphene-django
  dependency-version: 3.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: django-filter
  dependency-version: '23.5'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: rules
  dependency-version: '3.5'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: numpy
  dependency-version: 1.26.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-python-dependencies
- dependency-name: pandas
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: sqlalchemy
  dependency-version: 2.0.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-python-dependencies
- dependency-name: mysqlclient
  dependency-version: 2.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-python-dependencies
- dependency-name: google-cloud-bigquery[pandas]
  dependency-version: 3.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: debugpy
  dependency-version: 1.8.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-python-dependencies
- dependency-name: jsonschema
  dependency-version: 4.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: pycryptodome
  dependency-version: 3.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
- dependency-name: pytz
  dependency-version: '2023.4'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-python-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/all-python-dependencies-51fa9c5022 branch from 5a0c836 to e41a9ac Compare June 30, 2025 03:11
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.

0 participants