Skip to content

chore(deps): update python-nonmajor#657

Open
renovate-bot wants to merge 1 commit into
googleapis:mainfrom
renovate-bot:renovate/python-nonmajor
Open

chore(deps): update python-nonmajor#657
renovate-bot wants to merge 1 commit into
googleapis:mainfrom
renovate-bot:renovate/python-nonmajor

Conversation

@renovate-bot
Copy link
Copy Markdown
Contributor

@renovate-bot renovate-bot commented May 18, 2026

This PR contains the following updates:

Package Change Age Confidence
black (changelog) ==26.5.0==26.5.1 age confidence
google-adk (changelog) ==1.33.0==1.34.0 age confidence
opentelemetry-exporter-otlp >=1.41.1,<1.42.0>=1.42.1,<1.43.0 age confidence
opentelemetry-exporter-otlp-proto-http ==1.41.1==1.42.1 age confidence
opentelemetry-sdk >=1.41.1,<1.42.0>=1.42.1,<1.43.0 age confidence
opentelemetry-sdk ==1.41.1==1.42.1 age confidence

Release Notes

psf/black (black)

v26.5.1

Compare Source

Stable style
  • Fix unstable formatting of annotated assignments whose subscript annotation contains
    an inline comment (e.g. x: list[ # pyright: ignore[...]) (#​5130)
  • Preserve inline comments (including # type: ignore) immediately before a
    # fmt: skip line, avoiding AST equivalence failures (#​5139)
Packaging
  • Correct the version in the published executables (#​5137)
Documentation
  • Add Neovim integration guide covering conform.nvim, ALE, and simple command approaches
    (#​5124)
google/adk-python (google-adk)

v1.34.0

Compare Source

Features
  • a2a: add support for persistent task stores (cd78d87)
  • add general support for Gemini Live API in ADK evaluate (790c9be)
  • Add mTLS support to Google Cloud Telemetry exporter (cfe8d2c)
  • add support for A2aAgentExecutor factory in to_a2a() function (115124c)
  • add support for non-ADK produced input-required events (6e53472)
  • Added config option to include tool calls/responses in conversation history passed to user simulator (baf7efb)
  • ci: add Gemini auto review and invoke workflows (fd8b492)
  • Implement GCPSkillRegistry in ADK (88ebd42)
  • Implement Skill Registry in ADK (380d261)
  • Make Agent Skill description validation more informative (9f38973)
  • Simplify data retrieved handling of ask_data_agent tool and ask_data_insights tool (48f1b30)
  • Support OAuth PKCE in McpToolset (e7316dc)
Bug Fixes
  • agents: fix visibility of output_key state delta in callbacks (0524797)
  • anthropic: map negative thinking_budget to adaptive thinking (03b915b)
  • auth: persist refreshed OAuth2 credentials to store (218ea76), closes #​5329
  • auth: remove unneeded OAuth flows (c35a579)
  • avoid pre-serializing dict values in Interactions API to prevent double-escaping (85f397d)
  • cache: enforce CacheMetadata active-state invariant (76b9f0b)
  • cache: handle fingerprint-only metadata in performance analyzer (9c5de58)
  • Catch OSError when importing AnthropicLlm (91cb5c6)
  • evaluation: handle none config in per_turn_user_simulator_quality (eed9bd3), closes #​5677
  • fallback to project id if crendetials don't contain quota project (e377cb5)
  • Fix missing dynamically loaded tools in SkillToolset during the same invocation (f9097cb)
  • live: ensure sub live agent doesn't inherit session resumption handle from parent live agent to avoid interrupting the conversation (8dd9147)
  • models: preserve string content in Anthropic tool_result blocks (9a1e75f), closes #​5358
  • models: preserve tool_use IDs for Anthropic models on session resume (327c45f), closes #​5074
  • models: treat empty GenerateContentResponse without prompt feedback as successful (0cb9ae9)
  • only serialize llm_response to json if it will be included in the trace (1284493)
  • Preserve live_session_id in function call handling (07a9a01)
  • Prevent compaction of events involved in Human-in-the-Loop interactions (bb2efb6)
  • raise eagerly on importing AgentRegistry if a2a-sdk is missing (33cf6cb)
  • small: Convert events to the A2A format while respecting user vs agent role (59f7347)
  • tools: preserve code_execution_result and executable_code in AgentTool (7e61b51), closes #​5481
  • tools: Prevent AnyIO CancelScope task boundary violations during MCP session creation failure (4309159)
  • Update model name in hello_world agent (192f19d)
  • Update model to gemini-3-flash-preview in hello word agent sample (6d89d21)
  • Update model to gemini-3-flash-preview in session state agent sample (2d423e8)
  • use tool_responses role for gemma4 models in LiteLLM integration (3d07960), closes #​5650
Performance Improvements
  • lazy-load service registries and split apps.app to cut cold start ~8% (bd062ec)
  • models: guard debug log evaluation with isEnabledFor (57d8fc7)
  • utils: cache find_context_parameter introspection (ec54bd4)
Code Refactoring
  • Make the "a2a_metadata" string a constant that can be depended on by extension developers (0821f2d)
open-telemetry/opentelemetry-python (opentelemetry-exporter-otlp)

v1.42.1: Version 1.42.1/0.63b1

Compare Source

This is a patch release on the previous 1.42.0/0.63b0 release, fixing the issue(s) below.

Fixed
  • Preserve the random trace ID flag when creating child spans instead of always setting the random trace id bit depending on the available trace id generator. (#​5241)

v1.42.0: Version 1.42.0/0.63b0

Compare Source

Added
  • opentelemetry-api, opentelemetry-sdk: add support for 'random-trace-id' flags in W3C traceparent header trace flags. Implementations of IdGenerator that do randomly generate the 56 least significant bits, should also implement a is_trace_id_random methods that returns True. (#​4854)
  • logs: add exception support to Logger emit and LogRecord attributes (#​4908)
  • opentelemetry-exporter-otlp-proto-grpc: make retryable gRPC error codes configurable for gRPC exporters (#​4917)
  • opentelemetry-sdk: Add create_logger_provider/configure_logger_provider to declarative file configuration, enabling LoggerProvider instantiation from config files without reading env vars (#​4990)
  • opentelemetry-exporter-otlp-json-common: add 'opentelemetry-exporter-otlp-json-common' package for OTLP JSON exporters (#​4996)
  • opentelemetry-sdk: Add service resource detector support to declarative file configuration via detection_development.detectors[].service (#​5003)
  • opentelemetry-docker-tests: add docker-tests coverage of opentelemetry-exporter-otlp-proto-grpc and opentelemetry-exporter-otlp-proto-http metrics export (#​5030)
  • Add registry keyword argument to PrometheusMetricReader to allow passing a custom Prometheus registry (#​5055)
  • Add WeaverLiveCheck test util (#​5088)
  • opentelemetry-sdk: add load_entry_point shared utility to declarative file configuration for loading plugins via entry points; refactor propagator loading to use it (#​5093)
  • opentelemetry-sdk: add sampler plugin loading to declarative file configuration via the opentelemetry_sampler entry point group, matching the spec's PluginComponentProvider mechanism (#​5095)
  • opentelemetry-sdk: add propagator plugin loading to declarative file configuration via the opentelemetry_propagator entry point group, matching the spec's PluginComponentProvider mechanism (#​5098)
  • opentelemetry-sdk: add exporter plugin loading to declarative file configuration for all three signals (traces, metrics, logs) via the opentelemetry_*_exporter entry point groups, matching the spec's PluginComponentProvider mechanism (#​5128)
  • opentelemetry-sdk: add generic resource detector plugin loading to declarative file configuration via the opentelemetry_resource_detector entry point group, matching the spec's PluginComponentProvider mechanism (#​5129)
  • opentelemetry-sdk: add additional_properties support to generated config models via custom datamodel-codegen template, enabling plugin/custom component names to flow through typed dataclasses (#​5131)
  • Add ability to selectively enable exporting of SDK internal metrics with the OTEL_PYTHON_SDK_INTERNAL_METRICS_ENABLED environment variable. (#​5151)
Changed
  • opentelemetry-semantic-conventions: use X | Y union annotation (#​5096)
  • opentelemetry-api: update EnvironmentGetter and EnvironmentSetter to use normalized environment variable names (#​5119)
  • Apply fixes for UP ruff rule (#​5133)
  • opentelemetry-sdk: only load entrypoints for resource detectors if they are configured via OTEL_EXPERIMENTAL_RESOURCE_DETECTORS (#​5145)
  • ci: wait for tracecontext server readiness instead of a fixed sleep in scripts/tracecontext-integration-test.sh (#​5149)
  • Switch to SPDX license headers and add CI enforcement (#​5177)
  • opentelemetry-semantic-conventions: Bump semantic conventions to 1.41.1, this changes the metrics name of K8S_CONTAINER_CPU_LIMIT_UTILIZATION and K8S_CONTAINER_CPU_REQUEST_UTILIZATION. (#​5200)
Removed
  • opentelemetry-api: remove third-party importlib-metadata in favor of standard library since Python >= 3.10 is now required (#​3234)
  • Drop Python 3.9 support (#​5076)
Fixed
  • opentelemetry-sdk: Allow declarative OTLP HTTP exporters to map compression: deflate instead of rejecting it as unsupported. (#​5075)
  • Fix incorrect code example in create_tracer() docstring (#​5077)
  • opentelemetry-sdk: Fix ProcessResourceDetector to use sys.orig_argv so that process.command, process.command_line, and process.command_args reflect the original invocation for python -m <module> runs (where sys.argv[0] is rewritten to the module path) (#​5083)
  • opentelemetry-sdk: fix YAML structure injection via environment variable substitution in declarative file configuration; values containing newlines are now emitted as quoted YAML scalars per spec requirement (#​5091)
  • opentelemetry-sdk: Fix mutable attributes reference in metrics, attributes passed to instrument add/record are now copied so that subsequent mutations do not affect recorded data points (#​5106)
  • opentelemetry-sdk: make resource detector ordering deterministic (#​5120)
  • Fix incorrect type annotation on detectors parameter of get_aggregated_resources (#​5135)
  • opentelemetry-api: Enforce W3C Baggage size limits on outbound propagation in W3CBaggagePropagator.inject(). Previously only inbound extraction enforced limits; now inject also caps entries at 180, individual pairs at 4096 bytes, and total header at 8192 bytes per the W3C Baggage spec. The extract path max_pairs limit now counts all size-valid entries rather than only successfully parsed ones. (#​5163)
  • opentelemetry-sdk: fix multi-processor force_flush skipping remaining processors when one returns None (#​5179)
  • opentelemetry-test-utils: fix weaver live check hanging when weaver log output fills the pipe buffer (#​5208)

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested a review from a team as a code owner May 18, 2026 17:49
@dpebot
Copy link
Copy Markdown

dpebot commented May 18, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf Bot added the tests: run Label to trigger Github Action tests. label May 18, 2026
@github-actions github-actions Bot removed the tests: run Label to trigger Github Action tests. label May 18, 2026
@renovate-bot renovate-bot changed the title chore(deps): update dependency black to v26.5.1 chore(deps): update python-nonmajor May 19, 2026
@renovate-bot renovate-bot force-pushed the renovate/python-nonmajor branch from 3cd500d to 529bf8a Compare May 19, 2026 02:58
@dpebot
Copy link
Copy Markdown

dpebot commented May 19, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf Bot added the tests: run Label to trigger Github Action tests. label May 19, 2026
@github-actions github-actions Bot removed tests: run Label to trigger Github Action tests. labels May 19, 2026
@renovate-bot renovate-bot force-pushed the renovate/python-nonmajor branch from 529bf8a to cb2d9bb Compare May 19, 2026 14:42
@dpebot
Copy link
Copy Markdown

dpebot commented May 19, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf Bot added the tests: run Label to trigger Github Action tests. label May 19, 2026
@github-actions github-actions Bot removed the tests: run Label to trigger Github Action tests. label May 19, 2026
@twishabansal
Copy link
Copy Markdown
Contributor

/gcbrun

@renovate-bot renovate-bot force-pushed the renovate/python-nonmajor branch from cb2d9bb to f3a8d11 Compare May 21, 2026 17:39
@dpebot
Copy link
Copy Markdown

dpebot commented May 21, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf Bot added the tests: run Label to trigger Github Action tests. label May 21, 2026
@github-actions github-actions Bot removed the tests: run Label to trigger Github Action tests. label May 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants