Skip to content

chore(deps)(deps): bump the python-minor-patch group across 1 directory with 13 updates#168

Open
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/pip/backend/develop/python-minor-patch-85d8f9fccb
Open

chore(deps)(deps): bump the python-minor-patch group across 1 directory with 13 updates#168
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/pip/backend/develop/python-minor-patch-85d8f9fccb

Conversation

@dependabot
Copy link
Copy Markdown

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

Bumps the python-minor-patch group with 13 updates in the /backend directory:

Package From To
fastapi 0.135.3 0.136.0
boto3 1.42.83 1.42.91
authlib 1.6.9 1.7.0
strands-agents 1.34.1 1.36.0
strands-agents-tools 0.3.0 0.5.0
aws-opentelemetry-distro 0.16.0 0.17.0
bedrock-agentcore 1.6.0 1.6.3
openai 2.30.0 2.32.0
google-genai 1.70.0 1.73.1
pytest 9.0.2 9.0.3
hypothesis 6.151.11 6.152.1
ruff 0.15.9 0.15.11
mypy 1.20.0 1.20.1

Updates fastapi from 0.135.3 to 0.136.0

Release notes

Sourced from fastapi's releases.

0.136.0

Upgrades

0.135.4

Refactors

Internal

Commits

Updates boto3 from 1.42.83 to 1.42.91

Commits
  • d5b7391 Merge branch 'release-1.42.91'
  • f8d1385 Bumping version to 1.42.91
  • 3e83422 Add changelog entries from botocore
  • ac298d4 Merge branch 'release-1.42.90'
  • 1a92783 Merge branch 'release-1.42.90' into develop
  • c16e41e Bumping version to 1.42.90
  • ec6d8b3 Add changelog entries from botocore
  • e73a6f9 Bump aws-actions/configure-aws-credentials from 6.0.0 to 6.1.0 (#4767)
  • 54a9dc1 Merge branch 'release-1.42.89'
  • 0cb8ca5 Merge branch 'release-1.42.89' into develop
  • Additional commits viewable in compare view

Updates authlib from 1.6.9 to 1.7.0

Release notes

Sourced from authlib's releases.

v1.7.0

What's Changed

New Contributors

Full Changelog: authlib/authlib@v1.6.10...v1.7.0

v1.6.11

Full Changelog: authlib/authlib@v1.6.10...v1.6.11

  • Fix CSRF issue with starlette client

v1.6.10

Full Changelog: authlib/authlib@v1.6.9...v1.6.10

  • Fix redirecting to unvalidated redirect_uri on UnsupportedResponseTypeError.
Commits
  • 5d2e603 chore: release 1.7.0
  • 767f08b fix: CSRF issue with starlette client
  • e9aaef3 Merge pull request #877 from authlib/merge/1.6
  • 3c8ec9a Merge branch 'main' into merge/1.6
  • ef09aeb chore: release 1.6.10
  • 3be0846 fix: redirecting to unvalidated redirect_uri on UnsupportedResponseTypeError
  • 4cf6f97 Merge pull request #876 from guillett/patch-1
  • 23f67b4 Update README.md docs.authlib.org/en/latest => docs.authlib.org/en/stable
  • 1040163 chore: prek autoupdate
  • 491209f Merge pull request #875 from azmeuk/doc
  • Additional commits viewable in compare view

Updates strands-agents from 1.34.1 to 1.36.0

Release notes

Sourced from strands-agents's releases.

v1.36.0

What's Changed

New Contributors

Full Changelog: strands-agents/sdk-python@v1.35.0...v1.36.0

v1.35.0

What's Changed

Features

Bedrock Service Tier Support — PR#1799

Amazon Bedrock now offers service tiers (Priority, Standard, Flex) that let you control the trade-off between latency and cost on a per-request basis. BedrockModel accepts a new service_tier configuration field, consistent with how other Bedrock-specific features like guardrails are exposed. When not set, the field is omitted and Bedrock uses its default behavior.

from strands import Agent
from strands.models.bedrock import BedrockModel
Use "flex" tier for cost-optimized batch processing
model = BedrockModel(
model_id="us.anthropic.claude-sonnet-4-20250514-v1:0",
service_tier="flex",
)
agent = Agent(model=model)
Use "priority" for latency-sensitive applications
realtime_model = BedrockModel(
model_id="us.anthropic.claude-sonnet-4-20250514-v1:0",
service_tier="priority",
)

... (truncated)

Commits
  • 4e3ad44 fix(telemetry): remove force_flush in tracer (#2142)
  • 8e96ea8 fix(bedrock): normalize empty toolResult content arrays in _format_bedrock_me...
  • 6697d12 fix: preserve Gemini thought_signature in LiteLLM multi-turn tool calls (#2129)
  • 117da67 feat(bidi): support request_state stop_event_loop flag (#1954)
  • dd7a7d9 feat: add metadata field to messages for stateful context tracking (#2125)
  • 09902bd feat(skills): support loading skills from URLs (#2091)
  • 2b81401 feat(agent): add take_snapshot() and load_snapshot() methods (#1948)
  • 0930ca6 feat(openai): plumb through cache tokens in metadata events (#2116)
  • bb7f188 fix: clear leaked running loop in MCP client background thread (#2111)
  • 50b2c79 feat(a2a): add client_config param and deprecate a2a_client_factory (#2103)
  • Additional commits viewable in compare view

Updates strands-agents-tools from 0.3.0 to 0.5.0

Release notes

Sourced from strands-agents-tools's releases.

v0.5.0

What's Changed

New Contributors

Full Changelog: strands-agents/tools@v0.4.1...v0.4.2

What's Changed

New Contributors

Full Changelog: strands-agents/tools@v0.4.1...v0.5.0

v0.4.1

What's Changed

Full Changelog: strands-agents/tools@v0.4.0...v0.4.1

What's Changed

Full Changelog: strands-agents/tools@v0.4.0...v0.4.1

v0.4.0

What's Changed

Exa Deep Search — PR#411

The Exa search tool now supports the deep search mode for comprehensive results. The deprecated neural and keyword search types have been removed in favor of Exa's current API surface.

from strands_tools import exa_search
Use the new deep search mode for comprehensive results
agent = Agent(tools=[exa_search])
agent("Do a deep search on quantum computing breakthroughs in 2026")

⚠️ Breaking: The neural and keyword search types are no longer available. Use auto (default) or deep instead.

... (truncated)

Commits
  • 4de42a0 fix(rss): prevent path traversal via unvalidated feed_id in get_feed_file_pat...
  • 34146fe docs: update repository guidelines for new tools policy (#445)
  • e172b1b fix: add namespace validation and fix TOCTOU in elasticsearch memory … (#447)
  • 53851d8 feat(exa): remove deprecated neural/keyword search types, add deep (#411)
  • cbb9010 fix: use console util to allow output suppression (#436)
  • a2b9553 fix: mem0_memory - Replace direct Console initialization with console_util (#...
  • b0c8f30 docs: add use_agent, graph, and elasticsearch_memory to README (#431)
  • See full diff in compare view

Updates aws-opentelemetry-distro from 0.16.0 to 0.17.0

Changelog

Sourced from aws-opentelemetry-distro's changelog.

Changelog

All notable changes to this project will be documented in this file.

Note: This CHANGELOG was created starting from version 0.12.0. Earlier changes are not documented here.

For any change that affects end users of this package, please add an entry under the Unreleased section. Briefly summarize the change and provide the link to the PR. Example:

  • add GenAI attribute support for Amazon Bedrock models (#300)

If your change does not need a CHANGELOG entry, add the "skip changelog" label to your PR.

Unreleased

  • feat: support environment-configured endpoint visibility for HTTP operation names (#718)
  • fix(lambda-layer): Disable all agentic instrumentation in Lambda by default (#710)
  • fix(genai-instrumentors): cleanup code, align with OTel GenAI semconv, add missing attributes and fix deprecated usage (#706)
  • feat(genai-instrumentation): add oldest/latest dependency testing and scheduled instrumentation tests for GenAI libraries (#708)
  • feat(instrumentors): add invoke_workflow span support for LlamaIndex AgentWorkflow and CrewAI (#705)
  • feat: add OpenTelemetry package version compatibility check at distro startup (#694)
  • feat(llama_index-instrumentation): add llama-index to agent observability disabled instrumentations (#704)
  • fix(langchain-instrumentor): expand provider detection for all supported LLM providers (#702)
  • feat: add LLO handler support for gen_ai.input.messages, gen_ai.output.messages, and gen_ai.system_instructions (#699)
  • feat: add GenAiNestedClientSpanProcessor to deduplicate nested client spans (#698)
  • feat: suppress redundant HTTP/ASGI and initialization spans in MCP instrumentation (#695)
  • feat: [BREAKING CHANGE] introduce AWS_AGENTIC_OBSERVABILITY_OPT_IN and refactor agent observability config (#691)
  • feat: propagate HTTP context for MCP requests and prefix all span names with mcp (#683)
  • feat: add threading instrumentation dependency (#685)
  • feat: add openai-agents-v2 instrumentation dependency (#684)
  • feat: add BaggageSpanProcessor by default in ADOT (#687)
  • feat: Rewrite CrewAI instrumentation using Event based approach (#681)
Commits

Updates bedrock-agentcore from 1.6.0 to 1.6.3

Release notes

Sourced from bedrock-agentcore's releases.

Bedrock AgentCore SDK v1.6.3

Installation

pip install bedrock-agentcore==1.6.3

What's Changed

See CHANGELOG.md for details.

What's Changed

Full Changelog: aws/bedrock-agentcore-sdk-python@v1.6.2...v1.6.3

Bedrock AgentCore SDK v1.6.2

Installation

pip install bedrock-agentcore==1.6.2

What's Changed

See CHANGELOG.md for details.

What's Changed

Full Changelog: aws/bedrock-agentcore-sdk-python@v1.6.1...v1.6.2

Bedrock AgentCore SDK v1.6.1

Installation

pip install bedrock-agentcore==1.6.1

What's Changed

See CHANGELOG.md for details.

What's Changed

... (truncated)

Changelog

Sourced from bedrock-agentcore's changelog.

[1.6.3] - 2026-04-16

Fixed

  • fix: validate region parameter to prevent SSRF request redirection (#417) (640b3ad)

[1.6.2] - 2026-04-13

Fixed

  • fix: make agentcore-worker-loop compatible with OTEL threading instrumentation (#405) (1235897)

Other Changes

  • fix(ci): increase memory integration test timeout to 15 minutes (#401) (180a7c5)

[1.6.1] - 2026-04-10

Added

  • feat: add read_only flag to AgentCoreMemorySessionManager to disable ACM persistence (#389) (215b5bd)

Fixed

  • fix: replace blocklist with allowlist for install_packages() package validation (#403) (ed953b5)
  • fix: skip integration tests for Dependabot and remove missing label (#382) (4ebfdcb)
  • fix: pin griffe version and fix ExplanationStyle attribute error (#381) (2bdb9f1)

Other Changes

  • chore(deps): bump boto3 and botocore minimum to 1.42.86 (#399) (df9a21d)
  • fix(ci): add pytest-rerunfailures to integration test dependencies (#400) (5ccb283)
Commits
  • 625d8ec Release v1.6.3 (#421)
  • 640b3ad fix: validate region parameter to prevent SSRF request redirection (#417)
  • b8dc751 Release v1.6.2 (#411)
  • 1235897 fix: make agentcore-worker-loop compatible with OTEL threading instrumentatio...
  • 180a7c5 fix(ci): increase memory integration test timeout to 15 minutes (#401)
  • 5759f54 chore: bump version to 1.6.1 (#404)
  • ed953b5 fix: replace blocklist with allowlist for install_packages() package validati...
  • df9a21d chore(deps): bump boto3 and botocore minimum to 1.42.86 (#399)
  • 5ccb283 fix(ci): add pytest-rerunfailures to integration test dependencies (#400)
  • 215b5bd feat: add read_only flag to AgentCoreMemorySessionManager to disable ACM pers...
  • Additional commits viewable in compare view

Updates openai from 2.30.0 to 2.32.0

Release notes

Sourced from openai's releases.

v2.32.0

2.32.0 (2026-04-15)

Full Changelog: v2.31.0...v2.32.0

Features

  • api: Add detail to InputFileContent (60de21d)
  • api: add OAuthErrorCode type (0c8d2c3)
  • client: add event handler implementation for websockets (0280d05)
  • client: allow enqueuing to websockets even when not connected (67aa20e)
  • client: support reconnection in websockets (eb72a95)

Bug Fixes

  • ensure file data are only sent as 1 parameter (c0c2ecd)

Documentation

v2.31.0

2.31.0 (2026-04-08)

Full Changelog: v2.30.0...v2.31.0

Features

  • api: add phase field to conversations message (3e5834e)
  • api: add web_search_call.results to ResponseIncludable type (ffd8741)
  • client: add support for short-lived tokens (#1608) (22fe722)
  • client: support sending raw data over websockets (f1bc52e)
  • internal: implement indices array format for query and form serialization (49194cf)

Bug Fixes

  • client: preserve hardcoded query params when merging with user params (92e109c)
  • types: remove web_search_call.results from ResponseIncludable (d3cc401)

Chores

  • tests: bump steady to v0.20.1 (d60e2ee)
  • tests: bump steady to v0.20.2 (6508d47)

Documentation

... (truncated)

Changelog

Sourced from openai's changelog.

2.32.0 (2026-04-15)

Full Changelog: v2.31.0...v2.32.0

Features

  • api: Add detail to InputFileContent (60de21d)
  • api: add OAuthErrorCode type (0c8d2c3)
  • client: add event handler implementation for websockets (0280d05)
  • client: allow enqueuing to websockets even when not connected (67aa20e)
  • client: support reconnection in websockets (eb72a95)

Bug Fixes

  • ensure file data are only sent as 1 parameter (c0c2ecd)

Documentation

2.31.0 (2026-04-08)

Full Changelog: v2.30.0...v2.31.0

Features

  • api: add phase field to conversations message (3e5834e)
  • api: add web_search_call.results to ResponseIncludable type (ffd8741)
  • client: add support for short-lived tokens (#1608) (22fe722)
  • client: support sending raw data over websockets (f1bc52e)
  • internal: implement indices array format for query and form serialization (49194cf)

Bug Fixes

  • client: preserve hardcoded query params when merging with user params (92e109c)
  • types: remove web_search_call.results from ResponseIncludable (d3cc401)

Chores

  • tests: bump steady to v0.20.1 (d60e2ee)
  • tests: bump steady to v0.20.2 (6508d47)

Documentation

  • api: update file parameter descriptions in vector_stores files and file_batches (a9e7ebd)
Commits
  • e507a4e release: 2.32.0 (#3074)
  • 750354e release: 2.31.0
  • 5be9536 feat(client): add support for short-lived tokens (#1608)
  • f1fd4fa feat(client): support sending raw data over websockets
  • 73ea2f7 fix(client): preserve hardcoded query params when merging with user params
  • 454b257 feat(api): add web_search_call.results to ResponseIncludable type
  • de2c7b1 chore(tests): bump steady to v0.20.2
  • 6efca95 chore(tests): bump steady to v0.20.1
  • 2076d85 feat(api): add phase field to conversations message
  • c0c59af fix(types): remove web_search_call.results from ResponseIncludable
  • Additional commits viewable in compare view

Updates google-genai from 1.70.0 to 1.73.1

Release notes

Sourced from google-genai's releases.

v1.73.1

1.73.1 (2026-04-14)

Bug Fixes

  • Refactor Webhook types in GenAI SDKs for easier useage (3f36ca1)
  • Rename webhooks.retrieve to webhooks.get. (649f4b0)

Documentation

  • Update python docs for 1.73.0 (acd3767)

v1.73.0

1.73.0 (2026-04-13)

[!CAUTION] CRITICAL WARNING: Do not use this version if you are implementing or relying on webhooks. This release contains known issues regarding webhook sdk. Please use v1.73.1 or later.

Features

  • Add DeepResearchAgentConfig fields (ec8ca87)
  • Add webhook and webhookConfig for js and python sdk (ccec350)
  • Add webhook_config to batches.create() and models.generate_videos() (772d2fc)
  • Wire the webhook into python and js client. (841bf22)

Bug Fixes

  • Refine Pyink blank line insertion logic and fix range-based formatting regressions. (b91bda5)

Documentation

  • Update python docs for 1.72.0 (68ed088)

v1.72.0

1.72.0 (2026-04-09)

Features

  • Add "eu" as a supported service location for Vertex AI platform. (888a731)
  • Add Live Avatar new fields (ad1777e)
  • Add support for new audio MIME types: opus, alaw, and mulaw (74eb373)
  • Add the delete method for the Agent Engine Task Store Service (d821082)

Documentation

... (truncated)

Changelog

Sourced from google-genai's changelog.

1.73.1 (2026-04-14)

Bug Fixes

  • Refactor Webhook types in GenAI SDKs for easier useage (3f36ca1)
  • Rename webhooks.retrieve to webhooks.get. (649f4b0)

Documentation

  • Update python docs for 1.73.0 (acd3767)

1.73.0 (2026-04-13)

Features

  • Add DeepResearchAgentConfig fields (ec8ca87)
  • Add webhook and webhookConfig for js and python sdk (ccec350)
  • Add webhook_config to batches.create() and models.generate_videos() (772d2fc)
  • Wire the webhook into python and js client. (841bf22)

Bug Fixes

  • Refine Pyink blank line insertion logic and fix range-based formatting regressions. (b91bda5)

1.72.0 (2026-04-09)

Features

  • Add "eu" as a supported service location for Vertex AI platform. (888a731)
  • Add Live Avatar new fields (ad1777e)
  • Add support for new audio MIME types: opus, alaw, and mulaw (74eb373)
  • Add the delete method for the Agent Engine Task Store Service (d821082)

Documentation

  • Update python docs for 1.71.0 (e82f9fc)

1.71.0 (2026-04-08)

Features

  • Introduce TYPE_L16 audio content and optional fields. (07e932f)

... (truncated)

Commits
  • 6066cca chore(main): release 1.73.1 (#2276)
  • 649f4b0 fix: Rename webhooks.retrieve to webhooks.get.
  • 2ea71e4 chore: use type hints to resolve mypy errors
  • 3f36ca1 fix: Refactor Webhook types in GenAI SDKs for easier useage
  • acd3767 docs: Update python docs for 1.73.0
  • 069e223 chore(main): release 1.73.0 (#2260)
  • 44387b8 test: Add replay test for EU multi-regional routing in GenAI SDK
  • 91506ea chore: internal change
  • 772d2fc feat: Add webhook_config to batches.create() and models.generate_videos()
  • b91bda5 fix: Refine Pyink blank line insertion logic and fix range-based formatting r...
  • Additional commits viewable in compare view

Updates pytest from 9.0.2 to 9.0.3

Release notes

Sourced from pytest's releases.

9.0.3

pytest 9.0.3 (2026-04-07)

Bug fixes

  • #12444: Fixed pytest.approx which now correctly takes into account ~collections.abc.Mapping keys order to compare them.

  • #13634: Blocking a conftest.py file using the -p no: option is now explicitly disallowed.

    Previously this resulted in an internal assertion failure during plugin loading.

    Pytest now raises a clear UsageError explaining that conftest files are not plugins and cannot be disabled via -p.

  • #13734: Fixed crash when a test raises an exceptiongroup with __tracebackhide__ = True.

  • #14195: Fixed an issue where non-string messages passed to unittest.TestCase.subTest() were not printed.

  • #14343: Fixed use of insecure temporary directory (CVE-2025-71176).

Improved documentation

  • #13388: Clarified documentation for -p vs PYTEST_PLUGINS plugin loading and fixed an incorrect -p example.
  • #13731: Clarified that capture fixtures (e.g. capsys and capfd) take precedence over the -s / --capture=no command-line options in Accessing captured output from a test function <accessing-captured-output>.
  • #14088: Clarified that the default pytest_collection hook sets session.items before it calls pytest_collection_finish, not after.
  • #14255: TOML integer log levels must be quoted: Updating reference documentation.

Contributor-facing changes

  • #12689: The test reports are now published to Codecov from GitHub Actions. The test statistics is visible on the web ...

    Description has been truncated

…ry with 13 updates

Bumps the python-minor-patch group with 13 updates in the /backend directory:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.135.3` | `0.136.0` |
| [boto3](https://github.com/boto/boto3) | `1.42.83` | `1.42.91` |
| [authlib](https://github.com/authlib/authlib) | `1.6.9` | `1.7.0` |
| [strands-agents](https://github.com/strands-agents/sdk-python) | `1.34.1` | `1.36.0` |
| [strands-agents-tools](https://github.com/strands-agents/tools) | `0.3.0` | `0.5.0` |
| [aws-opentelemetry-distro](https://github.com/aws-observability/aws-otel-python-instrumentation) | `0.16.0` | `0.17.0` |
| [bedrock-agentcore](https://github.com/aws/bedrock-agentcore-sdk-python) | `1.6.0` | `1.6.3` |
| [openai](https://github.com/openai/openai-python) | `2.30.0` | `2.32.0` |
| [google-genai](https://github.com/googleapis/python-genai) | `1.70.0` | `1.73.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `9.0.2` | `9.0.3` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.151.11` | `6.152.1` |
| [ruff](https://github.com/astral-sh/ruff) | `0.15.9` | `0.15.11` |
| [mypy](https://github.com/python/mypy) | `1.20.0` | `1.20.1` |



Updates `fastapi` from 0.135.3 to 0.136.0
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.135.3...0.136.0)

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

Updates `authlib` from 1.6.9 to 1.7.0
- [Release notes](https://github.com/authlib/authlib/releases)
- [Commits](authlib/authlib@v1.6.9...v1.7.0)

Updates `strands-agents` from 1.34.1 to 1.36.0
- [Release notes](https://github.com/strands-agents/sdk-python/releases)
- [Commits](strands-agents/sdk-python@v1.34.1...v1.36.0)

Updates `strands-agents-tools` from 0.3.0 to 0.5.0
- [Release notes](https://github.com/strands-agents/tools/releases)
- [Commits](strands-agents/tools@v0.3.0...v0.5.0)

Updates `aws-opentelemetry-distro` from 0.16.0 to 0.17.0
- [Release notes](https://github.com/aws-observability/aws-otel-python-instrumentation/releases)
- [Changelog](https://github.com/aws-observability/aws-otel-python-instrumentation/blob/main/CHANGELOG.md)
- [Commits](https://github.com/aws-observability/aws-otel-python-instrumentation/commits)

Updates `bedrock-agentcore` from 1.6.0 to 1.6.3
- [Release notes](https://github.com/aws/bedrock-agentcore-sdk-python/releases)
- [Changelog](https://github.com/aws/bedrock-agentcore-sdk-python/blob/main/CHANGELOG.md)
- [Commits](aws/bedrock-agentcore-sdk-python@v1.6.0...v1.6.3)

Updates `openai` from 2.30.0 to 2.32.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@v2.30.0...v2.32.0)

Updates `google-genai` from 1.70.0 to 1.73.1
- [Release notes](https://github.com/googleapis/python-genai/releases)
- [Changelog](https://github.com/googleapis/python-genai/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-genai@v1.70.0...v1.73.1)

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

Updates `hypothesis` from 6.151.11 to 6.152.1
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.151.11...hypothesis-python-6.152.1)

Updates `ruff` from 0.15.9 to 0.15.11
- [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.9...0.15.11)

Updates `mypy` from 1.20.0 to 1.20.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.20.0...v1.20.1)

---
updated-dependencies:
- dependency-name: fastapi
  dependency-version: 0.136.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-patch
- dependency-name: boto3
  dependency-version: 1.42.91
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-minor-patch
- dependency-name: authlib
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-patch
- dependency-name: strands-agents
  dependency-version: 1.36.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-minor-patch
- dependency-name: strands-agents-tools
  dependency-version: 0.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-minor-patch
- dependency-name: aws-opentelemetry-distro
  dependency-version: 0.17.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-minor-patch
- dependency-name: bedrock-agentcore
  dependency-version: 1.6.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-minor-patch
- dependency-name: openai
  dependency-version: 2.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-minor-patch
- dependency-name: google-genai
  dependency-version: 1.73.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-minor-patch
- dependency-name: pytest
  dependency-version: 9.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-minor-patch
- dependency-name: hypothesis
  dependency-version: 6.152.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-minor-patch
- dependency-name: ruff
  dependency-version: 0.15.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-minor-patch
- dependency-name: mypy
  dependency-version: 1.20.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Apr 20, 2026

Labels

The following labels could not be found: backend, security. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Apr 20, 2026
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants