Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 6, 2025

Bumps the python-deps group with 17 updates in the / directory:

Package From To
redis 6.1.0 6.3.0
sqlalchemy 2.0.41 2.0.42
alembic 1.16.1 1.16.4
pydantic 2.11.5 2.11.7
celery 5.5.2 5.5.3
boto3 1.38.23 1.40.3
awswrangler 3.11.0 3.12.1
sigstore 3.6.2 3.6.4
awscli-local 0.22.0 0.22.1
tox 4.26.0 4.28.4
flake8 7.2.0 7.3.0
coverage 7.8.2 7.10.2
mypy 1.15.0 1.17.1
pytest 8.3.5 8.4.1
pytest-cov 6.1.1 6.2.1
pytest-xdist 3.6.1 3.8.0
bandit 1.8.3 1.8.6

Updates redis from 6.1.0 to 6.3.0

Release notes

Sourced from redis's releases.

6.3.0

Changes

🚀 New Features

  • Add support for new BITOP operations: DIFF, DIFF1, ANDOR, ONE (#3690)
  • Support new VAMANA vector index type (#3702)
  • Add new stream commands (#3711)
  • add async Retry eq and hash & fix ExponentialWithJitterBackoff eq (#3668)

🐛 Bug Fixes

  • Fixing sentinel command execution to allow returning of actual responses when meaningful - behaviour controlled by 'return_responses' argument. (#3191)
  • Annotate deprecated_args decorator to preserve wrapped function type signature (#3701)
  • Fix ConnectionPool to raise MaxConnectionsError instead of Connection… (#3698)
  • add async Retry eq and hash & fix ExponentialWithJitterBackoff eq (#3668)
  • SentinelManagedConnection searches for new master upon connection failure (#3560) (#3601)

🧰 Maintenance

  • fix: avoid instantiating a connection on repr_ (#3653)
  • Fixing the return type hint for the transaction method in the standalone client. (#3660)
  • Bump rojopolis/spellcheck-github-actions from 0.48.0 to 0.49.0 (#3665)
  • Dropping integration tests with Redis 6.2 from pipeline actions. (#3659)
  • Remove deprecated arg from call to ClusterPipeline (#3670)
  • TransactionStrategy reset: UNWATCH only when status is watching (#3671)
  • KeyT for set operations (#3190)
  • Removing references to old docs site 'https://redis-py.readthedocs.io/' replaced by 'https://redis.readthedocs.io/' (#3674)
  • Removing unnecessary check for tests using AsyncMock (#3432)
  • Updating test images for github pipeline execution (#3678)
  • Updating the latest Redis image for pipeline testing (#3695)
  • Bump rojopolis/spellcheck-github-actions from 0.49.0 to 0.51.0 (#3689)
  • DOC-5225 testable probabilistic dt examples (#3691)
  • Update README.md (#3699)
  • Convert the value to int type only if it exists in CLIENT INFO (#3688)
  • Fix compatibility with latest pytest-asyncio version(1.1.0) (#3708)
  • DOC-5424 time series examples (#3705)
  • Adding information in connection pool class doc string for available SSLConnection class, that can be used for SSL connections (#3710)

We'd like to thank all the contributors who worked on this release! @​robertosantamaria-scopely @​mahigupta @​alisaifee @​tzongw @​earonesty @​IlianIliev @​ofekshenawa @​andy-stark-redis @​AmirHossein81Gholami @​mharding-hpe @​git-hulk @​ngabhanenetskope @​terencehonles @​ManelCoutinhoSensei @​petyaslavova @​vladvildanov

6.2.0

Changes

🚀 New Features

  • Add dynamic_startup_nodes parameter to async RedisCluster (#3646)
  • Support RESP3 with hiredis-py parser (#3648)
  • [Async] Support for transactions in async RedisCluster client (#3649)

🐛 Bug Fixes

... (truncated)

Commits
  • 4f126ae Updated image name
  • 34ac052 Updated test image
  • 8839429 Updated package version
  • 3085a7f Add new stream commands (#3711)
  • ff21998 Adding information in connection pool class doc string for available SSLConne...
  • 0b83f38 SentinelManagedConnection searches for new master upon connection failure (#3...
  • dbb7cca add async Retry __eq__ and __hash__ & fix ExponentialWithJitterBackof...
  • 02313e1 Fix ConnectionPool to raise MaxConnectionsError instead of Connection… (#3698)
  • 52d186b DOC-5424 time series examples (#3705)
  • 3a81e1d Fix compatibility with latest pytest-asyncio version(1.1.0) (#3708)
  • Additional commits viewable in compare view

Updates sqlalchemy from 2.0.41 to 2.0.42

Release notes

Sourced from sqlalchemy's releases.

2.0.42

Released: July 29, 2025

orm

  • [orm] [usecase] Added dataclass_metadata argument to all ORM attribute constructors that accept dataclasses parameters, e.g. mapped_column.dataclass_metadata, relationship.dataclass_metadata, etc. It's passed to the underlying dataclass metadata attribute of the dataclass field. Pull request courtesy Sigmund Lahn.

    References: #10674

  • [orm] [bug] Implemented the _orm.defer(), _orm.undefer() and _orm.load_only() loader options to work for composite attributes, a use case that had never been supported previously.

    References: #12593

  • [orm] [bug] Fixed bug where the ORM would pull in the wrong column into an UPDATE when a key name inside of the ValuesBase.values() method could be located from an ORM entity mentioned in the statement, but where that ORM entity was not the actual table that the statement was inserting or updating. An extra check for this edge case is added to avoid this problem.

    References: #12692

engine

  • [engine] Improved validation of execution parameters passed to the _engine.Connection.execute() and similar methods to provided a better error when tuples are passed in. Previously the execution would fail with a difficult to understand error message.

sql

  • [sql] [usecase] The _sql.values() construct gains a new method _sql.Values.cte(), which allows creation of a named, explicit-columns CTE against an unnamed VALUES expression, producing a syntax that allows column-oriented selection from a VALUES construct on modern versions of PostgreSQL, SQLite, and MariaDB.

    References: #12734

  • [sql] [bug] Fixed issue where select() of a free-standing scalar expression that

... (truncated)

Commits

Updates alembic from 1.16.1 to 1.16.4

Release notes

Sourced from alembic's releases.

1.16.4

Released: July 10, 2025

bug

  • [bug] [config] Fixed issue in new pyproject.toml support where boolean values, such as those used for the recursive_version_locations and sourceless configuration parameters, would not be accepted.

    References: #1694

1.16.3

Released: July 8, 2025

usecase

  • [usecase] [commands] Added new pyproject_async template, combining the new pyproject template with the async template. Pull request courtesy Alc-Alc.

    References: #1683

  • [usecase] [autogenerate] Add "module" post-write hook. This hook type is almost identical to the console_scripts hook, except it's running python -m black instead of using black's console_script. It is mainly useful for tools without console scripts (e.g. ruff), but has semantics closer to the console_scripts hook in that it finds the ruff module available to the running interpreter instead of finding an executable by path. Pull request courtesy Frazer McLean.

    References: #1686

bug

  • [bug] [autogenerate] Fixed the rendering of server_default=FetchedValue() to ensure it is preceded by the sa. prefix in the migration script. Pull request courtesy david-fed.

    References: #1633

  • [bug] [autogenerate] Fixed autogenerate rendering bug which failed to render foreign key constraints local to a CreateTableOp object if it did not refer to a MetaData collection via a private constructor argument that would not ordinarily be passed in user-defined rewriter recipes, including ones in the Alembic cookbook section of the docs.

... (truncated)

Commits

Updates pydantic from 2.11.5 to 2.11.7

Release notes

Sourced from pydantic's releases.

v2.11.7 2025-06-14

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.6...v2.11.7

v2.11.6 2025-06-13

v2.11.6 (2025-06-13)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.5...v2.11.6

Changelog

Sourced from pydantic's changelog.

v2.11.7 (2025-06-14)

GitHub release

What's Changed

Fixes

  • Copy FieldInfo instance if necessary during FieldInfo build by @​Viicos in #11898

v2.11.6 (2025-06-13)

GitHub release

What's Changed

Fixes

Commits
  • 5f033e4 Prepare release v2.11.7
  • c3368b8 Copy FieldInfo instance if necessary during FieldInfo build (#11980)
  • 3987b23 Prepare release v2.11.6
  • dc7a9d2 Always store the original field assignment on FieldInfo
  • c284c27 Rebuild dataclass fields before schema generation
  • See full diff in compare view

Updates celery from 5.5.2 to 5.5.3

Release notes

Sourced from celery's releases.

v5.5.3

What's Changed

New Contributors

Full Changelog: celery/celery@v5.5.2...v5.5.3

Changelog

Sourced from celery's changelog.

5.5.3

:release-date: 2025-06-01 :release-by: Tomer Nosrati

What's Changed


- make the tests run on python 3.13 for gcs backend ([#9677](https://github.com/celery/celery/issues/9677))
- Added DeepWiki to README ([#9683](https://github.com/celery/celery/issues/9683))
- Limit redis to <=v5.2.1 to match Kombu ([#9693](https://github.com/celery/celery/issues/9693))
- Use EX_OK instead of literal zero ([#9684](https://github.com/celery/celery/issues/9684))
- Make wheel metadata reproducible ([#9687](https://github.com/celery/celery/issues/9687))
- let celery install from kombu dependencies for better align ([#9696](https://github.com/celery/celery/issues/9696))
- Fix stamping documentation to clarify stamped_headers key is optional in visitor methods ([#9697](https://github.com/celery/celery/issues/9697))
- Support apply_async without queue argument on quorum queues ([#9686](https://github.com/celery/celery/issues/9686))
- Updated rabbitmq doc about using quorum queues with task routes ([#9707](https://github.com/celery/celery/issues/9707))
- Add: Dumper Unit Test ([#9711](https://github.com/celery/celery/issues/9711))
- Add unit test for event.group_from ([#9709](https://github.com/celery/celery/issues/9709))
- refactor: add beat_cron_starting_deadline documentation warning ([#9712](https://github.com/celery/celery/issues/9712))
- fix: resolve issue [#9569](https://github.com/celery/celery/issues/9569) by supporting distinct broker transport options for workers ([#9695](https://github.com/celery/celery/issues/9695))
- Fixes issue with retry callback arguments in DelayedDelivery ([#9708](https://github.com/celery/celery/issues/9708))
- get_exchange-unit-test ([#9710](https://github.com/celery/celery/issues/9710))
- ISSUE-9704: Update documentation of result_expires, filesystem backend is supported ([#9716](https://github.com/celery/celery/issues/9716))
- update to blacksmith ubuntu 24.04 ([#9717](https://github.com/celery/celery/issues/9717))
- Added unit tests for celery.utils.iso8601 ([#9725](https://github.com/celery/celery/issues/9725))
- Update introduction.rst docs ([#9728](https://github.com/celery/celery/issues/9728))
- Prepare for release: v5.5.3 ([#9732](https://github.com/celery/celery/issues/9732))

.. _version-5.5.2:

Commits
  • 088c39c Prepare for release: v5.5.3 (#9732)
  • 0c1c52b Update introduction.rst docs (#9728)
  • 778b009 Added unit tests for celery.utils.iso8601 (#9725)
  • b00c144 update to blacksmith ubuntu 24.04
  • 5aae2ca ISSUE-9704: Update documentation of , filesystem backend is supported if cele...
  • 7cf9d89 get_exchange-unit-test (#9710)
  • b06e53f Fixes issue with retry callback argument types in DelayedDelivery (#9708)
  • b6cab29 fix: resolve issue #9569 by supporting distinct broker transport options for ...
  • 5fc068c refactor: add beat_cron_starting_deadline documentation warning (#9712)
  • c7bb67f Add unit test for event.group_from (#9709)
  • Additional commits viewable in compare view

Updates boto3 from 1.38.23 to 1.40.3

Commits
  • 3868a64 Merge branch 'release-1.40.3'
  • f5713f3 Bumping version to 1.40.3
  • 11c2fa3 Add changelog entries from botocore
  • ad48a21 Merge branch 'release-1.40.2'
  • ab9e032 Merge branch 'release-1.40.2' into develop
  • 0a92fe4 Bumping version to 1.40.2
  • b1d3cd4 Add changelog entries from botocore
  • 72d9a28 Merge branch 'release-1.40.1'
  • 1c32a22 Merge branch 'release-1.40.1' into develop
  • a3ffa61 Bumping version to 1.40.1
  • Additional commits viewable in compare view

Updates awswrangler from 3.11.0 to 3.12.1

Release notes

Sourced from awswrangler's releases.

AWS SDK for pandas 3.12.1

Notable Changes ⚠️

Features / Enhancements 🚀

Security / Dependency Updates 🛡️

Documentation / Workflows 📚

Full Changelog: aws/aws-sdk-pandas@3.12.0...3.12.1

AWS SDK for pandas 3.12.0

Notable Changes ⚠️

  • AWS Lambda Layers: pyarrow was upgraded to 20.0.0

Features / Enhancements 🚀

Bugfixes 🐛

Security / Dependency Updates 🛡️

... (truncated)

Commits

Updates sigstore from 3.6.2 to 3.6.4

Release notes

Sourced from sigstore's releases.

v3.6.4

Fixed

  • Bumped the rfc3161-client dependency to >=1.0.3 to fix a security vulnerability (#1451)

v3.6.3

A small bug fix release.

Fixed

  • Verify: Avoid hard failure if trusted root contains unsupported keytypes (as verification may succeed without that key). #1425
Changelog

Sourced from sigstore's changelog.

[3.6.4]

Fixed

  • Bumped the rfc3161-client dependency to >=1.0.3 to fix a security vulnerability (#1451)

[3.6.3]

Fixed

  • Verify: Avoid hard failure if trusted root contains unsupported keytypes (as verification may succeed without that key). #1425
Commits

Updates awscli-local from 0.22.0 to 0.22.1

Commits

Updates tox from 4.26.0 to 4.28.4

Release notes

Sourced from tox's releases.

4.28.4

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.28.3...4.28.4

4.28.3

What's Changed

Full Changelog: tox-dev/tox@4.28.2...4.28.3

4.28.2

What's Changed

Full Changelog: tox-dev/tox@4.28.1...4.28.2

4.28.1

What's Changed

Full Changelog: tox-dev/tox@4.28.0...4.28.1

4.28.0

What's Changed

... (truncated)

Changelog

Sourced from tox's changelog.

v4.28.4 (2025-07-31)

Features - 4.28.4

- Pass ssh-agent variables ``SSH_AGENT_PID`` and ``SSH_AUTH_SOCK`` in ``pass_env`` by default.
  - by :user:`daniilgankov` (:issue:`3572`)

v4.28.3 (2025-07-25)

No significant changes.

v4.28.2 (2025-07-25)

Bugfixes - 4.28.2

  • Don't pass in the filter argument to tar.extractall on old Python versions - by :user:gaborbernat. (:issue:3568)

v4.28.1 (2025-07-22)

Bugfixes - 4.28.1

- Use `tarfile.data_filter <https://docs.python.org/3/library/tarfile.html#tarfile.data_filter>`_ with ``extractall``
  only on supported Python versions:
  • &gt;= 3.11.4
  • &gt;= 3.10.12 and &lt; 3.11
  • &gt;= 3.9.17 and &lt; 3.10

by :user:gaborbernat. (:issue:3565)

v4.28.0 (2025-07-20)

Features - 4.28.0

  • Added constraints to allow specifying constraints files for all dependencies. (:issue:3550)
  • Allow disabling tox plugins via the TOX_DISABLED_EXTERNAL_PLUGINS environment variable - by :user:gaborbernat. (:issue:3468)

Improved Documentation - 4.28.0

- The ``min_version``/``minversion`` config option is deprecated in favor of the ``requires`` option. (:issue:`3553`)

v4.27.0 (2025-06-17)

</tr></table>

... (truncated)

Commits

Updates flake8 from 7.2.0 to 7.3.0

Commits

Updates coverage from 7.8.2 to 7.10.2

Changelog

Sourced from coverage's changelog.

Version 7.10.2 — 2025-08-03

  • Fix: some code with NOP bytecodes could report missing branches that are actually executed. This is now fixed, closing issue 1999_. Python 3.9 still shows the problem.

.. _issue 1999: nedbat/coveragepy#1999

.. _changes_7-10-1:

Version 7.10.1 — 2025-07-27

  • Fix: the exclusion for if TYPE_CHECKING: was wrong: it marked the branch as partial, but it should have been a line exclusion so the entire clause would be excluded. Improves issue 831_.

  • Fix: changed where .pth files are written for patch = subprocess, closing issue 2006_.

.. _issue 2006: nedbat/coveragepy#2006

.. _changes_7-10-0:

Version 7.10.0 — 2025-07-24

  • A new configuration option: ":ref:config_run_patch" specifies named patches to work around some limitations in coverage measurement. These patches are available:

    • patch = _exit lets coverage save its data even when :func:os._exit() <python:os._exit> is used to abruptly end the process. This closes long-standing issue 310_ as well as its duplicates: issue 312, issue 1673, issue 1845, and issue 1941.

    • patch = subprocess measures coverage in Python subprocesses created with :mod:subprocess, :func:os.system, or one of the :func:execv <python:os.execl> or :func:spawnv <python:os.spawnl> family of functions. Closes old issue 367_ and duplicate issue 378_.

    • patch = execv adjusts the :func:execv <python:os.execl> family of functions to save coverage data before ending the current program and starting the next. Not available on Windows. Closes issue 43_ after 15 years!

  • The HTML report now dimly colors subsequent lines in multi-line statements.

... (truncated)

Commits
  • a867852 docs: sample HTML for 7.10.2
  • e7bfabe docs: prep for 7.10.2
  • 5dbd736 test: this test often borks metacov, retry it
  • b7430fa debug: more convenient run_trace.py
  • e2039d0 refactor: less redundancy in branch_trails
  • c177731 fix: see through nop bytecodes to get the right arcs. #1999
  • 7a83ab0 test: don't try to make pth files when invoked from pth #2011
  • 6d8b091 refactor: remove a commented-out line
  • fc507ad test: add a case for an extension-less Python file parse error
  • 05a6e8d test: no need for skip, we already skip windows
  • Additional commits viewable in compare view

Updates mypy from 1.15.0 to 1.17.1

Changelog

Sourced from mypy's changelog.

Mypy 1.17.1

  • Retain None as constraints bottom if no bottoms were provided (Stanislav Terliakov, PR 19485)
  • Fix "ignored exception in hasattr" in dmypy (Stanislav Terliakov, PR 19428)
  • Prevent a crash when InitVar is redefined with a method in a subclass (Stanislav Terliakov, PR 19453)

Acknowledgements

Thanks to all mypy contributors who contributed to this release:

  • Alexey Makridenko
  • Brian Schubert
  • Chad Dombrova
  • Chainfire
  • Charlie Denton
  • Charulata
  • Christoph Tyralla
  • CoolCat467
  • Donal Burns
  • Guy Wilson
  • Ivan Levkivskyi
  • johnthagen
  • Jukka Lehtosalo
  • Łukasz Kwieciński
  • Marc Mueller
  • Michael J. Sullivan
  • Mikhail Golubev
  • Sebastian Rittau
  • Shantanu
  • Stanislav Terliakov
  • wyattscarpenter

I’d also like to thank my employer, Dropbox, for supporting mypy development.

Mypy 1.16

We’ve just uploaded mypy 1.16 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Different Property Getter and Setter Types

Mypy now supports using different types for a property getter and setter:

class A:
    _value: int
</tr></table> 

... (truncated)

Commits
  • acb2983 Bump version to 1.17.1
  • 933c913 Retain None as constraints bottom if no bottoms were provided (#19485)
  • 5f4428f Fix "ignored exception in hasattr" in dmypy (#19428)
  • 88fdeaa Prevent a crash when InitVar is redefined with a method in a subclass (#19453)
  • e44d14f Bump version to 1.17.1+dev
  • 0260991 Update version string
  • 3901aa2 Updates to 1.17 changelog (#19436)
  • 7d13396 Initial changelog for 1.17 release (#19427)
  • a182dec Combine the revealed types of multiple iteration steps in a more robust manne...
  • ab4fd57 Improve the handling of "iteration dependent" errors and notes in finally cla...
  • Additional commits viewable in compare view

Updates pytest from 8.3.5 to 8.4.1

Release notes

Sourced from pytest's releases.

8.4.1

pytest 8.4.1 (2025-06-17)

Bug fixes

  • #13461: Corrected _pytest.terminal.TerminalReporter.isatty...

    Description has been truncated

…dates

Bumps the python-deps group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [redis](https://github.com/redis/redis-py) | `6.1.0` | `6.3.0` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.41` | `2.0.42` |
| [alembic](https://github.com/sqlalchemy/alembic) | `1.16.1` | `1.16.4` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.11.5` | `2.11.7` |
| [celery](https://github.com/celery/celery) | `5.5.2` | `5.5.3` |
| [boto3](https://github.com/boto/boto3) | `1.38.23` | `1.40.3` |
| [awswrangler](https://github.com/aws/aws-sdk-pandas) | `3.11.0` | `3.12.1` |
| [sigstore](https://github.com/sigstore/sigstore-python) | `3.6.2` | `3.6.4` |
| [awscli-local](https://github.com/localstack/awscli-local) | `0.22.0` | `0.22.1` |
| [tox](https://github.com/tox-dev/tox) | `4.26.0` | `4.28.4` |
| [flake8](https://github.com/pycqa/flake8) | `7.2.0` | `7.3.0` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.8.2` | `7.10.2` |
| [mypy](https://github.com/python/mypy) | `1.15.0` | `1.17.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.5` | `8.4.1` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `6.1.1` | `6.2.1` |
| [pytest-xdist](https://github.com/pytest-dev/pytest-xdist) | `3.6.1` | `3.8.0` |
| [bandit](https://github.com/PyCQA/bandit) | `1.8.3` | `1.8.6` |



Updates `redis` from 6.1.0 to 6.3.0
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v6.1.0...v6.3.0)

Updates `sqlalchemy` from 2.0.41 to 2.0.42
- [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 `alembic` from 1.16.1 to 1.16.4
- [Release notes](https://github.com/sqlalchemy/alembic/releases)
- [Changelog](https://github.com/sqlalchemy/alembic/blob/main/CHANGES)
- [Commits](https://github.com/sqlalchemy/alembic/commits)

Updates `pydantic` from 2.11.5 to 2.11.7
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.11.5...v2.11.7)

Updates `celery` from 5.5.2 to 5.5.3
- [Release notes](https://github.com/celery/celery/releases)
- [Changelog](https://github.com/celery/celery/blob/main/Changelog.rst)
- [Commits](celery/celery@v5.5.2...v5.5.3)

Updates `boto3` from 1.38.23 to 1.40.3
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.38.23...1.40.3)

Updates `awswrangler` from 3.11.0 to 3.12.1
- [Release notes](https://github.com/aws/aws-sdk-pandas/releases)
- [Commits](aws/aws-sdk-pandas@3.11.0...3.12.1)

Updates `sigstore` from 3.6.2 to 3.6.4
- [Release notes](https://github.com/sigstore/sigstore-python/releases)
- [Changelog](https://github.com/sigstore/sigstore-python/blob/main/CHANGELOG.md)
- [Commits](sigstore/sigstore-python@v3.6.2...v3.6.4)

Updates `awscli-local` from 0.22.0 to 0.22.1
- [Commits](https://github.com/localstack/awscli-local/commits)

Updates `tox` from 4.26.0 to 4.28.4
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
- [Commits](tox-dev/tox@4.26.0...4.28.4)

Updates `flake8` from 7.2.0 to 7.3.0
- [Commits](PyCQA/flake8@7.2.0...7.3.0)

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

Updates `mypy` from 1.15.0 to 1.17.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.15.0...v1.17.1)

Updates `pytest` from 8.3.5 to 8.4.1
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.5...8.4.1)

Updates `pytest-cov` from 6.1.1 to 6.2.1
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v6.1.1...v6.2.1)

Updates `pytest-xdist` from 3.6.1 to 3.8.0
- [Release notes](https://github.com/pytest-dev/pytest-xdist/releases)
- [Changelog](https://github.com/pytest-dev/pytest-xdist/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-xdist@v3.6.1...v3.8.0)

Updates `virtualenv` from 20.31.2 to 20.33.1
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@20.31.2...20.33.1)

Updates `bandit` from 1.8.3 to 1.8.6
- [Release notes](https://github.com/PyCQA/bandit/releases)
- [Commits](PyCQA/bandit@1.8.3...1.8.6)

---
updated-dependencies:
- dependency-name: redis
  dependency-version: 6.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: sqlalchemy
  dependency-version: 2.0.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: alembic
  dependency-version: 1.16.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: pydantic
  dependency-version: 2.11.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: celery
  dependency-version: 5.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: boto3
  dependency-version: 1.40.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: awswrangler
  dependency-version: 3.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: sigstore
  dependency-version: 3.6.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: awscli-local
  dependency-version: 0.22.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: tox
  dependency-version: 4.28.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: flake8
  dependency-version: 7.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: coverage
  dependency-version: 7.10.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: mypy
  dependency-version: 1.17.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: pytest
  dependency-version: 8.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: pytest-cov
  dependency-version: 6.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: pytest-xdist
  dependency-version: 3.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: virtualenv
  dependency-version: 20.33.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: bandit
  dependency-version: 1.8.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-deps
...

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 Aug 6, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 11, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Aug 11, 2025
@dependabot dependabot bot deleted the dependabot/pip/python-deps-838a23344b branch August 11, 2025 11:18
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