Skip to content

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

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-dev-f18a464e55
Open

chore(deps-dev)(deps-dev): bump the python-dev group across 1 directory with 7 updates#208
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-dev-f18a464e55

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Contributor

Bumps the python-dev group with 7 updates in the / directory:

Package From To
ruff 0.15.21 0.16.0
mypy 2.2.0 2.3.0
boto3 1.43.46 1.43.56
google-cloud-storage 3.12.1 3.13.0
hypothesis 6.156.6 6.161.6
schemathesis 4.22.4 4.24.3
mkdocs-material 9.7.6 9.7.7

Updates ruff from 0.15.21 to 0.16.0

Release notes

Sourced from ruff's releases.

0.16.0

Release Notes

Released on 2026-07-23.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now enables a much larger set of rules by default (413, up from 59). See the blog post for more details and the new Default Rules page for a full listing of the enabled rules.

  • Ruff can now format Python code blocks in Markdown files and will do this by default. See the documentation for more details.

  • Ruff now supports ruff: ignore comments at the ends of lines, like noqa comments, or on the line preceding a diagnostic. For example, these both suppress an unused-import (F401) diagnostic:

    import math  # ruff: ignore[F401]
    ruff: ignore[F401]
    import os

  • Fixes are now shown in check and format --check output:

    ruff format --check .
    unformatted: File would be reformatted
     --> try.md:1:1
      |
    1 | ```python
      - import   math
    2 + import math
    3 | ```
      |
    1 file would be reformatted

    This example also shows off the Markdown formatting.

  • format --check now supports the same output formats as the linter, including the github and gitlab outputs for rendering annotations in CI:

    ruff format --check --output-format github .
    ::error title=ruff (unformatted),file=try.md,line=2,col=8,endLine=2,endColumn=10::try.md:2:8: unformatted: File would be reformatted

    See the CLI help or documentation for the full list of supported formats.

  • The filename, location, end_location, fix.edits[].location, and fix.edits[].end_location fields in the JSON output format may now be null rather than defaulting to the empty string and row 1, column 1, respectively.

... (truncated)

Changelog

Sourced from ruff's changelog.

0.16.0

Released on 2026-07-23.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now enables a much larger set of rules by default (413, up from 59). See the blog post for more details and the new Default Rules page for a full listing of the enabled rules.

  • Ruff can now format Python code blocks in Markdown files and will do this by default. See the documentation for more details.

  • Ruff now supports ruff: ignore comments at the ends of lines, like noqa comments, or on the line preceding a diagnostic. For example, these both suppress an unused-import (F401) diagnostic:

    import math  # ruff: ignore[F401]
    ruff: ignore[F401]
    import os

  • Fixes are now shown in check and format --check output:

    ruff format --check .
    unformatted: File would be reformatted
     --> try.md:1:1
      |
    1 | ```python
      - import   math
    2 + import math
    3 | ```
      |
    1 file would be reformatted

    This example also shows off the Markdown formatting.

  • format --check now supports the same output formats as the linter, including the github and gitlab outputs for rendering annotations in CI:

    ruff format --check --output-format github .
    ::error title=ruff (unformatted),file=try.md,line=2,col=8,endLine=2,endColumn=10::try.md:2:8: unformatted: File would be reformatted

... (truncated)

Commits
  • a2635fd Bump 0.16.0 (#27136)
  • 3433449 [ty] Reuse full call diagnostics for implicit setter calls (#27115)
  • 2240070 Reflect ruff: ignore and --add-ignore stabilization in documentation (#27...
  • 17ef711 Stabilize --add-ignore (#27125)
  • ef912bb Add newly stabilized rules to defaults (#27055)
  • b30f040 Stabilize new default rules (#27035)
  • bcd70c5 Exclude Markdown files from format-dev runs (#27052)
  • 87e51e2 Fix format --check spans for syntax errors (#27045)
  • afe2723 [flake8-gettext] Stabilize qualified-name and built-in binding resolution (...
  • a9702d8 [flake8-bandit] Stabilize string literal binding resolution (S310) (#26944)
  • Additional commits viewable in compare view

Updates mypy from 2.2.0 to 2.3.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Packaging changes

Mypy 2.3

We've just uploaded mypy 2.3.0 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements 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.

The Upcoming Switch to the New Native Parser

We are planning to enable the new native parser (--native-parser) by default soon. We recommend that you test the native parser in your projects and report any issues in the mypy issue tracker.

Mypyc Free-threading Memory Safety

Free-threaded Python builds that don't have the GIL require additional synchronization primitives or lock-free algorithms to ensure memory safety when there are race conditions (for example, when a thread reads a list item while another thread writes the same list item concurrently). This release greatly improves memory safety of free threading.

List operations are now memory-safe on free threaded Python builds, even in the presence of race conditions. This has some performance cost. For list-heavy workloads, using librt.vecs.vec instead of list is often significantly faster, but note that vec is not (and likely won't be) fully memory safe, and the user is expected to avoid race conditions. The newly introduced librt.threading.Lock helps with this. Using variable-length tuples can also be more efficient than lists, since tuples are immutable and don't require expensive synchronization to ensure memory safety.

Instance attribute access is also (mostly) memory safe now on free-threaded builds in the presence of race conditions. We are planning to fix the remaining unsafe cases in a future release.

Full list of changes:

  • Make attribute access memory safe on free-threaded builds (Jukka Lehtosalo, PR 21705)
  • Fix unsafe borrowing of instance attributes with free-threading (Jukka Lehtosalo, PR 21688)
  • Make list get/set item more memory safe on free-threaded builds (Jukka Lehtosalo, PR 21683)
  • Don't borrow list items on free-threaded builds (Jukka Lehtosalo, PR 21679)
  • Make multiple assignment from list memory-safe on free-threaded builds (Jukka Lehtosalo, PR 21684)

... (truncated)

Commits
  • 8aabf84 Drop +dev from version
  • 4d8ad2a Update changelog for 2.3 release (#21728)
  • 2c21546 [mypyc] Update documentation of race conditions under free threading (#21726)
  • a9f62a3 [mypyc] Make attribute access memory safe on free-threaded builds (#21705)
  • 0faa413 Use PYODIDE environment variable for Emscripten cross-compilation detection...
  • 3d75cdb [mypyc] Borrow final attributes more aggressively (#21702)
  • 24c237d [mypyc] Improve documentation of Final (#21713)
  • b5be217 [mypyc] Update free threading Python compatibility docs (#21711)
  • cbcb51a Narrow for frozendict membership check (#21709)
  • af2bc0f Sync typeshed (#21707)
  • Additional commits viewable in compare view

Updates boto3 from 1.43.46 to 1.43.56

Commits
  • 72a153d Merge branch 'release-1.43.56'
  • b1b9ff3 Bumping version to 1.43.56
  • c7d2f6e Add changelog entries from botocore
  • 2a09bb6 Merge branch 'release-1.43.55'
  • cad396b Merge branch 'release-1.43.55' into develop
  • ffe76ba Bumping version to 1.43.55
  • 74d20c9 Add changelog entries from botocore
  • c073381 Merge branch 'release-1.43.54'
  • 5e554e5 Merge branch 'release-1.43.54' into develop
  • 2ad1683 Bumping version to 1.43.54
  • Additional commits viewable in compare view

Updates google-cloud-storage from 3.12.1 to 3.13.0

Release notes

Sourced from google-cloud-storage's releases.

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)
Changelog

Sourced from google-cloud-storage's changelog.

3.13.0 (2026-03-26)

Features

Bug Fixes

3.12.0 (2026-03-23)

Features

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)

... (truncated)

Commits
  • 7c18c24 chore: release main (#17646)
  • 8feb1b8 tests(bigquery): implement robust wait loop for socket leak tests (#17688)
  • e5f7fef fix: bump mistune from 3.2.1 to 3.3.0 in /packages/bigframes (#17694)
  • bd5d1a4 docs: add project ID to pandas-gbq run sample (#17692)
  • 635da34 fix: bump soupsieve from 2.7 to 2.8.4 in /packages/bigframes (#17695)
  • 4253fab feat(bigframes): support offset-based column access via iloc (#17367)
  • a5a717d feat(storage): add option to disable checksums and improve robustness of full...
  • fc423c8 docs: make landing page quickstart runnable (#17687)
  • cae94f9 feat(bigframes): Support groupby.agg/transform with udf transpiler (#17613)
  • 91f93bc fix(bigframes): Fix sqlglot backend regressions (#17655)
  • Additional commits viewable in compare view

Updates hypothesis from 6.156.6 to 6.161.6

Commits
  • d3155b0 Bump hypothesis version to 6.161.6 and update changelog
  • c58346f Merge pull request #4828 from Liam-DeVoe/worktree-fix-release-windows-shell
  • f0662ac use bash shell for release
  • d1afb4a Merge pull request #4824 from Zac-HD/claude/constant-valued-functions-c8t4j0
  • f2d611f Add tests for constant-lambda display: parameter defaults and output snapshots
  • 83aaed3 Show constant-valued generated functions as constant lambdas
  • 61cb14a Merge pull request #4820 from Liam-DeVoe/zizmor
  • bfecc27 Merge remote-tracking branch 'upstream/master' into plait/review-hypothesis-4820
  • 6c5ec2a Bump hypothesis version to 6.161.5 and update changelog
  • d92f4d2 Merge pull request #4821 from Zac-HD/claude/snapshots-ci-and-test-fixes-xzo6qq
  • Additional commits viewable in compare view

Updates schemathesis from 4.22.4 to 4.24.3

Release notes

Sourced from schemathesis's releases.

Release 4.24.3

🏎️ Performance

  • Faster strategy construction for string, integer, and anyOf schemas.

🔧 Changed

  • INTERNAL: Data generation for string, integer, and anyOf schemas built from the jsonschema-rs canonical form.

Release 4.24.2

🐛 Fixed

  • positive_data_acceptance hint counting properties declared under allOf/anyOf/oneOf as undocumented.
  • Fuzz dictionaries and body overrides not applied to fields behind $ref. #4350
  • config.*.update() ignoring invalid values and resetting flags it was not given.

Release 4.24.1

🐛 Fixed

  • Fuzz dictionaries not applied to body fields nested under oneOf/anyOf/allOf or if/then/else. #4347

🔧 Changed

  • INTERNAL: Canonicalization for enum, const, and bare type schemas moved to jsonschema-rs.

Release 4.24.0

🚀 Added

  • Dynamic token authentication support for OAuth2 and OpenID Connect security schemes.
  • Reactive auth refresh: refetch the token and replay a request on configured statuses (auth.dynamic.openapi.<scheme>.retry-on, @schemathesis.auth(retry_on=[401])).

🐛 Fixed

  • Report dynamic authentication token-fetch failures without duplicated text or an internal traceback.
  • Explain 401/403 responses from a dynamic authentication token endpoint as rejected credentials.
  • Crash dictionary changed size during iteration with multiple workers under free-threaded Python.
  • Crash on schemas embedding a JSON Schema resource that declares its own $schema dialect.
  • False positive positive_data_acceptance for required array query parameters generated as empty.
  • False positive negative_data_rejection for body schemas with additionalProperties: false. #4332
  • Generation error for request bodies with prefixItems in OpenAPI 3.1 schemas.
  • Crash Cannot sample from a length-zero sequence for array items with an empty enum.
  • False positive positive_data_acceptance for array items with enum entries violating the item schema.
  • Undercounted stateful link totals for schemas sharing a response definition across operations.
  • Operations with unresolvable $refs silently skipped when dependency ordering applies.
  • False missing_deserializer warning for media types whose own schema is unstructured.
  • Skip reasons in the summary borrowed from operations that were tested in another phase.

... (truncated)

Changelog

Sourced from schemathesis's changelog.

4.24.3 - 2026-07-26

🏎️ Performance

  • Faster strategy construction for string, integer, and anyOf schemas.

🔧 Changed

  • INTERNAL: Data generation for string, integer, and anyOf schemas built from the jsonschema-rs canonical form.

4.24.2 - 2026-07-22

🐛 Fixed

  • positive_data_acceptance hint counting properties declared under allOf/anyOf/oneOf as undocumented.
  • Fuzz dictionaries and body overrides not applied to fields behind $ref. #4350
  • config.*.update() ignoring invalid values and resetting flags it was not given.

4.24.1 - 2026-07-21

🐛 Fixed

  • Fuzz dictionaries not applied to body fields nested under oneOf/anyOf/allOf or if/then/else. #4347

🔧 Changed

  • INTERNAL: Canonicalization for enum, const, and bare type schemas moved to jsonschema-rs.

4.24.0 - 2026-07-19

🚀 Added

  • Dynamic token authentication support for OAuth2 and OpenID Connect security schemes.
  • Reactive auth refresh: refetch the token and replay a request on configured statuses (auth.dynamic.openapi.<scheme>.retry-on, @schemathesis.auth(retry_on=[401])).

🐛 Fixed

  • Report dynamic authentication token-fetch failures without duplicated text or an internal traceback.
  • Explain 401/403 responses from a dynamic authentication token endpoint as rejected credentials.
  • Crash dictionary changed size during iteration with multiple workers under free-threaded Python.
  • Crash on schemas embedding a JSON Schema resource that declares its own $schema dialect.
  • False positive positive_data_acceptance for required array query parameters generated as empty.
  • False positive negative_data_rejection for body schemas with additionalProperties: false. #4332
  • Generation error for request bodies with prefixItems in OpenAPI 3.1 schemas.
  • Crash Cannot sample from a length-zero sequence for array items with an empty enum.
  • False positive positive_data_acceptance for array items with enum entries violating the item schema.
  • Undercounted stateful link totals for schemas sharing a response definition across operations.
  • Operations with unresolvable $refs silently skipped when dependency ordering applies.
  • False missing_deserializer warning for media types whose own schema is unstructured.
  • Skip reasons in the summary borrowed from operations that were tested in another phase.

... (truncated)

Commits
  • 613ce31 chore: Release 4.24.3
  • 3fed283 chore: Update jsonschema-rs to 0.49.0
  • 9573cca build(deps): bump docker/login-action from 4.4.0 to 4.5.0
  • b2ec7f9 build(deps): bump github/codeql-action/init from 4.37.1 to 4.37.3
  • 7ceb392 build(deps): bump astral-sh/setup-uv from 8.3.2 to 9.0.0
  • 36172bc build(deps): bump pypa/gh-action-pypi-publish from 1.14.0 to 1.14.1
  • 7273f3e build(deps): bump github/codeql-action/analyze from 4.37.1 to 4.37.3
  • 2bcfb5c perf: Faster strategy construction for string, integer, and anyOf schemas
  • fa40f60 test: Strenghten tests checking for Hypothesis notes in stdout
  • 793da18 chore: Release 4.24.2
  • Additional commits viewable in compare view

Updates mkdocs-material from 9.7.6 to 9.7.7

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.7.7

[!WARNING]

Material for MkDocs is approaching end of life

Material for MkDocs is scheduled to reach end of life on November 5, 2026. Until then, maintenance is limited to critical bug fixes and security updates.

The path forward is Zensical, our next-generation static site generator built from first principles. If you’re planning a new documentation project or thinking about your long-term setup, we encourage you to start exploring Zensical.

Organizations requiring support beyond this date can get in touch to discuss options.

Read the full announcement on our blog

Changes

  • Fixed a DOM-based XSS vulnerability in search suggestions

Thanks to @​p- for responsibly reporting this issue.

Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.7.7 (2026-07-17)

  • Fixed DOM-based XSS vulnerability in search suggestions

mkdocs-material-9.7.6 (2026-03-19)

  • Automatically disable MkDocs 2.0 warning for forks of MkDocs

mkdocs-material-9.7.5 (2026-03-10)

  • Limited version range of mkdocs to <2
  • Updated MkDocs 2.0 incompatibility warning (clarify relation with MkDocs)

mkdocs-material-9.7.4 (2026-03-03)

  • Hardened social cards plugin by switching to sandboxed environment
  • Updated MkDocs 2.0 incompatibility warning

mkdocs-material-9.7.3 (2026-02-24)

  • Fixed #8567: Print MkDocs 2.0 incompatibility warning to stderr

mkdocs-material-9.7.2 (2026-02-18)

  • Opened up version ranges of optional dependencies for forward-compatibility
  • Added warning to 'mkdocs build' about impending MkDocs 2.0 incompatibility

mkdocs-material-9.7.1 (2025-12-18)

  • Updated requests to 2.30+ to mitigate CVE in urllib
  • Fixed privacy plugin not picking up protocol-relative URLs
  • Fixed #8542: false positives and negatives captured in privacy plugin

mkdocs-material-9.7.0 (2025-11-11)

⚠️ Material for MkDocs is now in maintenance mode

This is the last release of Material for MkDocs that will receive new features. Going forward, the Material for MkDocs team focuses on Zensical, a next-gen static site generator built from first principles. We will provide critical bug fixes and security updates for Material for MkDocs for 12 months at least.

Read the full announcement on our blog: https://squidfunk.github.io/mkdocs-material/blog/2025/11/05/zensical/

This release includes all features that were previously exclusive to the Insiders edition. These features are now freely available to everyone.

Note on deprecated plugins: The projects and typeset plugins are included in this release, but must be considered deprecated. Both plugins proved

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jul 20, 2026
@vercel

vercel Bot commented Jul 20, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
evidentia Ready Ready Preview, Comment Jul 27, 2026 10:16am

Request Review

@codspeed-hq

codspeed-hq Bot commented Jul 20, 2026

Copy link
Copy Markdown

Merging this PR will not alter performance

✅ 6 untouched benchmarks


Comparing dependabot/uv/python-dev-f18a464e55 (afac847) with main (44dbb7f)

Open in CodSpeed

…ry with 7 updates

Bumps the python-dev group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [ruff](https://github.com/astral-sh/ruff) | `0.15.21` | `0.16.0` |
| [mypy](https://github.com/python/mypy) | `2.2.0` | `2.3.0` |
| [boto3](https://github.com/boto/boto3) | `1.43.46` | `1.43.56` |
| [google-cloud-storage](https://github.com/googleapis/google-cloud-python) | `3.12.1` | `3.13.0` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.156.6` | `6.161.6` |
| [schemathesis](https://github.com/schemathesis/schemathesis) | `4.22.4` | `4.24.3` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.7.6` | `9.7.7` |



Updates `ruff` from 0.15.21 to 0.16.0
- [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.21...0.16.0)

Updates `mypy` from 2.2.0 to 2.3.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v2.2.0...v2.3.0)

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

Updates `google-cloud-storage` from 3.12.1 to 3.13.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.12.1...google-cloud-storage-v3.13.0)

Updates `hypothesis` from 6.156.6 to 6.161.6
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@v6.156.6...v6.161.6)

Updates `schemathesis` from 4.22.4 to 4.24.3
- [Release notes](https://github.com/schemathesis/schemathesis/releases)
- [Changelog](https://github.com/schemathesis/schemathesis/blob/master/CHANGELOG.md)
- [Commits](schemathesis/schemathesis@v4.22.4...v4.24.3)

Updates `mkdocs-material` from 9.7.6 to 9.7.7
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.7.6...9.7.7)

---
updated-dependencies:
- dependency-name: boto3
  dependency-version: 1.43.51
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dev
- dependency-name: google-cloud-storage
  dependency-version: 3.13.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dev
- dependency-name: hypothesis
  dependency-version: 6.157.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dev
- dependency-name: mkdocs-material
  dependency-version: 9.7.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dev
- dependency-name: mypy
  dependency-version: 2.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dev
- dependency-name: ruff
  dependency-version: 0.15.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dev
- dependency-name: schemathesis
  dependency-version: 4.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dev
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps-dev)(deps-dev): bump the python-dev group with 7 updates chore(deps-dev)(deps-dev): bump the python-dev group across 1 directory with 7 updates Jul 27, 2026
@dependabot
dependabot Bot force-pushed the dependabot/uv/python-dev-f18a464e55 branch from bc6356a to afac847 Compare July 27, 2026 10:16
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.

0 participants