Skip to content

build(deps): Bump the python-deps group across 1 directory with 8 updates - #18

Merged
rokbenko merged 1 commit into
mainfrom
dependabot/uv/python-deps-b89cf9c411
Sep 14, 2026
Merged

rokbenko merged 1 commit into
mainfrom
dependabot/uv/python-deps-b89cf9c411

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Contributor

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

Package From To
mcp 2.1.1 2.2.0
anthropic 1.4.0 1.5.0
openai 3.8.0 3.13.0
google-genai 2.22.0 2.23.0
mujoco 3.12.0 3.13.0
onnxruntime 1.27.0 1.30.0
ruff 0.16.6 0.16.7
types-pyyaml 6.0.12.20260815 6.0.12.20260906

Updates mcp from 2.1.1 to 2.2.0

Release notes

Sourced from mcp's releases.

v2.2.0

pip install -U mcp. Docs: https://py.sdk.modelcontextprotocol.io/

A few defaults changed in this release. If you run a server or client on 2.x, skim these first:

Behaviour changes

HTTP client redirects are only followed within the endpoint's origin (#3397)

  • Client("https://..."), streamable_http_client and sse_client follow a redirect only if it stays on the same scheme, host and port (or upgrades http to https on the same host).
  • A redirect anywhere else is not followed: the call fails with MCPError and the session stays usable (an SSE connect fails with httpx2.HTTPStatusError). If that other URL is the server you meant, use it as the endpoint URL.
  • The follow_redirects setting on an httpx2.AsyncClient you pass in is no longer used for MCP requests, so you don't need it for the trailing-slash redirect any more.
  • The OAuth providers apply the same rule to their own requests.

Idle Streamable HTTP sessions now expire (legacy <=2025-11-25 spec( (#3395)

  • A stateful session with nothing in flight for 30 minutes is closed. The client's next request gets a 404 and it has to initialize again.
  • Clients that keep the GET stream open (the SDK's Client does) are not affected. Neither are stateless servers or 2026-07-28 connections.
  • A server also holds at most 10 000 sessions at once; beyond that, new sessions get a 503.
  • To turn either off: mcp.run(transport="streamable-http", session_idle_timeout=None, max_sessions=None) (also on streamable_http_app() and run_streamable_http_async()).

The OAuth client checks the authorization server's issuer on the legacy path too (#3398)

  • For servers without protected resource metadata, authorization server metadata whose issuer isn't the server's own origin is now rejected with OAuthFlowError: Authorization server metadata issuer mismatch. The protected-resource-metadata path has done this since 2.0.
  • A 403 that isn't an insufficient_scope challenge is returned to the caller instead of retried.
  • If protected resource metadata can't be fetched because of a 5xx/429, the flow now stops instead of falling back to the legacy endpoints.

Two new MCPDeprecationWarnings (#3435, #3447)

  • ClientCredentialsOAuthProvider / PrivateKeyJWTOAuthProvider without issuer=. Pass your authorization server's issuer URL; 3.0 will require it.
  • AuthSettings with resource_server_url set but validate_token_resource unset. Set it to True or False; 3.0 defaults it to True.
  • Both keep working as before in 2.x; this mostly matters if your tests turn warnings into errors.

New

  • AuthSettings.validate_token_resource: only accept tokens your TokenVerifier reports as issued for this server (#3447).
  • issuer= on ClientCredentialsOAuthProvider and PrivateKeyJWTOAuthProvider (#3398).
  • session_idle_timeout= and max_sessions= on the Streamable HTTP server entry points (#3395).

Fixes

  • A client DELETE frees its session immediately, and a refused opening request no longer leaves a session behind (#2455, #3228, #3300).
  • $refs in a tool's outputSchema resolve within that schema only; an unresolvable one surfaces as RuntimeError: Invalid schema for tool ... (#3394).

Known gaps

The tasks extension (SEP-2663), DPoP (SEP-1932) and the jwt-bearer grant are not implemented yet; https://github.com/modelcontextprotocol/python-sdk/blob/main/ROADMAP.md tracks them.

What's Changed

... (truncated)

Commits
  • 9972c21 Replace RootModel wrappers with type aliases and TypeAdapter validation (#3470)
  • fd66270 docs: refresh translations, and translate pages in parallel (#3458)
  • 08a3bc8 docs: ask for AI disclosure on comments too (#3459)
  • 7bb486a docs: stop presenting the in-memory client as the way to connect (#3443)
  • 0c91368 Add AuthSettings.validate_token_resource to check a bearer token's resource (...
  • 9771e6b Keep following a relative redirect when the endpoint URL carries userinfo (#3...
  • a925e55 Bump the locked versions of eight dev and test dependencies (#3449)
  • e8b9486 Bump pymdown-extensions from 11.0 to 11.0.1 (#3285)
  • c6762e8 Follow redirects only within the MCP endpoint's origin (#3397)
  • 5fd3abc Skip automatic docs previews for fork PRs and drop the setup-uv retry steps (...
  • Additional commits viewable in compare view

Updates anthropic from 1.4.0 to 1.5.0

Release notes

Sourced from anthropic's releases.

v1.5.0

1.5.0 (2026-09-10)

Full Changelog: v1.4.0...v1.5.0

Features

  • api: add auto mode tool permissions for Managed Agents (62aa21b)
  • api: add content_too_large web_fetch tool error code (4b5dec6)
  • api: add the user-profiles-2026-09-04 beta value and external_user_details to user profiles (5f881a5)
  • api: support mounting public GitHub repositories without an authorization_token in Managed Agents sessions (285937c)
  • client: add Message.to_param() and BetaMessage.to_param() (192a2b2)
  • credentials: add CredentialsError and IdentityTokenFileError (9acd79f)
  • tools: accept tool objects directly in messages.create, parse, stream and count_tokens (ebd2fc5)

Bug Fixes

  • client: merge extra_body before client hooks run (7aaf887)
  • credentials: refuse credentials files accessible by group or others (7af3e2b)
  • streaming: keep partial tool input JSON off content blocks (4605bca)
  • types: leave parsed_output out of dumped text blocks (ca0706d)

Chores

  • client: clean up the unused idempotency request option (c97830c)
  • client: keep the idempotency_key request option as a deprecated no-op (#621) (c2ab92e)
  • docs: correct the environment scope field description (b903ee0)
  • internal: remove generated file header comments (ae671f8)
  • internal: restore package version (f3aefc7)
  • internal: restore package version (e3c70e8)
  • internal: stop stamping the package version into generated files (e7a6a28)
  • tests: restore empty test package marker files (0803af0)
Changelog

Sourced from anthropic's changelog.

1.5.0 (2026-09-10)

Full Changelog: v1.4.0...v1.5.0

Features

  • api: add auto mode tool permissions for Managed Agents (62aa21b)
  • api: add content_too_large web_fetch tool error code (4b5dec6)
  • api: add the user-profiles-2026-09-04 beta value and external_user_details to user profiles (5f881a5)
  • api: support mounting public GitHub repositories without an authorization_token in Managed Agents sessions (285937c)
  • client: add Message.to_param() and BetaMessage.to_param() (192a2b2)
  • credentials: add CredentialsError and IdentityTokenFileError (9acd79f)
  • tools: accept tool objects directly in messages.create, parse, stream and count_tokens (ebd2fc5)

Bug Fixes

  • client: merge extra_body before client hooks run (7aaf887)
  • credentials: refuse credentials files accessible by group or others (7af3e2b)
  • streaming: keep partial tool input JSON off content blocks (4605bca)
  • types: leave parsed_output out of dumped text blocks (ca0706d)

Chores

  • client: clean up the unused idempotency request option (c97830c)
  • client: keep the idempotency_key request option as a deprecated no-op (#621) (c2ab92e)
  • docs: correct the environment scope field description (b903ee0)
  • internal: remove generated file header comments (ae671f8)
  • internal: restore package version (f3aefc7)
  • internal: restore package version (e3c70e8)
  • internal: stop stamping the package version into generated files (e7a6a28)
  • tests: restore empty test package marker files (0803af0)
Commits
  • eb21a43 Merge pull request #1924 from anthropics/release-please--branches--main--chan...
  • c7c579b release: 1.5.0
  • 62aa21b feat(api): add auto mode tool permissions for Managed Agents
  • 285937c feat(api): support mounting public GitHub repositories without an authorizati...
  • 17e9563 environments: the worker runs on the work item's session token alone when one...
  • 5f881a5 feat(api): add the user-profiles-2026-09-04 beta value and external_user_deta...
  • 4605bca fix(streaming): keep partial tool input JSON off content blocks
  • ebd2fc5 feat(tools): accept tool objects directly in messages.create, parse, stream a...
  • ca0706d fix(types): leave parsed_output out of dumped text blocks
  • 192a2b2 feat(client): add Message.to_param() and BetaMessage.to_param()
  • Additional commits viewable in compare view

Updates openai from 3.8.0 to 3.13.0

Release notes

Sourced from openai's releases.

v3.13.0

3.13.0 (2026-09-10)

Features

v3.12.0

3.12.0 (2026-09-10)

Features

Bug Fixes

  • add aclose() to AsyncStream for standard async cleanup (#2854) (802b334)
  • handle bare dict and list annotations without type arguments (#3760) (c7e8c03)
  • preserve finalized output on null response completion (#3345) (adb212e)

v3.11.0

3.11.0 (2026-09-09)

Features

  • api: Add expiration controls for service account keys (#3825) (f348ec8)

v3.10.0

3.10.0 (2026-09-08)

Features

  • api: add GPT Image 2.5 models and image options (#3824) (5b39c45)
  • api: add service-account API key expiration fields (#3802) (f1cd7f0)

v3.9.0

3.9.0 (2026-09-05)

Features

  • api: Add prompt cache diagnostics (#3800) (8326784)
  • api: correct function argument completion event fields (openapi-545) (#3801) (2a98f6a)

... (truncated)

Changelog

Sourced from openai's changelog.

3.13.0 (2026-09-10)

Features

3.12.0 (2026-09-10)

Features

Bug Fixes

  • add aclose() to AsyncStream for standard async cleanup (#2854) (802b334)
  • handle bare dict and list annotations without type arguments (#3760) (c7e8c03)
  • preserve finalized output on null response completion (#3345) (adb212e)

3.11.0 (2026-09-09)

Features

  • api: Add expiration controls for service account keys (#3825) (f348ec8)

3.10.0 (2026-09-08)

Features

  • api: add GPT Image 2.5 models and image options (#3824) (5b39c45)
  • api: add service-account API key expiration fields (#3802) (f1cd7f0)

3.9.0 (2026-09-05)

Features

  • api: Add prompt cache diagnostics (#3800) (8326784)
  • api: correct function argument completion event fields (openapi-545) (#3801) (2a98f6a)

Bug Fixes

  • api: accept incomplete web search call statuses (#3786) (3cc8d78)
  • refuse overflowing server retry delays (#3799) (88b4d43)

... (truncated)

Commits

Updates google-genai from 2.22.0 to 2.23.0

Release notes

Sourced from google-genai's releases.

v2.23.0

2.23.0 (2026-09-10)

Features

  • Add from_environment support for environment copying (e6d3168)
  • Support dynamic turn completion via interaction_status in live.py receive() (455df80)

Bug Fixes

  • Remove unused field from FunctionResultDelta (2843079)
Changelog

Sourced from google-genai's changelog.

2.23.0 (2026-09-10)

Features

  • Add from_environment support for environment copying (e6d3168)
  • Support dynamic turn completion via interaction_status in live.py receive() (455df80)

Bug Fixes

  • Remove unused field from FunctionResultDelta (2843079)
Commits
  • e384b55 chore(main): release 2.23.0 (#2942)
  • e6d3168 feat: Add from_environment support for environment copying
  • 455df80 feat: support dynamic turn completion via interaction_status in live.py recei...
  • 57facba chore: add # pylint: skip-file to generated Python GAOS SDK headers
  • 2843079 fix: Remove unused field from FunctionResultDelta
  • c58c6c7 chore: update for netstandard 2.0.
  • See full diff in compare view

Updates mujoco from 3.12.0 to 3.13.0

Release notes

Sourced from mujoco's releases.

3.13.0

Version 3.13.0 (September 8, 2026)

General

  1. eb18d77ca The .mjz encoder now writes the root file as model.xml in the archive as this is less susceptible to breakage due to file renaming.

  2. 4affbb64a Site geometries can now also be associated with meshes (type="mesh" with mesh="name"), supporting visualization, the insidesite sensor, and the new mj_insideSite function.

  3. b59b07fae Added support for Python 3.15 (GIL and Free-Threading).

Engine

  1. 5660353ec Added a new integrator discrete: the constraint solve and the implicit velocity update merge into one operation, performed in the effective metric $\widehat{M} = M + hD + h^2K$, which incorporates both implicit damping $hD$ and implicit position stiffness $h^2 K$. Under this integrator mjData.qacc is the discrete step map $(v^+ - v)/h$, and joint, tendon and actuator stiffness and damping join the solver's metric, making passive springs and actuator position gains stable at timesteps far beyond the explicit stability limit. Constraint rows are treated implicitly as well: solref spring--dampers are evaluated at the end of the step, so constraints are stable at any timeconst; under this integrator the refsafe flag replaces contact and limit rows stiffer than the timestep can resolve by the stiffest zero-restitution row instead of clamping timeconst. The actuator-gain treatment resolves the stiff-servo timestep limitation of #3443 (analysis contributed by @​qiayuanl). See the integrator documentation for semantics and current limitations.

[!WARNING] Breaking API changes

Removed the implicit flex effective-metric special case under implicit/implicitfast with the CG solver, introduced in 3.11.0. This behavior now requires integrator="discrete" (with a primal solver: CG or Newton), which additionally treats joint damping and stiffness implicitly inside the solve. Models relying on the old behavior should set integrator to discrete; models with flex elasticity or passive flex contact under implicit/implicitfast now raise a runtime error carrying this migration note.

  1. 0b4e17747 Restored clamping of non-positive pivots in the sparse inertia factorization, along with the associated mjWARN_INERTIA warning. The guard was inadvertently dropped in the 3.3.0 conversion of qLD to CSR format; since then, models with singular mass matrices silently produced non-finite accelerations, typically surfacing as divergence warnings and automatic resets.

  2. c9d997610 Added single-shot multicontact for collisions with cylinder geoms.

  3. 10eeb8289 The Newton solver with elliptic cones now rebuilds the cone-augmented Hessian factor with a single refactorization instead of per-contact rank-1 updates when a flop-count model predicts this is faster. Scenes with many simultaneously sliding contacts speed up by 1.4-2x on average and 3-4x on the slowest steps. Contribution by @​kevinzakka.

... (truncated)

Changelog

Sourced from mujoco's changelog.

Version 3.13.0 (September 8, 2026)

General ^^^^^^^

  1. :commit:eb18d77ca The :ref:.mjz <MJZArchives> encoder now writes the root file as model.xml in the archive as this is less susceptible to breakage due to file renaming.
  2. :commit:4affbb64a Site geometries can now also be associated with meshes (:ref:type="mesh"<body-site-type> with :ref:mesh="name"<body-site-mesh>), supporting visualization, the :ref:insidesite<sensor-insidesite> sensor, and the new :ref:mj_insideSite function.
  3. :commit:b59b07fae Added support for Python 3.15 (GIL and Free-Threading).

Engine ^^^^^^ 4. :commit:5660353ec Added a new integrator discrete: the constraint solve and the implicit velocity update merge into one operation, performed in the effective metric :math:\widehat{M} = M + hD + h^2K, which incorporates both implicit damping :math:hD and implicit position stiffness :math:h^2 K. Under this integrator mjData.qacc is the discrete step map :math:(v^+ - v)/h, and joint, tendon and actuator stiffness and damping join the solver's metric, making passive springs and actuator position gains stable at timesteps far beyond the explicit stability limit. Constraint rows are treated implicitly as well: :at:solref spring--dampers are evaluated at the end of the step, so constraints are stable at any timeconst; under this integrator the :ref:refsafe<option-flag-refsafe> flag replaces contact and limit rows stiffer than the timestep can resolve by the stiffest zero-restitution row instead of clamping timeconst. The actuator-gain treatment resolves the stiff-servo timestep limitation of :issue:3443 (analysis contributed by :github:user:qiayuanl). See the :ref:integrator documentation<geIntegrators> for semantics and current limitations.

.. admonition:: Breaking API changes :class: attention

  Removed the implicit flex effective-metric special case under ``implicit``/``implicitfast`` with the ``CG``
  solver, introduced in 3.11.0. This behavior now requires ``integrator="discrete"`` (with a primal solver:
  ``CG`` or ``Newton``), which additionally treats joint damping and stiffness implicitly inside the solve. Models
  relying on the old behavior should set :ref:`integrator<option-integrator>` to ``discrete``; models with flex
  elasticity or passive flex contact under ``implicit``/``implicitfast`` now raise a runtime error carrying this
  migration note.
  1. :commit:0b4e17747 Restored clamping of non-positive pivots in the sparse inertia factorization, along with the associated mjWARN_INERTIA warning. The guard was inadvertently dropped in the 3.3.0 conversion of qLD to CSR format; since then, models with singular mass matrices silently produced non-finite accelerations, typically surfacing as divergence warnings and automatic resets.
  2. :commit:c9d997610 Added single-shot :ref:multicontact<coMultiCCD> for collisions with cylinder geoms.
  3. :commit:10eeb8289 The Newton solver with :ref:elliptic cones<option-cone> now rebuilds the cone-augmented Hessian factor with a single refactorization instead of per-contact rank-1 updates when a flop-count model predicts this is faster. Scenes with many simultaneously sliding contacts speed up by 1.4-2x on average and 3-4x on the slowest steps. Contribution by :github:user:kevinzakka.

Compiler ^^^^^^^^ 8. :commit:2a3957558 Custom text fields (:ref:custom/text<custom-text>) in MJCF now accept their values inside a <![CDATA[ ... ]]> block in addition to the data attribute. When saving a model via :ref:mj_saveXML, custom

... (truncated)

Commits
  • 123347c Update changelog for the 3.13.0 release.
  • 5cc54f3 Add Googler @​mention to failure alerts.
  • 297f5fc Merge pull request #3267 from njfletcher215:order-siblings-deterministically
  • 9f42b35 Keep the authored damping ratio in the discrete refsafe row.
  • 6b5c05d Remove trailing underscore from local variable.
  • a6cb503 Import NVIDIA Warp 1.17.0
  • 4990fa5 Merge pull request #3541 from proudhare:fix/ph-issue-3540
  • a90ca41 Enable MultiCCD by default in MuJoCo global settings.
  • d1da09a Enable island rendering draw mode.
  • 2944f5e Introduce internal mjPacked32 struct in engine_collision_driver.c to handle p...
  • Additional commits viewable in compare view

Updates onnxruntime from 1.27.0 to 1.30.0

Release notes

Sourced from onnxruntime's releases.

ONNX Runtime v1.30.0

ONNX Runtime 1.30.0 expands generative AI inference, improves CPU and GPU performance, adds Go bindings, and strengthens runtime reliability. These notes cover changes since ONNX Runtime 1.29.1.

Highlights

  • Expanded CUDA inference support with variable-length causal convolution for continuous batching, speculative decoding in paged XQA, and INT4 paged KV caches with per-channel scales (#32168, #32340, #32515).
  • Improved WebGPU PagedAttention, added GPT-OSS support and INT8 KV-cache block quantization, and extended convolution optimizations (#31727, #32277, #32284, #32420).
  • Added fused CPU LinearAttention kernels for AVX-512, Arm64 NEON, and SVE, plus AVX2 LayerNorm/RMSNorm acceleration (#31674, #31973, #32178, #32356).
  • Added Go bindings for the ONNX Runtime C API and DeepSeek Engram contrib operators (#29615, #32268).

Announcements & Compatibility

  • FP4 QMoE kernels are now enabled by default in CUDA builds, with Windows build support added in this release. Source builds can opt out with -Donnxruntime_USE_FP4_QMOE=OFF (#32096, #32163).
  • CUDA fpA-intB builds now default to a compact kernel set for FP16 activations, INT4/INT8 weights, scale-only quantization, and block_size=32. Set -Donnxruntime_USE_FPA_INTB_GEMM_FULL=ON when building from source to retain the full kernel set, including BF16, zero-point, bias, larger-block-size, and native Hopper variants (#32324).
  • CPU FP16 Gemm and MatMul execution is gated on hardware acceleration. CPU-assigned FP16 nodes without a matching kernel now fall back to FP32 (#32301, #32197).
  • WebGPU plugin EP packaging now supports Linux AArch64. Plugin versions were advanced to WebGPU 0.4.0 and CUDA 0.2 (#32287, #31960, #31970).

Security & Reliability

Model Loading, Memory, and Input Validation

  • Limited nested model-graph depth and canonicalized external-data locations to harden model loading (#32344, #32135).
  • Added checked rounding for BFC arena allocations and fixed prepacked-weight reference lifetimes (#32010, #32040).
  • Strengthened shape, rank, and parameter validation for Split, Scan, GatherND, ScatterND, SpaceToDepth/DepthToSpace, Crop, Conv, Normalizer, and pooling (#29461, #31668, #32034, #32039, #32076, #32157, #32160, #32161, #32345, #32349).
  • Hardened generation and attention input handling, including attention-attribute narrowing, BifurcationDetector inputs, generation subgraph shapes, and QEmbed segment inputs. BeamSearch buffer expansion now uses dynamic shape storage (#31648, #31701, #32009, #32078, #32144).
  • Validated TreeEnsemble node references and bounded subtree comparison, rejected non-finite CPU RoiAlign coordinates, and required ImageScaler bias to match the channel count (#32031, #32043, #32011, #32002).
  • Added an allowlist of safe LoRA adapter parameter data types, validated MatMulFpQ4 shape inputs, and checked MLAS blockwise quantization/dequantization index ranges (#31682, #32032, #32007).

GPU Bounds and Resource Lifetimes

  • Hardened CUDA indexing and buffer-size arithmetic in MatMulNBits, RemovePadding, RotaryEmbedding, SparseAttention, Whisper beam search, NMS, QDQ, and GatherElements (#31643, #31994, #31995, #31996, #31998, #32014, #32029, #32030).
  • Fixed overflow in CUDA reduction scans and Softmax offset arithmetic, and handled zero-sized outputs in CUDA random-generator kernels (#32137, #32330, #31997).
  • Fixed CUDA MultiHeadAttention shared-cache scratch lifetimes and kept CudaAsyncBuffer staging storage alive across CUDA graph replay (#31968, #32121).
  • Fixed WebGPU out-of-bounds subgroup-matrix loads for partial tiles, zero-initialized writable device-allocator buffers, and rejected foreign GPU handles in built-in data transfers (#32364, #32063, #32317).

Dependencies and Tooling

  • Upgraded Protobuf to 33.6 and refreshed Python documentation dependencies, including an ONNX security-related update (#29906, #32190, #32424).
  • Updated JavaScript dependencies including js-yaml, joi, fast-uri, and the Next.js end-to-end fixture (#32397, #32486, #32488, #32505, #32508).
  • Pinned GitHub Actions to full-length commit SHAs and strengthened packaging infrastructure with authenticated package feeds and NPM network isolation (#32176, #32005, #32440).

New Features

Core APIs & Runtime

  • Added Go bindings for the ONNX Runtime C API (#29615).
  • Extended memory importing with host-pointer support and added access to preallocated outputs through KernelContext::GetPreallocatedOutput (#29726, #32089).
  • Added packed-attention workspace recipes and estimates, and made workspace input-shape handling aware of optional inputs (#32283, #32321, #32312).
  • Added DeepSeek Engram contrib operators, EngramGate and NGramHashMapping, and expanded kernel coverage for Qwen-3.5 operators (#32268, #32106).

... (truncated)

Commits
  • f2c39fe [CUDA] Add INT4 paged KV cache with per-channel scales (#32515)
  • 5894ba8 Add portable random-access file reads to Env (#32503)
  • a2ee3eb Fix CUDA plugin device discovery on WSL (#32517)
  • b652e59 [WebGPU] Prepack Conv weights for the im2col-matmul path (#32420)
  • 0f0f29f Get rid of spurious warning about not being able to find spectre mitigation (...
  • 23dd651 Register ONNX schemas only when static registration is disabled (#32353)
  • 33af5d3 Release external data loaders after graph initialization (#32502)
  • 2e3c24d Clarify external initializer and EP context path interaction (#32442)
  • e76036b [CUDA] Pin FP8 GEMV residency for grids just past two blocks per SM (#32433)
  • 82583c5 Add session option for a BNHS GroupQueryAttention Value cache layout (#32139)
  • Additional commits viewable in compare view

Updates ruff from 0.16.6 to 0.16.7

Release notes

Sourced from ruff's releases.

0.16.7

Release Notes

Released on 2026-09-10.

Preview features

  • [ruff] Add rule for default values on method receivers (RUF077) (#26700)
  • [ruff] Recognize re.prefixmatch (RUF039, RUF055) (#28311)

Bug fixes

  • Alternate nested quotes inside format spec interpolations (#28259)
  • [flake8-implicit-str-concat] Mark fix unsafe when it creates a docstring (ISC003) (#27981)
  • [flake8-tidy-imports] Skip fixes for multi-member imports (TID254) (#26584)
  • [pylint] Gate ImportCycleError on Python 3.15 (PLW0133) (#28310)

Rule changes

  • Correct D211 and D203 rule conflict diagnostic (#28444)
  • Recognize slice and frozendict generics (#28477)
  • Stop defining __cached__ for Python 3.15 (#28476)
  • [pyupgrade] Stop recommending removed typing.no_type_check_decorator (UP035) (#28475)

Performance

  • Reuse parser name lookups when interning (#28399)
  • Speed up inherited configuration resolution (#28299)

Documentation

  • Fix line-length path in --config example (#28392)
  • Remove the "Who’s Using Ruff?" list (#28455)

Other changes

  • Embed archive checksums in the shell installer (

…ates

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

| Package | From | To |
| --- | --- | --- |
| [mcp](https://github.com/modelcontextprotocol/python-sdk) | `2.1.1` | `2.2.0` |
| [anthropic](https://github.com/anthropics/anthropic-sdk-python) | `1.4.0` | `1.5.0` |
| [openai](https://github.com/openai/openai-python) | `3.8.0` | `3.13.0` |
| [google-genai](https://github.com/googleapis/python-genai) | `2.22.0` | `2.23.0` |
| [mujoco](https://github.com/google-deepmind/mujoco) | `3.12.0` | `3.13.0` |
| [onnxruntime](https://github.com/microsoft/onnxruntime) | `1.27.0` | `1.30.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.16.6` | `0.16.7` |
| [types-pyyaml](https://github.com/python/typeshed) | `6.0.12.20260815` | `6.0.12.20260906` |



Updates `mcp` from 2.1.1 to 2.2.0
- [Release notes](https://github.com/modelcontextprotocol/python-sdk/releases)
- [Changelog](https://github.com/modelcontextprotocol/python-sdk/blob/main/RELEASE.md)
- [Commits](modelcontextprotocol/python-sdk@v2.1.1...v2.2.0)

Updates `anthropic` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-python@v1.4.0...v1.5.0)

Updates `openai` from 3.8.0 to 3.13.0
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v3.8.0...v3.13.0)

Updates `google-genai` from 2.22.0 to 2.23.0
- [Release notes](https://github.com/googleapis/python-genai/releases)
- [Changelog](https://github.com/googleapis/python-genai/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-genai@v2.22.0...v2.23.0)

Updates `mujoco` from 3.12.0 to 3.13.0
- [Release notes](https://github.com/google-deepmind/mujoco/releases)
- [Changelog](https://github.com/google-deepmind/mujoco/blob/main/doc/changelog.rst)
- [Commits](google-deepmind/mujoco@3.12.0...3.13.0)

Updates `onnxruntime` from 1.27.0 to 1.30.0
- [Release notes](https://github.com/microsoft/onnxruntime/releases)
- [Changelog](https://github.com/microsoft/onnxruntime/blob/main/docs/ReleaseNotesWorkflow.md)
- [Commits](microsoft/onnxruntime@v1.27.0...v1.30.0)

Updates `ruff` from 0.16.6 to 0.16.7
- [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.16.6...0.16.7)

Updates `types-pyyaml` from 6.0.12.20260815 to 6.0.12.20260906
- [Commits](https://github.com/python/typeshed/commits)

---
updated-dependencies:
- dependency-name: mcp
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: anthropic
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: openai
  dependency-version: 3.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: google-genai
  dependency-version: 2.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: mujoco
  dependency-version: 3.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: onnxruntime
  dependency-version: 1.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: ruff
  dependency-version: 0.16.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: types-pyyaml
  dependency-version: 6.0.12.20260906
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
...

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 Sep 14, 2026
@rokbenko
rokbenko merged commit a5b2eba into main Sep 14, 2026
7 checks passed
@dependabot
dependabot Bot deleted the dependabot/uv/python-deps-b89cf9c411 branch September 14, 2026 09:01
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