Skip to content

chore(deps-dev)(deps-dev): bump the python-dev group across 1 directory with 10 updates#72

Merged
allenfbyrd merged 1 commit into
mainfrom
dependabot/uv/python-dev-78d9d78ad1
Jun 10, 2026
Merged

chore(deps-dev)(deps-dev): bump the python-dev group across 1 directory with 10 updates#72
allenfbyrd merged 1 commit into
mainfrom
dependabot/uv/python-dev-78d9d78ad1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on pytest-asyncio, ruff, boto3, moto[all], google-cloud-storage, mcp, hypothesis, mutmut, schemathesis and mkdocstrings[python] to permit the latest version.
Updates pytest-asyncio from 1.3.0 to 1.4.0

Release notes

Sourced from pytest-asyncio's releases.

pytest-asyncio v1.4.0

1.4.0 - 2026-05-26

Deprecated

  • Overriding the event_loop_policy fixture is deprecated. Use the pytest_asyncio_loop_factories hook instead. (#1419)

Added

  • Added the pytest_asyncio_loop_factories hook to parametrize asyncio tests with custom event loop factories.

    The hook returns a mapping of factory names to loop factories, and pytest.mark.asyncio(loop_factories=[...]) selects a subset of configured factories per test. When a single factory is configured, test names are unchanged.

    Synchronous @pytest_asyncio.fixture functions now see the correct event loop when custom loop factories are configured, even when test code disrupts the current event loop (e.g., via asyncio.run() or asyncio.set_event_loop(None)). (#1164)

Changed

  • Improved the readability of the warning message that is displayed when asyncio_default_fixture_loop_scope is unset (#1298)
  • Only import asyncio.AbstractEventLoopPolicy for type checking to avoid raising a DeprecationWarning. (#1394)
  • Updated minimum supported pytest version to v8.4.0. (#1397)

Fixed

  • Fixed a ResourceWarning: unclosed event loop warning that could occur when a synchronous test called asyncio.run() or otherwise unset the current event loop after pytest-asyncio had run an async test or fixture. (#724)

Notes for Downstream Packagers

  • Added dependency on sphinx-tabs >= 3.5 to organize documentation examples into tabs. (#1395)

pytest-asyncio v1.4.0a2

1.4.0a2 - 2026-05-02

Deprecated

  • Overriding the event_loop_policy fixture is deprecated. Use the pytest_asyncio_loop_factories hook instead. (#1419)

Added

  • Added the pytest_asyncio_loop_factories hook to parametrize asyncio tests with custom event loop factories.

    The hook returns a mapping of factory names to loop factories, and pytest.mark.asyncio(loop_factories=[...]) selects a subset of configured factories per test. When a single factory is configured, test names are unchanged on pytest 8.4+.

    Synchronous @pytest_asyncio.fixture functions now see the correct event loop when custom loop factories are configured, even when test code disrupts the current event loop (e.g., via asyncio.run() or asyncio.set_event_loop(None)). (#1164)

Changed

  • Improved the readability of the warning message that is displayed when asyncio_default_fixture_loop_scope is unset (#1298)
  • Only import asyncio.AbstractEventLoopPolicy for type checking to avoid raising a DeprecationWarning. (#1394)

... (truncated)

Commits
  • 6e14cd2 chore: Prepare release of v1.4.0.
  • 4b900fb Build(deps): Bump codecov/codecov-action from 6.0.0 to 6.0.1
  • ab9f632 Build(deps): Bump zipp from 3.23.1 to 4.1.0
  • a56fc77 Build(deps): Bump hypothesis from 6.152.6 to 6.152.8
  • e8bae9b Build(deps): Bump requests from 2.34.0 to 2.34.2
  • fc43340 Build(deps): Bump idna from 3.14 to 3.15
  • 762eaf5 Build(deps): Bump jaraco-functools from 4.4.0 to 4.5.0
  • b62e222 Build(deps): Bump click from 8.3.3 to 8.4.0
  • 9190447 Build(deps): Bump pydantic from 2.13.3 to 2.13.4
  • 82a393c ci: Remove unnecessary debug output.
  • Additional commits viewable in compare view

Updates ruff from 0.15.13 to 0.15.16

Release notes

Sourced from ruff's releases.

0.15.16

Release Notes

Released on 2026-06-04.

Preview features

  • [flake8-async] Implement yield-in-context-manager-in-async-generator (ASYNC119) (#24644)
  • [pylint] Narrow diagnostic range and exclude cases without exception handlers (PLW0717) (#25440)
  • [ruff] Treat yield before break from a terminal loop as terminal (RUF075) (#25447)

Bug fixes

  • [eradicate] Avoid flagging ruff:ignore comments as code (ERA001) (#25537)
  • [eradicate] Fix ERA001/RUF100 conflict when noqa is on commented-out code (#25414)
  • [pyflakes] Avoid removing the format call when it would change behavior (F523) (#25320)
  • [pylint] Avoid syntax errors in invalid character replacements in f-strings before Python 3.12 (PLE2510, PLE2512, PLE2513, PLE2514, PLE2515) (#25544)
  • [pyupgrade] Avoid converting format calls with more kinds of side effects (UP032) (#25484)

Rule changes

  • [flake8-pytest-style] Avoid fixes for ambiguous argnames and argvalues combinations (PT006) (#24776)

Performance

  • Drop excess capacity from statement suites during parsing (#25368)

Documentation

  • [pydocstyle] Improve discoverability of rules enabled for each convention (#24973)
  • [ruff] Restore example code for Python versions before 3.15 (RUF017) (#25439)
  • Fix typo bin/activebin/activate in tutorial (#25473)

Other changes

  • Shrink additional parser AST collections (#25465)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.15.16

Released on 2026-06-04.

Preview features

  • [flake8-async] Implement yield-in-context-manager-in-async-generator (ASYNC119) (#24644)
  • [pylint] Narrow diagnostic range and exclude cases without exception handlers (PLW0717) (#25440)
  • [ruff] Treat yield before break from a terminal loop as terminal (RUF075) (#25447)

Bug fixes

  • [eradicate] Avoid flagging ruff:ignore comments as code (ERA001) (#25537)
  • [eradicate] Fix ERA001/RUF100 conflict when noqa is on commented-out code (#25414)
  • [pyflakes] Avoid removing the format call when it would change behavior (F523) (#25320)
  • [pylint] Avoid syntax errors in invalid character replacements in f-strings before Python 3.12 (PLE2510, PLE2512, PLE2513, PLE2514, PLE2515) (#25544)
  • [pyupgrade] Avoid converting format calls with more kinds of side effects (UP032) (#25484)

Rule changes

  • [flake8-pytest-style] Avoid fixes for ambiguous argnames and argvalues combinations (PT006) (#24776)

Performance

  • Drop excess capacity from statement suites during parsing (#25368)

Documentation

  • [pydocstyle] Improve discoverability of rules enabled for each convention (#24973)
  • [ruff] Restore example code for Python versions before 3.15 (RUF017) (#25439)
  • Fix typo bin/activebin/activate in tutorial (#25473)

Other changes

  • Shrink additional parser AST collections (#25465)

Contributors

0.15.15

... (truncated)

Commits

Updates boto3 from 1.43.12 to 1.43.24

Commits
  • b2b302b Merge branch 'release-1.43.24'
  • 02fd3ca Bumping version to 1.43.24
  • fcaf9ff Add changelog entries from botocore
  • f2106e0 Merge branch 'release-1.43.23'
  • 5f98326 Merge branch 'release-1.43.23' into develop
  • d7e5b7c Bumping version to 1.43.23
  • 86efe86 Add changelog entries from botocore
  • 8384440 Merge branch 'release-1.43.22'
  • eea01a7 Merge branch 'release-1.43.22' into develop
  • eff8ee7 Bumping version to 1.43.22
  • Additional commits viewable in compare view

Updates moto[all] to 5.2.2

Changelog

Sourced from moto[all]'s changelog.

5.2.2

Docker Digest for 5.2.2: sha256:d8ae5edc2bf080e7e4c13f9bd4b29b53ac3b4427e92956318db3dbe23ec43eb7

New Methods:
    * DS:
        * disable_radius()
        * enable_radius()
* KinesisAnalyticsV2:
    * untag_resource()
  • Logs:

    • start_live_tail()
  • SESv2:

    • update_contact()
    • update_contact_list()
  • SWF:

    • tag_resource()
    • untag_resource()

Miscellaneous: * ACM: import_certificate() now accepts certificates without a CN * ACM: request_certificate() now preserves the default options when not all are provided * CloudFormation: Created Lambda resources now take the use_docker-configuration into account * CloudFormation: update_stack_instances() now validates that a StackInstance exists * Events: create_partner_event_source() now returns the EventSourceArn-attribute * Route53: list_resource_record_sets() no longer returns a TTL for aliases * S3: completed_multipart_upload() is now compatible with external tools like PyArrow * S3: get_object() now supports all Response* headers

5.2.1

Docker Digest for 5.2.1: sha256:fe6575dcd878842124f05d20e4ffde2d1126e1e38ad03e196353b9e53649bcdf

Miscellaneous:
    * DynamoDB: batch_write_item() now correctly handles PUT requests with Binary (B) attributes (broken in 5.2.0)
    * S3: Uploading files no longer fails with 'Unsupported protocol' (broken in 5.2.0)
    * S3: create_multipart_upload() is now compatible with Java SDK again (broken in 5.2.0)
    * Route53: update_health_check() now correctly updates falsy values (broken in 5.2.0)

5.2.0

Docker Digest for 5.2.0: sha256:d8d063e3e704d256cbe8165072fa273c17698be91311e49fc602b7716f459bea

General:

... (truncated)

Commits

Updates google-cloud-storage from 3.10.1 to 3.11.0

Release notes

Sourced from google-cloud-storage's releases.

google-cloud-storage: v3.11.0

v3.11.0 (2026-06-02)

Features

  • Added a new field ComposeObjectRequest.delete_source_objects field (PiperOrigin-RevId: 863087065) (1230e174)

  • add object contexts in Python GCS SDK (#17039) (15ec8bd7)

  • Add delete_source_objects optional parameter to compose API (#17163) (16ab4c26)

  • add fixed-key metadata support in AAOW (#16817) (28487f5c)

  • Add support for blob object in AAOW (#16577) (32718318)

  • implement AsyncMultiRangeDownloader with multiplexed bidi-gRPC stream support (#16528) (493df65b)

  • populate the persisted_data_checksums field with object checksums on write object / query write status responses (PiperOrigin-RevId: 895357062) (56ccbd86)

  • Enhance Otel Span Attributes with BucketId and Location details for every Bucket/Blob operation (a0da993d)

  • drop Python 3.7-3.9 support and regenerate (#17178) (c804a935)

Bug Fixes

  • updates typing for python 3.8 (87b7ba97)

  • propagate quota_project_id and api_endpoint in AsyncGrpcClient (#16731) (b8b457aa)

Performance Improvements

  • add multiplexing performance tests for AsyncMultiRangeDownloader (#16501) (20969910)

  • implement fast-path for queue delivery in _StreamMultiplexer (#16718) (7073be16)

  • use google_crc32c.value for checksums (#16719) (c6461a42)

  • use google_crc32c.value() for simpler crc32c calculation (#16761) (c9846c92)

Documentation

  • Updated documentation for BidiReadObject, ReadObjectRequest, and ObjectContexts (PiperOrigin-RevId: 863087065) (1230e174)

  • improve wording around object_checksums in bidi write object requests (PiperOrigin-RevId: 895357062) (56ccbd86)

Changelog

Sourced from google-cloud-storage's changelog.

3.11.0 (2026-03-05)

Features

3.10.0 (2026-02-12)

Documentation

Features

Bug Fixes

  • Removed the SpannerIndexingConfig message and the spanner_indexing_config field from .google.cloud.documentai.v1beta3.Dataset BREAKING CHANGE: The SpannerIndexingConfig message and the spanner_indexing_config field within the Dataset message have been removed. Client code referencing these will need to stop referencing these in case of an error (5371e8e931dfba1d504ac2ffbd48a7f4abdcc158)

3.9.0 (2026-01-29)

Documentation

3.8.0 (2026-01-08)

Features

3.7.0 (2025-10-16)

Documentation

... (truncated)

Commits
  • 5accbb4 chore: librarian release pull request: 20260602T021047Z (#17336)
  • 86e57cb fix(spanner_dbapi): replace insecure pickle with json for partition deseriali...
  • 6b62cb6 feat(bigframes): Add ai_generate functions to the dataframe bq accessor (#17302)
  • 54fd04b chore: librarian release pull request: 20260529T145921Z (#17312)
  • c04f892 chore: update googleapis and regenerate (#17313)
  • 1c2e24f chore: generate google-cloud-monitoring-dashboards (#17309)
  • 06965d8 chore: generate google-cloud-containeranalysis (#17308)
  • 2024224 chore: generate grafeas (#17307)
  • 9f2ed92 chore(spanner): deprecate experimental host option/parameter to replace with ...
  • 7813ca4 chore: add missing nox sessions and polish dependencies in sqlalchemy-spanner...
  • Additional commits viewable in compare view

Updates mcp from 1.27.1 to 1.27.2

Release notes

Sourced from mcp's releases.

v1.27.2

What's Changed

Full Changelog: modelcontextprotocol/python-sdk@v1.27.1...v1.27.2

Commits
  • 6213787 [v1.x] Scope experimental tasks to the session that created them (#2720)
  • ce267b6 [v1.x] Bind transport sessions to the authenticated principal (#2719)
  • 1abcca2 [v1.x] Add subject and claims to AccessToken (#2690)
  • 9773a3f [v1.x] ci: deploy docs to py.sdk.modelcontextprotocol.io via Pages artifact (...
  • See full diff in compare view

Updates hypothesis from 6.152.9 to 6.155.2

Commits
  • fcc26c4 Bump hypothesis version to 6.155.2 and update changelog
  • 13cdd0b Merge pull request #4760 from Zac-HD/datetime-symbolic-4759
  • e48846d format
  • b4152ea rewrite comments and improve test
  • 6b18db3 fixed flake
  • eb7d53a Update pinned dependencies
  • 1bbeb59 Fix update_pyodide_versions for relocated xbuildenv metadata
  • 552a461 Make date/time drawing symbolic-execution friendly
  • 2c6dfdb Merge pull request #4758 from bsluther/docs-fix-assume-condition
  • 1416fe1 Fix assume condition in adapting-strategies.rst
  • Additional commits viewable in compare view

Updates mutmut from 3.5.0 to 3.6.0

Changelog

Sourced from mutmut's changelog.

3.6.0


* Add `# pragma: no mutate block` and `# pragma: no mutate start/end` comments
  • Add do_not_mutate_patterns to disable mutations with a regex

  • Add only_mutate config to select which files get mutated

  • Also mutate methods decorated with (only) @staticmethod or @classmethod

  • Add use_setproctitle option to disable process renaming (automatically disabled on MacOS)

  • Add (unstable) timeout_multiplier and timeout_constant options

  • Rename paths_to_mutate to source_paths

  • Deprecate tests_dir in favor of pytest_add_cli_args_test_selection

  • Change max_stack_depth to only consider functions inside source_paths

  • Disable mutation of enums and @staticmethod/@classmethod methods when type_check_command is set, as these mutations break type checking

  • Fix mutation for enum class methods

  • Fix mutate_only_covered_lines when project uses custom coverage.py config

  • Fix execution when running mutmut via python -m mutmut run

  • Fix mutation of class _SomePrivateClass class methods

  • Fix mutation of default args

  • Fix mutmut browse crash when no file is selected yet

  • Fix timeout checker looking up the wrong mutant's expected test time, which could cause mutants to hang

  • Compare stats paths after resolving symlinks

  • Warn when mutmut cannot match mutants with the collected stats

Commits

Updates schemathesis from 4.19.0 to 4.21.1

Release notes

Sourced from schemathesis's releases.

Release 4.21.1

🐛 Fixed

  • Missing boundary negative in the coverage phase for boolean exclusiveMinimum / exclusiveMaximum.
  • UnicodeEncodeError when failure or error output contains lone Unicode surrogate characters. #4229

Release 4.21.0

🚀 Added

  • Chain GraphQL operations on non-id identifiers (fullPath, slug, ...) in stateful and fuzzing phases.

🏎️ Performance

  • Much lower peak memory and faster validation for schemas with very large maxLength / maxItems.
  • Cache failed validator builds to avoid recompiling invalid patterns from large maxLength / maxItems values.
  • Update hypothesis-graphql to 0.13.0 that brings up to 180x performance improvements for deeply nested GraphQL schemas.
  • Update harfile to 0.5.0 for slightly better performance.
  • Lower memory usage in long stateful runs.
  • Faster, lower-memory stateful state machine construction for large schemas.

🐛 Fixed

  • Excessive re-runs in stateful testing against APIs with mutable state.
  • Stateful testing restarting on a single transient transport failure (e.g. dropped connection).
  • Semantic value substitution overwriting const / enum fields with invalid data.

🔧 Changed

  • Mine additionalProperties: false from Pydantic extra_forbidden errors and the exception_detail validation envelope.

Release 4.20.3

🏎️ Performance

  • Skip coverage generation for header and cookie parameters whose pattern requires a non-alphanumeric character.
  • Faster operation ordering and case traversal in stateful testing for schemas with many operations.

🐛 Fixed

  • Fuzzing phase marked as failed without any reported failure. #4209
  • Generate maximum-length boundary cases for unanchored multi-part patterns with maxLength.
  • Display the actual response time in milliseconds in max_response_time failures.

Release 4.20.2

🔧 Changed

  • Re-raise original server exceptions in WSGI apps for distinct error deduplication. #1289

... (truncated)

Changelog

Sourced from schemathesis's changelog.

4.21.1 - 2026-06-06

🐛 Fixed

  • Missing boundary negative in the coverage phase for boolean exclusiveMinimum / exclusiveMaximum.
  • UnicodeEncodeError when failure or error output contains lone Unicode surrogate characters. #4229

4.21.0 - 2026-06-01

🚀 Added

  • Chain GraphQL operations on non-id identifiers (fullPath, slug, ...) in stateful and fuzzing phases.

🏎️ Performance

  • Much lower peak memory and faster validation for schemas with very large maxLength / maxItems.
  • Cache failed validator builds to avoid recompiling invalid patterns from large maxLength / maxItems values.
  • Update hypothesis-graphql to 0.13.0 that brings up to 180x performance improvements for deeply nested GraphQL schemas.
  • Update harfile to 0.5.0 for slightly better performance.
  • Lower memory usage in long stateful runs.
  • Faster, lower-memory stateful state machine construction for large schemas.

🐛 Fixed

  • Excessive re-runs in stateful testing against APIs with mutable state.
  • Stateful testing restarting on a single transient transport failure (e.g. dropped connection).
  • Semantic value substitution overwriting const / enum fields with invalid data.

🔧 Changed

  • Mine additionalProperties: false from Pydantic extra_forbidden errors and the exception_detail validation envelope.

4.20.3 - 2026-05-29

🏎️ Performance

  • Skip coverage generation for header and cookie parameters whose pattern requires a non-alphanumeric character.
  • Faster operation ordering and case traversal in stateful testing for schemas with many operations.

🐛 Fixed

  • Fuzzing phase marked as failed without any reported failure. #4209
  • Generate maximum-length boundary cases for unanchored multi-part patterns with maxLength.
  • Display the actual response time in milliseconds in max_response_time failures.

4.20.2 - 2026-05-28

🔧 Changed

  • Re-raise original server exceptions in WSGI apps for distinct error deduplication. #1289

... (truncated)

Commits
  • 9dec055 chore: Release 4.21.1
  • b22d897 docs: Add Huma trophy case
  • 861fe89 fix: UnicodeEncodeError when failure or error output contains lone Unicode ...
  • a10f383 build(deps): bump github/codeql-action from 4.36.0 to 4.36.2
  • e95f4a4 refactor: Flatten allOf structurally for dependency inference
  • b78e48d refactor: Flatten allOf structurally for dependency inference
  • e7f8ec0 fix: Missing boundary negative in the coverage phase for boolean `exclusiveMi...
  • f3e329d chore: Release 4.21.0
  • 17372a3 perf: Much lower peak memory and faster validation for schemas with very larg...
  • 3761741 perf: Cache failed validator builds to avoid recompiling invalid patterns fro...
  • Additional commits viewable in compare view

Updates mkdocstrings[python] to 1.0.4

Release notes

Sourced from mkdocstrings[python]'s releases.

1.0.4

1.0.4 - 2026-04-15

Compare with 1.0.3

Bug Fixes

  • Add timeout when downloading inventories (10 seconds) (3d1969a by Simon Lloyd). Issue-819
Changelog

Sourced from mkdocstrings[python]'s changelog.

1.0.4 - 2026-04-15

Compare with 1.0.3

Bug Fixes

  • Add timeout when downloading inventories (10 seconds) (3d1969a by Simon Lloyd). Issue-819

1.0.3 - 2026-02-07

Compare with 1.0.2

Bug Fixes

  • Forward extension instances directly passed from Zensical (65b27ec by Timothée Mazzucotelli).
  • Propagate Zensical's zrelpath processor (dbf263d by Timothée Mazzucotelli).

1.0.2 - 2026-01-24

Compare with 1.0.1

Code Refactoring

  • Use global instances for handlers and autorefs (9f79141 by Timothée Mazzucotelli).

1.0.1 - 2026-01-19

Compare with 1.0.0

Code Refactoring

  • Support manual cross-references in Zensical too (d37d907 by Timothée Mazzucotelli).
  • Support cross-references in Zensical (f43f1ee by Timothée Mazzucotelli). PR-812

1.0.0 - 2025-11-27

Compare with 0.30.1

Breaking Changes

  • BaseHandler.name: Attribute value was changed: '' -> unset
  • BaseHandler.domain: Attribute value was changed: '' -> unset
  • BaseHandler.fallback_config: Public object was removed
  • BaseHandler.__init__(args): Parameter was removed
  • BaseHandler.__init__(kwargs): Parameter was removed
  • BaseHandler.__init__(theme): Parameter was added as required
  • BaseHandler.__init__(custom_templates): Parameter was added as required
  • BaseHandler.__init__(mdx): Parameter was added as required
  • BaseHandler.__init__(mdx_config): Parameter was added as required
  • BaseHandler.update_env(args): Parameter was removed

... (truncated)

Commits
  • a938528 chore: Prepare release 1.0.4
  • 1eaa224 ci: Lint and type-check
  • 80e090d Merge branch 'main' of github.com:mkdocstrings/mkdocstrings
  • 5f82a58 chore: Template upgrade
  • 3d1969a fix: Add timeout when downloading inventories (10 seconds)
  • a0c47b9 docs: Fix broken link in README
  • e500a2b chore: Update sponsors section in README
  • 8bdff16 chore: Prepare release 1.0.3
  • 65b27ec fix: Forward extension instances directly passed from Zensical
  • 1624e2c ci: Update lint/type-checking
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ry with 10 updates

Updates the requirements on [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio), [ruff](https://github.com/astral-sh/ruff), [boto3](https://github.com/boto/boto3), [moto[all]](https://github.com/getmoto/moto), [google-cloud-storage](https://github.com/googleapis/google-cloud-python), [mcp](https://github.com/modelcontextprotocol/python-sdk), [hypothesis](https://github.com/HypothesisWorks/hypothesis), [mutmut](https://github.com/boxed/mutmut), [schemathesis](https://github.com/schemathesis/schemathesis) and [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings) to permit the latest version.

Updates `pytest-asyncio` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v1.3.0...v1.4.0)

Updates `ruff` from 0.15.13 to 0.15.16
- [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.13...0.15.16)

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

Updates `moto[all]` to 5.2.2
- [Release notes](https://github.com/getmoto/moto/releases)
- [Changelog](https://github.com/getmoto/moto/blob/master/CHANGELOG.md)
- [Commits](getmoto/moto@5.2.1...5.2.2)

Updates `google-cloud-storage` from 3.10.1 to 3.11.0
- [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.10.1...google-cloud-storage-v3.11.0)

Updates `mcp` from 1.27.1 to 1.27.2
- [Release notes](https://github.com/modelcontextprotocol/python-sdk/releases)
- [Changelog](https://github.com/modelcontextprotocol/python-sdk/blob/main/RELEASE.md)
- [Commits](modelcontextprotocol/python-sdk@v1.27.1...v1.27.2)

Updates `hypothesis` from 6.152.9 to 6.155.2
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.152.9...v6.155.2)

Updates `mutmut` from 3.5.0 to 3.6.0
- [Changelog](https://github.com/boxed/mutmut/blob/main/HISTORY.rst)
- [Commits](https://github.com/boxed/mutmut/commits)

Updates `schemathesis` from 4.19.0 to 4.21.1
- [Release notes](https://github.com/schemathesis/schemathesis/releases)
- [Changelog](https://github.com/schemathesis/schemathesis/blob/master/CHANGELOG.md)
- [Commits](schemathesis/schemathesis@v4.19.0...v4.21.1)

Updates `mkdocstrings[python]` to 1.0.4
- [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases)
- [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/mkdocstrings@0.27.0...1.0.4)

---
updated-dependencies:
- dependency-name: pytest-asyncio
  dependency-version: 1.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dev
- dependency-name: ruff
  dependency-version: 0.15.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dev
- dependency-name: boto3
  dependency-version: 1.43.24
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dev
- dependency-name: moto[all]
  dependency-version: 5.2.2
  dependency-type: direct:development
  dependency-group: python-dev
- dependency-name: google-cloud-storage
  dependency-version: 3.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dev
- dependency-name: mcp
  dependency-version: 1.27.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dev
- dependency-name: hypothesis
  dependency-version: 6.155.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dev
- dependency-name: mutmut
  dependency-version: 3.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dev
- dependency-name: schemathesis
  dependency-version: 4.21.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dev
- dependency-name: mkdocstrings[python]
  dependency-version: 1.0.4
  dependency-type: direct:development
  dependency-group: python-dev
...

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 Jun 8, 2026
@allenfbyrd allenfbyrd merged commit 68a0ba2 into main Jun 10, 2026
20 of 21 checks passed
@allenfbyrd allenfbyrd deleted the dependabot/uv/python-dev-78d9d78ad1 branch June 10, 2026 18:28
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