Skip to content

build(deps): bump the production-dependencies group with 13 updates - #7253

Merged
smarnach merged 1 commit into
mainfrom
dependabot/uv/production-dependencies-d9f5c46f4f
Aug 21, 2026
Merged

build(deps): bump the production-dependencies group with 13 updates#7253
smarnach merged 1 commit into
mainfrom
dependabot/uv/production-dependencies-d9f5c46f4f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 13 updates:

Package From To
boltons 26.0.0 26.1.0
click 8.4.1 8.4.2
datadog 0.52.1 0.53.0
django 5.2.16 5.2.17
djangorestframework 3.17.1 3.18.0
elasticsearch 9.4.1 9.5.0
google-cloud-pubsub 2.39.0 2.39.1
google-cloud-storage 3.12.0 3.13.1
pyquery 2.0.1 2.1.0
pytest-django 4.12.0 4.14.0
pytest-env 1.6.0 1.7.0
ruff 0.15.19 0.16.3
sentry-sdk 2.63.0 2.68.0

Updates boltons from 26.0.0 to 26.1.0

Release notes

Sourced from boltons's releases.

26.1.0

  • Fixed strutils.singularize mangling words ending in 'ss'
  • Fixed fileutils.AtomicSaver to accept os.PathLike
  • Fixed copy.copy/copy.deepcopy collapsing dictutils.OrderedMultiDict values
  • Sped up strutils.MultiReplace match lookup
  • Fixed setutils.IndexedSet out-of-range negative indexing wrapping around
  • Fixed setutils.IndexedSet slicing after removals

Full Changelog: mahmoud/boltons@26.0.0...26.1.0

Changelog

Sourced from boltons's changelog.

26.1.0

(July 17, 2026)

  • Fixed [strutils.singularize][strutils.singularize] mangling words ending in 'ss'
  • Fixed [fileutils.AtomicSaver][fileutils.AtomicSaver] to accept os.PathLike
  • Fixed copy.copy/copy.deepcopy collapsing [dictutils.OrderedMultiDict][dictutils.OrderedMultiDict] values
  • Sped up [strutils.MultiReplace][strutils.MultiReplace] match lookup
  • Fixed [setutils.IndexedSet][setutils.IndexedSet] out-of-range negative indexing wrapping around
  • Fixed [setutils.IndexedSet][setutils.IndexedSet] slicing after removals
Commits
  • 1d52527 boltons version 26.1.0
  • 4c24615 chore(ci): upgrade actions to latest and pin to commit SHAs
  • 1e61524 fix(strutils): stop singularize() mangling words ending in 'ss'
  • 55dfe50 fix(fileutils): accept os.PathLike in AtomicSaver
  • ebc7a8f Fix copy.copy/copy.deepcopy collapsing OrderedMultiDict values
  • bba729b Speed up MultiReplace match lookup
  • f5cf8b5 Remove listutils test import side effect
  • d0a284f fix IndexedSet out-of-range negative indexing wrapping around (x[-n-k], pop(-...
  • 609cabe fix IndexedSet slicing after removals: keep iter_slice bounds in apparent ind...
  • 979fa9b bump version to 26.0.1dev
  • See full diff in compare view

Updates click from 8.4.1 to 8.4.2

Release notes

Sourced from click's releases.

8.4.2

This is the Click 8.4.1 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/click/8.4.2/ Changes: https://click.palletsprojects.com/page/changes/#version-8-4-2 Milestone: https://github.com/pallets/click/milestone/34

  • Fix Fish shell completion broken in 8.4.0 by #3126. Newlines and tabs in option help text are now escaped, keeping the original completion format while still supporting multi-line help. #3502 #3043 #3504 #3508
  • Deprecated commands and options with empty or missing help text no longer render a stray leading space before the (DEPRECATED) label. #3509
  • A {class}Group with invoke_without_command=True marks its subcommand as optional in the usage help, showing [COMMAND] instead of COMMAND. #3059 #3507
  • echo_via_pager flushes after each write, so passing a generator streams output to the pager incrementally instead of staying hidden until the pipe buffer fills. #3242 #2542 #3534
  • echo_via_pager and get_pager_file no longer close a borrowed stdout stream when no external pager runs, completing the partial I/O operation on closed file fix from #3482. #3449 #3533
  • Fix CLI usage symopsis for optional arguments producing double square brackets [[a|b|c]]... whose type already brackets their metavar. #3578
  • {func}version_option resolves a package_name that does not match an installed distribution as an import (top-level module) name via {func}importlib.metadata.packages_distributions. Packages whose top-level module name differs from their distribution name (PIL vs Pillow, jwt vs PyJWT) no longer raise RuntimeError out of the box. #2331 #1884 #3125 #3582
Changelog

Sourced from click's changelog.

Version 8.4.2

Released 2026-06-24

  • Fix Fish shell completion broken in 8.4.0 by {pr}3126. Newlines and tabs in option help text are now escaped, keeping the original completion format while still supporting multi-line help. {issue}3502 {issue}3043 {pr}3504 {pr}3508
  • Deprecated commands and options with empty or missing help text no longer render a stray leading space before the (DEPRECATED) label. {pr}3509
  • A {class}Group with invoke_without_command=True marks its subcommand as optional in the usage help, showing [COMMAND] instead of COMMAND. {issue}3059 {pr}3507
  • echo_via_pager flushes after each write, so passing a generator streams output to the pager incrementally instead of staying hidden until the pipe buffer fills. {issue}3242 {issue}2542 {pr}3534
  • echo_via_pager and get_pager_file no longer close a borrowed stdout stream when no external pager runs, completing the partial I/O operation on closed file fix from {pr}3482. {issue}3449 {pr}3533
  • Fix CLI usage symopsis for optional arguments producing double square brackets [[a|b|c]]... whose type already brackets their metavar. {pr}3578
  • {func}version_option resolves a package_name that does not match an installed distribution as an import (top-level module) name via {func}importlib.metadata.packages_distributions. Packages whose top-level module name differs from their distribution name (PIL vs Pillow, jwt vs PyJWT) no longer raise RuntimeError out of the box. {issue}2331 {issue}1884 {issue}3125 {pr}3582
Commits
  • b2e30a1 Release version 8.4.2
  • 7a16b20 Fix package_name resolution when module differs from distribution name (#3582)
  • bec5928 Fix package_name resolution when top-level module differs from distribution...
  • 916883a Fix tests to not rely on -Wdefault option (#3591)
  • 09195f6 Fix double-bracketing of choices in synopsis (#3578)
  • 1557e26 Check for warning exception with idiomatic context manager
  • d9ff133 Static typing improvements in click.shell_completion (#3460)
  • 762c97e Fix double-bracketing of choices in synopsis
  • 8929d39 Convert changes to markdown. (#3559)
  • 237be50 Move changes headings down a level.
  • Additional commits viewable in compare view

Updates datadog from 0.52.1 to 0.53.0

Release notes

Sourced from datadog's releases.

v0.53.0

See CHANGELOG.md for details.

v0.52.2

See CHANGELOG.md for details.

Changelog

Sourced from datadog's changelog.

v0.53.0 / 2026-07-24

  • [Fixed] Add DD_DOGSTATSD_URL support for Unix and UDP URLs. See #968.
  • [Added] Retry DogStatsD UDS connect failures. See #964.

v0.52.2 / 2026-06-22

  • [Fixed] Fix dogshell to accept app keys with underscore prefixes. See #931.
  • [Fixed] Push cardinality for sampled metrics. See #929.
  • [Fixed] Compute rate under lock. See #928.
  • [Fixed] Report the right number of dropped bytes. See #927.
  • [Fixed] Pass missing parameter in MaxSampleMetricContexts. See #916.
  • [Fixed] Restore --pretty/--raw support in dogshell. See #917.
  • [Fixed] Fix SLO update via dogshell. See #889.
  • [Changed] Cache constant tags for performance. See #915.
  • [Added] Add typing for api, util, dogstatsd, and dogshell modules. See #920, #922, #921, #919, #918.
Commits

Updates django from 5.2.16 to 5.2.17

Commits
  • e802ada [5.2.x] Bumped version for 5.2.17 release.
  • b9adb81 [5.2.x] Fixed CVE-2026-15920 -- Made display_for_field() validate URLs before...
  • ba80833 [5.2.x] Fixed CVE-2026-15830 -- Mitigated potential DoS via nested geometry c...
  • c72a5db [5.2.x] Fixed CVE-2026-15337 -- Mitigated potential DoS in check_for_language().
  • 115ffd0 [5.2.x] Fixed CVE-2026-15307 -- Blocked raster strings and dicts in spatial l...
  • ec5ced4 [5.2.x] Fixed #36770 -- Fixed incomplete mocking in SQLiteInMemoryTestDbs.
  • 02369b5 [5.2.x] Allowed the full Python test matrix to run on GitHub Actions.
  • 686072f [5.2.x] Added stub release notes and release date for 5.2.17.
  • cd5ad8c [5.2.x] Bumped minimum setuptools version to 83.
  • 3e389b7 [5.2.x] Closed temporary files in GDALRasterTests.
  • Additional commits viewable in compare view

Updates djangorestframework from 3.17.1 to 3.18.0

Release notes

Sourced from djangorestframework's releases.

3.18.0

What's Changed

Breaking changes

Features

Bug fixes

Other changes

New Contributors

Full Changelog: encode/django-rest-framework@3.17.1...3.18.0

3.17.2

What's Changed

... (truncated)

Commits
  • 11875a3 Prepare release 3.18.0 (#10015)
  • d346a8c Add note about Browsable API simulating POST in documentation (#9814)
  • 80d535d Fix GHA workflow for preparing release
  • aa1876b Update fields.md explaining how the source argument affects `.validated_dat...
  • 000bb33 Add nulls_distinct support to UniqueTogetherValidator (#9866)
  • 7508e0c Raise clear error for unsupported list update validation (#9981)
  • 69d1cd7 Fix DictField HTML input returning empty dict for missing fields (#9891)
  • bbc62ac Update Django 6.1 dependency to stable release. (#10016)
  • f780434 Add GHA workflow to prepare a release
  • dc027d2 set_rollback should only rollback initialized connections (#9599)
  • Additional commits viewable in compare view

Updates elasticsearch from 9.4.1 to 9.5.0

Release notes

Sourced from elasticsearch's releases.

v9.5.0

Changelog

Commits

Updates google-cloud-pubsub from 2.39.0 to 2.39.1

Release notes

Sourced from google-cloud-pubsub's releases.

google-cloud-pubsub: v2.39.1

2.39.1 (2026-08-06)

Bug Fixes

Commits
  • 905bfe3 chore: release main (#17832)
  • ad8f93c fix(api-core): use truthiness check in setup_request_id to support proto-plus...
  • 06dd2c0 chore: bump google-api-core to 2.28.0 (#18003)
  • 08f21a6 fix(proto-plus): add context to TypeErrors during message manipulation (#17682)
  • 32fd479 tests(spanner): avoid table name collisions in tests (#18001)
  • 2207ca6 feat: add pandas-gbq capability helper (#17957)
  • 6167e41 fix: deduplicate x-goog-api-client headers (#17616)
  • 71bc622 docs: add connector libraries overview table to package README (#17939)
  • 1b5c48b fix(bigframes): fix field name typos for ai.generate* functions (#17983)
  • f64ada2 fix: avoid retaining routing parameter instances in cache (#17961)
  • Additional commits viewable in compare view

Updates google-cloud-storage from 3.12.0 to 3.13.1

Release notes

Sourced from google-cloud-storage's releases.

google-cloud-storage: v3.13.1

3.13.1 (2026-08-06)

Bug Fixes

google-cloud-storage: v3.13.0

3.13.0 (2026-07-13)

Features

  • storage: add option to disable checksums and improve robustness of full_object_checksum validation (#17665) (a5a717d)
  • storage: support full_object_checksum in AsyncAppendableObjectWriter (#17658) (e08d5ca)

google-cloud-storage: v3.12.1

3.12.1 (2026-07-07)

Bug Fixes

  • storage: log occasional (1 in 5 million) additional bytes received from GCS in read path (#17423) (335c12f)
Changelog

Sourced from google-cloud-storage's changelog.

Changelog

PyPI History

3.15.0 (2026-06-02)

Features

3.14.0 (2026-04-02)

Features

3.13.0 (2026-03-26)

Features

Bug Fixes

Commits
  • 905bfe3 chore: release main (#17832)
  • ad8f93c fix(api-core): use truthiness check in setup_request_id to support proto-plus...
  • 06dd2c0 chore: bump google-api-core to 2.28.0 (#18003)
  • 08f21a6 fix(proto-plus): add context to TypeErrors during message manipulation (#17682)
  • 32fd479 tests(spanner): avoid table name collisions in tests (#18001)
  • 2207ca6 feat: add pandas-gbq capability helper (#17957)
  • 6167e41 fix: deduplicate x-goog-api-client headers (#17616)
  • 71bc622 docs: add connector libraries overview table to package README (#17939)
  • 1b5c48b fix(bigframes): fix field name typos for ai.generate* functions (#17983)
  • f64ada2 fix: avoid retaining routing parameter instances in cache (#17961)
  • Additional commits viewable in compare view

Updates pyquery from 2.0.1 to 2.1.0

Changelog

Sourced from pyquery's changelog.

2.1.0 (2026-07-27)

  • pseudo selector :has() no longer support strings as arguments

2.0.2 (2026-07-27)

  • require cssselect 1.4.x. 1.5.x breaks has() pseudo selector

  • Drop support for python 3.9and 3.10

Commits
  • 3aeeabc Preparing release 2.1.0
  • 4d5ee22 bump version
  • 590232a make ruff happy
  • b508c64 pseudo selector :has() no longer support strings as arguments
  • 4ee286e Back to development: 2.0.3
  • c76179c Preparing release 2.0.2
  • 5b104b2 changes
  • 183d26c fix: require cssselect 1.4 for now
  • de087c7 Merge pull request #262 from santhreal/fix/str-contents-text-nodes
  • 638b061 fix: pass method=xml for str serialization
  • Additional commits viewable in compare view

Updates pytest-django from 4.12.0 to 4.14.0

Release notes

Sourced from pytest-django's releases.

v4.14.0

https://pytest-django.readthedocs.io/en/stable/changelog.html#v4-14-0-2026-08-10

v4.13.0

https://pytest-django.readthedocs.io/en/latest/changelog.html#v4-13-0-2026-08-06

Changelog

Sourced from pytest-django's changelog.

v4.14.0 (2026-08-10)

Compatibility ^^^^^^^^^^^^^

  • Restored (unofficial) support for Django 5.0 and Django 5.1.

Improvements ^^^^^^^^^^^^

  • Added a django extra to the package. By depending on this extra (e.g. pip install pytest-django[django]), the dependency resolver will ensure you get a version of pytest-django that is compatible with your version of Django (lower bound only). At least from now on...

v4.13.0 (2026-08-06)

Compatibility ^^^^^^^^^^^^^

  • Dropped support for Django 4.2 and 5.1.

Improvements ^^^^^^^^^^^^

  • Export pytest_django.Settings from the top-level pytest_django module so the :fixture:settings fixture can be type-annotated ([#1257](https://github.com/pytest-dev/pytest-django/issues/1257) <https://github.com/pytest-dev/pytest-django/issues/1257>__).

Bugfixes ^^^^^^^^

  • Fixed type hints of assert methods to match actual signature (PR [#1271](https://github.com/pytest-dev/pytest-django/issues/1271) <https://github.com/pytest-dev/pytest-django/pull/1271>__)
  • Handled Django 6.2's ImproperlyConfigured (in addition to ImportError) when the configured DJANGO_SETTINGS_MODULE cannot be imported, so pytest-django still shows its guidance message.
  • Fixed django_db(transaction=True) tests being set up twice, which repeated the serialized_rollback restore and the fixtures load, and sent setting_changed and post_migrate twice when available_apps is set.
  • Fixed --help/--version failing with AppRegistryNotReady (surfaced as a could not load initial conftests warning) when a conftest.py imports Django models at the top level. Django is now set up even when --help/--version are passed, before the initial conftests are loaded for these options ([#1152](https://github.com/pytest-dev/pytest-django/issues/1152) <https://github.com/pytest-dev/pytest-django/issues/1152>__).
Commits
  • 1a6b612 Release 4.14.0
  • fffb11d docs: remove $ for consistency
  • e8c0606 docs: move the django extra explanation
  • b66deb6 tests: strict import to make pyright happy
  • 823db39 tests: fix wrong type (typing only)
  • a1eaf5d Drop django<5 message asserts compat
  • 2ea1423 Fix _pre_setup_ran_eagerly on Django 5.0 and 5.1
  • 903429c Add django extra to ensure Django dependency compatible lower bound
  • 9661589 docs: prefer newer pytest config TOML format
  • 7646196 docs: remove needless comment
  • Additional commits viewable in compare view

Updates pytest-env from 1.6.0 to 1.7.0

Release notes

Sourced from pytest-env's releases.

1.7.0

What's Changed

Full Changelog: pytest-dev/pytest-env@1.6.0...1.7.0

Commits
  • db01e70 👷 ci: test against Python 3.15 beta (#245)
  • 9e3ce0d [pre-commit.ci] pre-commit autoupdate (#244)
  • 69dae16 📦 build: move the testing extra to a dependency group (#243)
  • 290c20d build(deps): bump astral-sh/setup-uv from 8.3.1 to 8.3.2 (#242)
  • c64e6db build(deps): bump astral-sh/setup-uv from 8.3.0 to 8.3.1 (#241)
  • 23d37ac [pre-commit.ci] pre-commit autoupdate (#240)
  • 82ba427 build(deps): bump astral-sh/setup-uv from 8.2.0 to 8.3.0 (#239)
  • 1a85be5 [pre-commit.ci] pre-commit autoupdate (#238)
  • 63c2093 💰 Surface GitHub Sponsors + thanks.dev
  • ce3f28b [pre-commit.ci] pre-commit autoupdate (#237)
  • Additional commits viewable in compare view

Updates ruff from 0.15.19 to 0.16.3

Release notes

Sourced from ruff's releases.

0.16.3

Release Notes

Released on 2026-08-13.

Preview features

  • [pylint] Fix false negatives on negative numbers (PLR6104) (#27251)
  • [pyupgrade] Add rule to replace while 1 with while True (UP048) (#27190)

Bug fixes

  • [flake8-bandit] Also check keyword arguments (S602, S603, S607, S609) (#27687)
  • [pylint] Allow continue in finally on Python 3.8 (#27626)
  • [pylint] Fix PLE1307 false positive with bools (#27651)
  • [pylint] Fix false positives and negatives with %b format character (PLE1300, PLE1307) (#27560)
  • [pylint] Improve handling of concatenated strings (PLE1300) (#27659)

Rule changes

  • [numpy] Make np.chararray autofix backwards-compatible (NPY201) (#27527)

Performance

  • Enable PGO for Linux x86-64 Ruff releases (#27570)
  • Enable PGO for Linux ARM64 Ruff releases (#27574)
  • Enable PGO for Windows x86-64 Ruff releases (#27573)
  • Enable PGO for macOS ARM64 Ruff releases (#27572)
  • Reduce Expr size to 64 bytes (#27591)

CLI

  • Hyperlink rule codes in ruff check --statistics output (#27646)

Documentation

  • [ruff] Also suggest asyncio.TaskGroup (RUF006) (#27461)

Other changes

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.16.3

Released on 2026-08-13.

Preview features

  • [pylint] Fix false negatives on negative numbers (PLR6104) (#27251)
  • [pyupgrade] Add rule to replace while 1 with while True (UP048) (#27190)

Bug fixes

  • [flake8-bandit] Also check keyword arguments (S602, S603, S607, S609) (#27687)
  • [pylint] Allow continue in finally on Python 3.8 (#27626)
  • [pylint] Fix PLE1307 false positive with bools (#27651)
  • [pylint] Fix false positives and negatives with %b format character (PLE1300, PLE1307) (#27560)
  • [pylint] Improve handling of concatenated strings (PLE1300) (#27659)

Rule changes

  • [numpy] Make np.chararray autofix backwards-compatible (NPY201) (#27527)

Performance

  • Enable PGO for Linux x86-64 Ruff releases (#27570)
  • Enable PGO for Linux ARM64 Ruff releases (#27574)
  • Enable PGO for Windows x86-64 Ruff releases (#27573)
  • Enable PGO for macOS ARM64 Ruff releases (#27572)
  • Reduce Expr size to 64 bytes (#27591)

CLI

  • Hyperlink rule codes in ruff check --statistics output (#27646)

Documentation

  • [ruff] Also suggest asyncio.TaskGroup (RUF006) (

Bumps the production-dependencies group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [boltons](https://github.com/mahmoud/boltons) | `26.0.0` | `26.1.0` |
| [click](https://github.com/pallets/click) | `8.4.1` | `8.4.2` |
| [datadog](https://github.com/DataDog/datadogpy) | `0.52.1` | `0.53.0` |
| [django](https://github.com/django/django) | `5.2.16` | `5.2.17` |
| [djangorestframework](https://github.com/encode/django-rest-framework) | `3.17.1` | `3.18.0` |
| [elasticsearch](https://github.com/elastic/elasticsearch-py) | `9.4.1` | `9.5.0` |
| [google-cloud-pubsub](https://github.com/googleapis/google-cloud-python) | `2.39.0` | `2.39.1` |
| [google-cloud-storage](https://github.com/googleapis/google-cloud-python) | `3.12.0` | `3.13.1` |
| [pyquery](https://github.com/gawel/pyquery) | `2.0.1` | `2.1.0` |
| [pytest-django](https://github.com/pytest-dev/pytest-django) | `4.12.0` | `4.14.0` |
| [pytest-env](https://github.com/pytest-dev/pytest-env) | `1.6.0` | `1.7.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.15.19` | `0.16.3` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.63.0` | `2.68.0` |


Updates `boltons` from 26.0.0 to 26.1.0
- [Release notes](https://github.com/mahmoud/boltons/releases)
- [Changelog](https://github.com/mahmoud/boltons/blob/master/CHANGELOG.md)
- [Commits](mahmoud/boltons@26.0.0...26.1.0)

Updates `click` from 8.4.1 to 8.4.2
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.md)
- [Commits](pallets/click@8.4.1...8.4.2)

Updates `datadog` from 0.52.1 to 0.53.0
- [Release notes](https://github.com/DataDog/datadogpy/releases)
- [Changelog](https://github.com/DataDog/datadogpy/blob/master/CHANGELOG.md)
- [Commits](DataDog/datadogpy@v0.52.1...v0.53.0)

Updates `django` from 5.2.16 to 5.2.17
- [Commits](django/django@5.2.16...5.2.17)

Updates `djangorestframework` from 3.17.1 to 3.18.0
- [Release notes](https://github.com/encode/django-rest-framework/releases)
- [Commits](encode/django-rest-framework@3.17.1...3.18.0)

Updates `elasticsearch` from 9.4.1 to 9.5.0
- [Release notes](https://github.com/elastic/elasticsearch-py/releases)
- [Commits](elastic/elasticsearch-py@v9.4.1...v9.5.0)

Updates `google-cloud-pubsub` from 2.39.0 to 2.39.1
- [Release notes](https://github.com/googleapis/google-cloud-python/releases)
- [Changelog](https://github.com/googleapis/google-cloud-python/blob/main/packages/google-cloud-documentai/CHANGELOG.md)
- [Commits](googleapis/google-cloud-python@google-cloud-pubsub-v2.39.0...google-cloud-pubsub-v2.39.1)

Updates `google-cloud-storage` from 3.12.0 to 3.13.1
- [Release notes](https://github.com/googleapis/google-cloud-python/releases)
- [Changelog](https://github.com/googleapis/google-cloud-python/blob/main/packages/google-cloud-documentai/CHANGELOG.md)
- [Commits](googleapis/google-cloud-python@google-cloud-storage-v3.12.0...google-cloud-storage-v3.13.1)

Updates `pyquery` from 2.0.1 to 2.1.0
- [Changelog](https://github.com/gawel/pyquery/blob/master/CHANGES.rst)
- [Commits](gawel/pyquery@2.0.1...2.1.0)

Updates `pytest-django` from 4.12.0 to 4.14.0
- [Release notes](https://github.com/pytest-dev/pytest-django/releases)
- [Changelog](https://github.com/pytest-dev/pytest-django/blob/main/docs/changelog.rst)
- [Commits](pytest-dev/pytest-django@v4.12.0...v4.14.0)

Updates `pytest-env` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/pytest-dev/pytest-env/releases)
- [Commits](pytest-dev/pytest-env@1.6.0...1.7.0)

Updates `ruff` from 0.15.19 to 0.16.3
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.15.19...0.16.3)

Updates `sentry-sdk` from 2.63.0 to 2.68.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.63.0...2.68.0)

---
updated-dependencies:
- dependency-name: boltons
  dependency-version: 26.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: click
  dependency-version: 8.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: datadog
  dependency-version: 0.53.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: django
  dependency-version: 5.2.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: djangorestframework
  dependency-version: 3.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: elasticsearch
  dependency-version: 9.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: google-cloud-pubsub
  dependency-version: 2.39.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: google-cloud-storage
  dependency-version: 3.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pyquery
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pytest-django
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pytest-env
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ruff
  dependency-version: 0.16.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: sentry-sdk
  dependency-version: 2.68.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Aug 21, 2026
@smarnach
smarnach added this pull request to the merge queue Aug 21, 2026
Merged via the queue into main with commit 7e28d72 Aug 21, 2026
1 check passed
@smarnach
smarnach deleted the dependabot/uv/production-dependencies-d9f5c46f4f branch August 21, 2026 15:37
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:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant