Skip to content

chore(deps): update uv: bump the uv-version-updates group across 1 directory with 11 updates#277

Merged
arnewouters merged 3 commits into
mainfrom
dependabot/uv/uv-version-updates-b75a14f177
May 11, 2026
Merged

chore(deps): update uv: bump the uv-version-updates group across 1 directory with 11 updates#277
arnewouters merged 3 commits into
mainfrom
dependabot/uv/uv-version-updates-b75a14f177

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 11, 2026

Bumps the uv-version-updates group with 10 updates in the / directory:

Package From To
boto3 1.43.2 1.43.6
mypy 1.20.2 2.0.0
commitizen 4.15.0 4.15.1
agent-framework 1.0.0b251211 1.3.0
langchain 1.2.0 1.2.18
langchain-aws 1.1.0 1.4.6
langchain-mcp-adapters 0.2.1 0.2.2
llama-index 0.14.10 0.14.21
llama-index-tools-mcp 0.4.4 0.4.8
strands-agents 1.19.0 1.39.0

Updates boto3 from 1.43.2 to 1.43.6

Commits

Updates mypy from 1.20.2 to 2.0.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Mypy 2.0

We’ve just uploaded mypy 2.0.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. There are also changes to options and defaults. 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.

Enable --local-partial-types by Default

This flag affects the inference of types based on assignments in other scopes. For now, explicitly disabling this continues to be supported, but this support will be removed in the future as the legacy behaviour is hard to support with other current and future features in mypy, like the daemon or the new implementation of flexible redefinitions.

Contributed by Ivan Levkivskyi, Jukka Lehtosalo, Shantanu in PR 21163.

Enable --strict-bytes by Default

Per PEP 688, mypy no longer treats bytearray and memoryview values as assignable to the bytes type.

Contributed by Shantanu in PR 18371.

New Behavior for --allow-redefinition

The --allow-redefinition flag now behaves like --allow-redefinition-new in mypy 1.20 and earlier. The new behavior is generally more flexible. For example, you can have different types for a variable in different blocks:

# mypy: allow-redefinition
def foo(cond: bool) -> None:
if cond:
for x in ["a", "b"]:
# Type of "x" is "str" here
...
else:
for x in [1, 2]:
# Type of "x" is "int" here
...

... (truncated)

Commits

Updates commitizen from 4.15.0 to 4.15.1

Release notes

Sourced from commitizen's releases.

v4.15.1 (2026-05-06)

Fix

  • security: prevent command injection via shell=True (CWE-78) (#1941)
Commits
  • efb1a7d bump: version 4.15.0 → 4.15.1
  • 0cc88a5 fix(security): prevent command injection via shell=True (CWE-78) (#1941)
  • 509ef91 docs(cli/screenshots): update CLI screenshots
  • 9b53b63 ci: rebase before push in screenshots workflow (#1942)
  • bdcf27b docs(cli/screenshots): update CLI screenshots
  • See full diff in compare view

Updates agent-framework from 1.0.0b251211 to 1.3.0

Release notes

Sourced from agent-framework's releases.

python-1.3.0

[1.3.0] - 2026-05-07

Added

  • agent-framework-core: Add ClassSkill for class-based skill definitions with declarative metadata and automatic method discovery (#5678)
  • agent-framework-core: Add experimental session-mode harness context provider (#5611)
  • agent-framework-core: Add experimental todo-list harness context provider (#5612)
  • agent-framework-core: Add experimental memory harness context provider (#5613)
  • agent-framework-core: Notify agent of external AgentModeProvider mode changes (#5650)
  • agent-framework-core: Information-flow control prompt injection defense (#5331)
  • agent-framework-openai: Support OpenAI and Gemini allowed_tools tool choice (#5322)
  • agent-framework-openai: Support GPT-5 verbosity option and restore Foundry agent_reference (#5619)
  • agent-framework-anthropic: Add base_url parameter to AnthropicClient and RawAnthropicClient (#5685)
  • agent-framework-foundry-hosting: Add support for function approval flow in Foundry hosted agent (#5666)
  • agent-framework-declarative: Add Python parity for InvokeMcpTool in declarative workflow (#5630)
  • agent-framework-declarative: Add Python parity for HttpRequestAction in declarative workflow (#5599)
  • agent-framework-claude, agent-framework-github-copilot: Enforce approval_mode in Claude and GitHub Copilot agents (#5562)
  • agent-framework-github-copilot: Upgrade github-copilot-sdk to v1.0.0b2 with instruction_directories, copilot_home, and runtime options forwarding on session resume (#5665)
  • samples: Add hosted agent sample with observability (#5608)
  • samples: Add sample for hosted agent with files (#5596)

Changed

  • agent-framework-core: [BREAKING — experimental skills API] Restructure agent skills to use multi-source architecture (#5584)
  • agent-framework-foundry: Remove bespoke Foundry toolbox helpers; standardize on MCP for toolbox consumption (#5671)

Fixed

  • agent-framework-core: Fix MCPStreamableHTTPTool leaking asyncio.CancelledError when MCP server is unreachable (#5687)
  • agent-framework-openai: Drop completed continuation_token from shared options in tool loop (#5462)
  • agent-framework-bedrock: Don't send toolChoice when no tools are configured (#5172)
  • agent-framework-hyperlight: Fix WasmSandbox cross-thread Drop and harden hosted-agent sample (#5603)
  • agent-framework-devui: Fix incorrect workflow timings by adding created_at to executor events (#5615)
  • agent-framework-foundry-hosting: Fix hosted MCP replay producing orphan function_call_output (#5581)

python-1.2.2

[1.2.2] - 2026-04-29

Added

  • agent-framework-azure-contentunderstanding: New alpha package — Azure AI Content Understanding context provider that auto-analyzes file attachments (documents, images, audio, video) and injects structured results into the LLM context, with multi-document session state, configurable timeout, output filtering via AnalysisSection, and auto-registered list_documents / get_analyzed_document tools (#4829)
  • agent-framework-foundry-hosting: Add hosted Durable Workflow support — propagate full conversation history to workflow agents and wire Workflow.as_agent() end-to-end via the foundry hosting layer (#5531)

Changed

  • agent-framework-orchestrations: [BREAKING] Standardize orchestration terminal outputs as AgentResponse so Workflow.as_agent() returns the final answer only; aligns sequential-approval (with_request_info) and concurrent (intermediate_outputs=True) flows on the same output contract (#5301)
  • agent-framework-core, agent-framework-declarative: Preserve Workflow.run() shared state across calls so multi-turn WorkflowAgent invocations retain context, accept list[Message] input in the declarative start executor, and coerce Enum values when serializing PowerFx symbols (#5531)
  • dependencies: Update workspace package dependencies and preserve mcp[ws] / uvicorn[standard] extras through override-dependencies in /python (#5555)

Fixed

  • agent-framework-core: Fix observability spans not being correctly nested when using streaming (#5552)
  • agent-framework-openai: Fix file_search citations breaking the assistant-message history roundtrip — skip hosted_file content in the assistant role so the Responses API no longer rejects input_file (#5557)

Full Changelog: microsoft/agent-framework@python-1.2.1...python-1.2.2

... (truncated)

Commits
  • 63c0a51 Python: Add OpenTelemetry integration for GitHubCopilotAgent (#5142)
  • b00465d Python: feat: Add Agent Framework to A2A bridge support (#2403)
  • 4adfd24 Python: Upgrade hosting server dependency and add more type support (#5459)
  • 932cedd Python: Fix AG-UI reasoning role and multimodal media parsing to follow speci...
  • 0989e68 Python: Fix user agent prefix (#5455)
  • b084d04 Python: (foundry): stop emitting [TOOLBOXES] warning for every FoundryChatCli...
  • 5fe8941 .NET: dotnet: Add server-side Foundry Toolbox support and fix SDK beta.4 br… ...
  • 0dbcc9f .NET: Add streaming support to A2A agent handler (#5427)
  • 4d3e4f8 Update versions for release (#5449)
  • 69adf6d .NET: Fix off-thread RunStatus race where GetStatusAsync can return Running a...
  • Additional commits viewable in compare view

Updates langchain from 1.2.0 to 1.2.18

Release notes

Sourced from langchain's releases.

langchain-core==1.2.18

Changes since langchain-core==1.2.17

release(core): 1.2.18 (#35704) fix(core): fix double backticks in deprecation docstring for alternative_import (#35658) fix(core): preserve default_factory when generating tool call schema (#35550) feat(openai): support tool search (#35582) chore: bump the minor-and-patch group across 3 directories with 7 updates (#35605)

langchain==1.2.18

Changes since langchain==1.2.17

release(langchain): 1.2.18 (#37250) revert: feat(langchain): ls_agent_type tag on create_agent calls (#37249) chore(langchain-classic): deprecate hub, limit loads/dumps (#37234) refactor(langchain-classic): retarget deprecations to create_agent, other chores (#37164) chore(langchain,langchain-classic): uncomment optional deps (#37163) release(fireworks): 1.2.1 (#37113)

langchain-core==1.2.17

Changes since langchain-core==1.2.16

release(core): 1.2.17 (#35527) fix(core): extract usage metadata from serialized tracer message outputs (#35526) chore: bump the langchain-deps group across 3 directories with 7 updates (#35513) chore: bump the langchain-deps group across 3 directories with 14 updates (#35441)

langchain==1.2.17

Changes since langchain==1.2.16

release(langchain): 1.2.17 (#37110) feat(langchain): add respond decision to HITL middleware (#37095)

langchain-core==1.2.16

Changes since langchain-core==1.2.15

release(core): 1.2.16 (#35439) fix(core): treat empty tool chunk ids as missing in merge (#35414)

langchain==1.2.16

Changes since langchain==1.2.15

release(langchain): 1.2.16 (#37085) chore(docs): update x handle references (#37081) release(anthropic): 1.4.2 (#37061) perf(langchain): stop inlining agent state into tool-dispatch Sends (#36960) docs(langchain): correct import paths in agent middleware docstrings (#36987) hotfix: bump min core versions (#36996) release(openai): 1.2.1 (#36995) feat(core): add content-block-centric streaming (v2) (#36834)

... (truncated)

Commits
  • 4c593b3 release(langchain): 1.2.18 (#37250)
  • 9c48a12 revert: feat(langchain): ls_agent_type tag on create_agent calls (#37249)
  • 85a5a04 chore: bump mistune from 3.1.4 to 3.2.1 in /libs/text-splitters (#37235)
  • 2fe237a chore: bump mistune from 3.1.4 to 3.2.1 in /libs/langchain (#37236)
  • 1662347 chore: bump mistune from 3.1.4 to 3.2.1 in /libs/core (#37237)
  • ec9a3c1 release(langchain-classic): 1.0.7 (#37240)
  • 3de039a chore(model-profiles): refresh model profile data (#37231)
  • cccefce chore(langchain-classic): deprecate hub, limit loads/dumps (#37234)
  • 1519ed5 release(langchain-classic): 1.0.6 (#37211)
  • 16b7e43 chore: bump jupyter-server from 2.17.0 to 2.18.0 in /libs/text-splitters (#37...
  • Additional commits viewable in compare view

Updates langchain-aws from 1.1.0 to 1.4.6

Release notes

Sourced from langchain-aws's releases.

langchain-aws==1.4.6

What's Changed

Full Changelog: langchain-ai/langchain-aws@langchain-aws==1.4.5...langchain-aws==1.4.6

langchain-aws==1.4.5

What's Changed

Full Changelog: langchain-ai/langchain-aws@langchain-aws==1.4.4...langchain-aws==1.4.5

langchain-aws==1.4.4

What's Changed

New Contributors

Full Changelog: langchain-ai/langchain-aws@langchain-agentcore-codeinterpreter==0.0.2...langchain-aws==1.4.4

langchain-aws==1.4.3

What's Changed

... (truncated)

Commits
  • 011cffa release(aws): 1.4.6 (#1024)
  • 48cded1 fix(aws): include cache reads and writes in input token counts (#1023)
  • 4eb2ed6 chore(model-profiles): refresh model profile data (#1012)
  • 6aeb1dd chore: bump langchain-text-splitters from 1.1.1 to 1.1.2 in /libs/aws in the ...
  • 1b1847d chore: bump langchain-core min to 1.3.2 (#1017)
  • 608a413 release(aws): 1.4.5 (#1014)
  • 11c5c13 fix: Avoid polluting environemnt with bedrock bearer token when possible (#1013)
  • 577222a fix(aws): Add ls_provider to message response_metadata (#981)
  • ea22fe3 chore(model-profiles): refresh model profile data (#1011)
  • 6f2c135 chore(model-profiles): refresh model profile data (#1009)
  • Additional commits viewable in compare view

Updates langchain-mcp-adapters from 0.2.1 to 0.2.2

Release notes

Sourced from langchain-mcp-adapters's releases.

langchain-mcp-adapters==0.2.2

What's Changed

New Contributors

Full Changelog: langchain-ai/langchain-mcp-adapters@langchain-mcp-adapters==0.2.1...langchain-mcp-adapters==0.2.2

Commits
  • fa2a083 release: 0.2.2 (#440)
  • bdfe8d9 fix: resolve ${VAR} env variable references in stdio config (#438)
  • df0bd8c build(deps): bump the uv group across 1 directory with 2 updates (#433)
  • 3f48e5a build(deps): bump actions/upload-artifact from 6 to 7 (#428)
  • db004a8 build(deps): bump actions/download-artifact from 7 to 8 (#427)
  • 141be26 build(deps): bump the uv group across 2 directories with 4 updates (#422)
  • ccdcfbe build(deps): bump the uv group across 2 directories with 6 updates (#415)
  • e6897f9 chore: pin ncipollo/release-action to v1.20.0 (#414)
  • f15d1b6 build(deps): bump actions/upload-artifact from 5 to 6 (#395)
  • c9a34fe build(deps): bump actions/download-artifact from 6 to 7 (#396)
  • Additional commits viewable in compare view

Updates llama-index from 0.14.10 to 0.14.21

Release notes

Sourced from llama-index's releases.

v0.14.21

Release Notes

[2026-04-21]

llama-index-callbacks-honeyhive [0.5.0]

  • chore(deps): bump the pip group across 87 directories with 2 updates (#21382)
  • chore(deps): bump the pip group across 68 directories with 2 updates (#21394)

llama-index-core [0.14.21]

  • fix(core): prevent KeyError in DocumentSummaryIndex.delete_nodes when invalid node ID is provided (#21067)
  • fix(core): handle ValueError and TypeError from structured output failures (#21090)
  • fix: add explicit UTF-8 encoding to persistence layer fs.open() calls (#21111)
  • Fix Breaking Change in Message Block Buffer Resolution (#21339)
  • chore(deps): bump the pip group across 87 directories with 2 updates (#21382)
  • chore(deps): bump the pip group across 68 directories with 2 updates (#21394)

llama-index-embeddings-huggingface-optimum [0.4.1]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-nvidia [0.5.1]

  • feat(embeddings-nvidia): add http client support (#21046)

llama-index-embeddings-oracleai [0.4.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-premai [0.5.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)
  • chore(deps): bump the pip group across 87 directories with 2 updates (#21382)
  • chore(deps): bump the pip group across 68 directories with 2 updates (#21394)

llama-index-embeddings-text-embeddings-inference [0.5.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-textembed [0.4.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-together [0.5.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-upstage [0.6.1]

... (truncated)

Changelog

Sourced from llama-index's changelog.

llama-index-core [0.14.21]

  • fix(core): prevent KeyError in DocumentSummaryIndex.delete_nodes when invalid node ID is provided (#21067)
  • fix(core): handle ValueError and TypeError from structured output failures (#21090)
  • fix: add explicit UTF-8 encoding to persistence layer fs.open() calls (#21111)
  • Fix Breaking Change in Message Block Buffer Resolution (#21339)
  • chore(deps): bump the pip group across 87 directories with 2 updates (#21382)
  • chore(deps): bump the pip group across 68 directories with 2 updates (#21394)

llama-index-embeddings-huggingface-optimum [0.4.1]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-nvidia [0.5.1]

  • feat(embeddings-nvidia): add http client support (#21046)

llama-index-embeddings-oracleai [0.4.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-premai [0.5.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)
  • chore(deps): bump the pip group across 87 directories with 2 updates (#21382)
  • chore(deps): bump the pip group across 68 directories with 2 updates (#21394)

llama-index-embeddings-text-embeddings-inference [0.5.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-textembed [0.4.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-together [0.5.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-upstage [0.6.1]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)
  • chore(deps): bump the pip group across 87 directories with 2 updates (#21382)
  • chore(deps): bump the pip group across 68 directories with 2 updates (#21394)

llama-index-embeddings-vertex [0.5.0]

  • chore(deps): bump the pip group across 96 directories with 2 updates (#21381)

llama-index-embeddings-vertex-endpoint [0.4.0]

... (truncated)

Commits
  • 931f56e Release 0.14.21 (#21427)
  • 17fba87 fix: add explicit UTF-8 encoding to persistence layer fs.open() calls (#21111)
  • 33f7ba4 Adds Google Gemma models and Bump version to 0.14.6 (#21380)
  • 38c1716 chore(deps): bump the pip group across 96 directories with 2 updates (#21381)
  • 7921256 chore(deps): bump the pip group across 87 directories with 2 updates (#21382)
  • ffc726f chore(deps): bump the pip group across 68 directories with 2 updates (#21394)
  • 91fe33e Fix Breaking Change in Message Block Buffer Resolution (#21339)
  • 10955bf fix: parse MistralAI structured ThinkChunk/TextChunk without regex (#20916)
  • 9eb4c2d fix: filter unknown kwargs before VectorStoreQuery construction (#14557) (#21...
  • a61f2cf fix(core): handle ValueError and TypeError from structured output failure...
  • Additional commits viewable in compare view

Updates llama-index-llms-openai from 0.6.11 to 0.7.8

Updates llama-index-tools-mcp from 0.4.4 to 0.4.8

Updates strands-agents from 1.19.0 to 1.39.0

Release notes

Sourced from strands-agents's releases.

v1.39.0

What's Changed

New Contributors

Full Changelog: strands-agents/sdk-python@v1.38.0...v1.39.0

v1.38.0

What's Changed

…rectory with 11 updates

Bumps the uv-version-updates group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [boto3](https://github.com/boto/boto3) | `1.43.2` | `1.43.6` |
| [mypy](https://github.com/python/mypy) | `1.20.2` | `2.0.0` |
| [commitizen](https://github.com/commitizen-tools/commitizen) | `4.15.0` | `4.15.1` |
| [agent-framework](https://github.com/microsoft/agent-framework) | `1.0.0b251211` | `1.3.0` |
| [langchain](https://github.com/langchain-ai/langchain) | `1.2.0` | `1.2.18` |
| [langchain-aws](https://github.com/langchain-ai/langchain-aws) | `1.1.0` | `1.4.6` |
| [langchain-mcp-adapters](https://github.com/langchain-ai/langchain-mcp-adapters) | `0.2.1` | `0.2.2` |
| [llama-index](https://github.com/run-llama/llama_index) | `0.14.10` | `0.14.21` |
| llama-index-tools-mcp | `0.4.4` | `0.4.8` |
| [strands-agents](https://github.com/strands-agents/sdk-python) | `1.19.0` | `1.39.0` |



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

Updates `mypy` from 1.20.2 to 2.0.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.20.2...v2.0.0)

Updates `commitizen` from 4.15.0 to 4.15.1
- [Release notes](https://github.com/commitizen-tools/commitizen/releases)
- [Changelog](https://github.com/commitizen-tools/commitizen/blob/master/CHANGELOG.md)
- [Commits](commitizen-tools/commitizen@v4.15.0...v4.15.1)

Updates `agent-framework` from 1.0.0b251211 to 1.3.0
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.0b251211...dotnet-1.3.0)

Updates `langchain` from 1.2.0 to 1.2.18
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain==1.2.0...langchain==1.2.18)

Updates `langchain-aws` from 1.1.0 to 1.4.6
- [Release notes](https://github.com/langchain-ai/langchain-aws/releases)
- [Commits](langchain-ai/langchain-aws@langchain-aws==1.1.0...langchain-aws==1.4.6)

Updates `langchain-mcp-adapters` from 0.2.1 to 0.2.2
- [Release notes](https://github.com/langchain-ai/langchain-mcp-adapters/releases)
- [Commits](langchain-ai/langchain-mcp-adapters@langchain-mcp-adapters==0.2.1...langchain-mcp-adapters==0.2.2)

Updates `llama-index` from 0.14.10 to 0.14.21
- [Release notes](https://github.com/run-llama/llama_index/releases)
- [Changelog](https://github.com/run-llama/llama_index/blob/main/CHANGELOG.md)
- [Commits](run-llama/llama_index@v0.14.10...v0.14.21)

Updates `llama-index-llms-openai` from 0.6.11 to 0.7.8

Updates `llama-index-tools-mcp` from 0.4.4 to 0.4.8

Updates `strands-agents` from 1.19.0 to 1.39.0
- [Release notes](https://github.com/strands-agents/sdk-python/releases)
- [Commits](strands-agents/sdk-python@v1.19.0...v1.39.0)

---
updated-dependencies:
- dependency-name: boto3
  dependency-version: 1.43.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: uv-version-updates
- dependency-name: mypy
  dependency-version: 2.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: uv-version-updates
- dependency-name: commitizen
  dependency-version: 4.15.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: uv-version-updates
- dependency-name: agent-framework
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv-version-updates
- dependency-name: langchain
  dependency-version: 1.2.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: uv-version-updates
- dependency-name: langchain-aws
  dependency-version: 1.4.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv-version-updates
- dependency-name: langchain-mcp-adapters
  dependency-version: 0.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: uv-version-updates
- dependency-name: llama-index
  dependency-version: 0.14.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: uv-version-updates
- dependency-name: llama-index-llms-openai
  dependency-version: 0.7.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv-version-updates
- dependency-name: llama-index-tools-mcp
  dependency-version: 0.4.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: uv-version-updates
- dependency-name: strands-agents
  dependency-version: 1.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv-version-updates
...

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 May 11, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 11, 2026 08:57
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 11, 2026
@dependabot dependabot Bot requested review from JacquesPotgieter and wzxxing May 11, 2026 08:57
@dependabot dependabot Bot added the python:uv Pull requests that update python:uv code label May 11, 2026
@arnewouters arnewouters enabled auto-merge (squash) May 11, 2026 12:31
@arnewouters arnewouters merged commit 690599e into main May 11, 2026
8 checks passed
@arnewouters arnewouters deleted the dependabot/uv/uv-version-updates-b75a14f177 branch May 11, 2026 13:03
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.

2 participants