Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2025

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

Package From To
google-genai 1.51.0 1.56.0
pydantic 2.12.4 2.12.5
google-adk 1.19.0 1.21.0
pymupdf 1.26.6 1.26.7
reportlab 4.4.5 4.4.7
dulwich 0.24.10 0.25.0
qdrant-client 1.15.1 1.16.2
slack-sdk 3.38.0 3.39.0
pytest 9.0.1 9.0.2
ruff 0.14.5 0.14.10

Updates google-genai from 1.51.0 to 1.56.0

Release notes

Sourced from google-genai's releases.

v1.56.0

1.56.0 (2025-12-16)

Features

  • Add minimal and medium thinking levels. (96d644c)
  • Add support for Struct in ToolResult Content. (8fd4886)
  • Add ultra high resolution to the media resolution in Parts. (356c320)
  • Add ULTRA_HIGH MediaResolution and new ThinkingLevel enums (336b823)
  • Define and use DocumentMimeType for DocumentContent (dc7f00f)
  • Support multi speaker for Vertex AI (ecb00c2)

Bug Fixes

  • Api version handling for interactions. (436ca2e)

Documentation

  • Add documentation for the new Interactions API (Preview). (e28a69c)
  • Update and restructure codegen_instructions (00422de)
  • Update docs for 1.55 (1cc43e7)

v1.55.0

1.55.0 (2025-12-11)

Features

  • Add the Interactions API (836a3)
  • Add enableEnhancedCivicAnswers feature in GenerateContentConfig (15d1ea9)
  • Add IMAGE_RECITATION and IMAGE_OTHER enum values to FinishReason (8bb4b9a)
  • Add voice activity detection signal. (feae46d)

Bug Fixes

  • Replicated voice config bytes handling (c9f8668)

Documentation

  • Regenerate docs for 1.54.0 (8bac8d2)

v1.54.0

1.54.0 (2025-12-08)

... (truncated)

Changelog

Sourced from google-genai's changelog.

1.56.0 (2025-12-16)

Features

  • Add minimal and medium thinking levels. (96d644c)
  • Add support for Struct in ToolResult Content. (8fd4886)
  • Add ultra high resolution to the media resolution in Parts. (356c320)
  • Add ULTRA_HIGH MediaResolution and new ThinkingLevel enums (336b823)
  • Define and use DocumentMimeType for DocumentContent (dc7f00f)
  • Support multi speaker for Vertex AI (ecb00c2)

Bug Fixes

  • Api version handling for interactions. (436ca2e)

Documentation

  • Add documentation for the new Interactions API (Preview). (e28a69c)
  • Update and restructure codegen_instructions (00422de)
  • Update docs for 1.55 (1cc43e7)

1.55.0 (2025-12-11)

Features

  • Add the Interactions API (836a3)
  • Add enableEnhancedCivicAnswers feature in GenerateContentConfig (15d1ea9)
  • Add IMAGE_RECITATION and IMAGE_OTHER enum values to FinishReason (8bb4b9a)
  • Add voice activity detection signal. (feae46d)

Bug Fixes

  • Replicated voice config bytes handling (c9f8668)

Documentation

  • Regenerate docs for 1.54.0 (8bac8d2)

1.54.0 (2025-12-08)

Features

  • Support ReplicatedVoiceConfig (07c74dd)

... (truncated)

Commits
  • 7d92395 chore(main): release 1.56.0 (#1850)
  • e247e3b chore: lazy import yaml in types.py
  • 336b823 feat: Add ULTRA_HIGH MediaResolution and new ThinkingLevel enums
  • dc7f00f feat: Define and use DocumentMimeType for DocumentContent
  • 5749e22 chore: Cleanup type fields
  • 3472650 chore: Fix interactions paths
  • 31f80d7 chore: Increase required version of google-auth.
  • 96d644c feat: Add minimal and medium thinking levels.
  • 356c320 feat: Add ultra high resolution to the media resolution in Parts.
  • 4385e16 feat: Add minimal and medium thinking levels.
  • Additional commits viewable in compare view

Updates pydantic from 2.12.4 to 2.12.5

Release notes

Sourced from pydantic's releases.

v2.12.5 2025-11-26

v2.12.5 (2025-11-26)

This is the fifth 2.12 patch release, addressing an issue with the MISSING sentinel and providing several documentation improvements.

The next 2.13 minor release will be published in a couple weeks, and will include a new polymorphic serialization feature addressing the remaining unexpected changes to the serialize as any behavior.

  • Fix pickle error when using model_construct() on a model with MISSING as a default value by @​ornariece in #12522.
  • Several updates to the documentation by @​Viicos.

Full Changelog: pydantic/pydantic@v2.12.4...v2.12.5

Changelog

Sourced from pydantic's changelog.

v2.12.5 (2025-11-26)

GitHub release

This is the fifth 2.12 patch release, addressing an issue with the MISSING sentinel and providing several documentation improvements.

The next 2.13 minor release will be published in a couple weeks, and will include a new polymorphic serialization feature addressing the remaining unexpected changes to the serialize as any behavior.

  • Fix pickle error when using model_construct() on a model with MISSING as a default value by @​ornariece in #12522.
  • Several updates to the documentation by @​Viicos.
Commits
  • bd2d0dd Prepare release v2.12.5
  • 7d0302e Document security implications when using create_model()
  • e9ef980 Fix typo in Standard Library Types documentation
  • f2c20c0 Add pydantic-docs dev dependency, make use of versioning blocks
  • a76c1aa Update documentation about JSON Schema
  • 8cbc72c Add documentation about custom __init__()
  • 99eba59 Add additional test for FieldInfo.get_default()
  • c710769 Special case MISSING sentinel in smart_deepcopy()
  • 20a9d77 Do not delete mock validator/serializer in rebuild_dataclass()
  • c86515a Update parts of the model and revalidate_instances documentation
  • See full diff in compare view

Updates google-adk from 1.19.0 to 1.21.0

Release notes

Sourced from google-adk's releases.

Release 1.21.0

1.21.0 (2025-12-11)

Features

  • [Interactions API Support]

    • The newly released Gemini Interactions API is supported in ADK Now. To use it:
    Agent(
      model=Gemini(
          model="gemini-3-pro-preview",
          use_interactions_api=True,
      ),
      name="...",
      description="...",
      instruction="...",
    )

    see samples for details

  • [Services]

    • Add add_session_to_memory to CallbackContext and ToolContext to explicitly save the current session to memory (7b356dd)
  • [Plugins]

    • Add location for table in agent events in plugin BigQueryAgentAnalytics (507424a)
    • Upgrade BigQueryAgentAnalyticsPlugin to v2.0 with improved performance, multimodal support, and reliability (7b2fe14)
  • [A2A]

    • Adds ADK EventActions to A2A response (32e87f6)
  • [Tools]

    • Add header_provider to OpenAPIToolset and RestApiTool (e1a7593)
    • Allow overriding connection template (cde7f7c)
    • Add SSL certificate verification configuration to OpenAPI tools using the verify parameter (9d2388a)
    • Use json schema for function tool declaration when feature enabled (cb3244b)
  • [Models]

    • Add Gemma3Ollama model integration and a sample (e9182e5)

Bug Fixes

  • Install dependencies for py 3.10 (9cccab4)
  • Refactor LiteLLM response schema formatting for different models (894d8c6)
  • Resolve project and credentials before creating Spanner client (99f893a)
  • Avoid false positive "App name mismatch" warnings in Runner (6388ba3)
  • Update the code to work with either 1 event or more than 1 events (4f54660)
  • OpenAPI schema generation by skipping JSON schema for judge_model_config (56775af)
  • Add tool_name_prefix support to OpenAPIToolset (82e6623)

... (truncated)

Changelog

Sourced from google-adk's changelog.

1.21.0 (2025-12-11)

Features

  • [Interactions API Support]

    • The newly released Gemini Interactions API is supported in ADK now. To use it:
    Agent(
      model=Gemini(
          model="gemini-3-pro-preview",
          use_interactions_api=True,
      ),
      name="...",
      description="...",
      instruction="...",
    )

    see samples for details

  • [Services]

    • Add add_session_to_memory to CallbackContext and ToolContext to explicitly save the current session to memory (7b356dd)
  • [Plugins]

    • Add location for table in agent events in plugin BigQueryAgentAnalytics (507424a)
    • Upgrade BigQueryAgentAnalyticsPlugin to v2.0 with improved performance, multimodal support, and reliability (7b2fe14)
  • [A2A]

    • Adds ADK EventActions to A2A response (32e87f6)
  • [Tools]

    • Add header_provider to OpenAPIToolset and RestApiTool (e1a7593)
    • Allow overriding connection template (cde7f7c)
    • Add SSL certificate verification configuration to OpenAPI tools using the verify parameter (9d2388a)
    • Use json schema for function tool declaration when feature enabled (cb3244b)
  • [Models]

    • Add Gemma3Ollama model integration and a sample (e9182e5)

Bug Fixes

  • Install dependencies for py 3.10 (9cccab4)
  • Refactor LiteLLM response schema formatting for different models (894d8c6)
  • Resolve project and credentials before creating Spanner client (99f893a)
  • Avoid false positive "App name mismatch" warnings in Runner (6388ba3)
  • Update the code to work with either 1 event or more than 1 events (4f54660)
  • OpenAPI schema generation by skipping JSON schema for judge_model_config (56775af)
  • Add tool_name_prefix support to OpenAPIToolset (82e6623)
  • Pass context to client interceptors (143ad44)

... (truncated)

Commits
  • 29c1115 chore: Bumps version to v1.21.0 and updates CHANGELOG.md
  • 60e314a fix: Update SQLite database URL for async connection
  • ee9b4ca feat: Add .yml to watched file extensions and add unit tests for AgentChangeE...
  • db711cd fix: Redirect LiteLLM logs from stderr to stdout
  • 055dfc7 fix: Normalize multipart content for LiteLLM's ollama_chat provider
  • df86847 chore: update adk web, fixes image not rendering, state not updating, update ...
  • 9cccab4 fix: installing dependencies for py 3.10
  • e1a7593 feat: Add header_provider to OpenAPIToolset and RestApiTool
  • cb3244b feat: Use json schema for function tool declaration when feature enabled
  • 894d8c6 fix: Refactor LiteLLM response schema formatting for different models
  • Additional commits viewable in compare view

Updates pymupdf from 1.26.6 to 1.26.7

Release notes

Sourced from pymupdf's releases.

PyMuPDF-1.26.7 released

Wheels for Windows, Linux and MacOS, and the sdist, are available on pypi.org and can be installed in the usual way, for example:

python -m pip install --upgrade pymupdf

[Linux-aarch64 wheels will be built and uploaded later.]

Changes in version 1.26.7

  • Use MuPDF-1.26.12.

Other:

  • Retrospectively mark #4756 as fixed in 1.26.6.
  • Improved safety of pymupdf embed-extract. This now refuses to write to an existing file or outside current directory, unless -output or new flag -unsafe is specified.
Changelog

Sourced from pymupdf's changelog.

Change Log

Changes in version 1.26.7

  • Use MuPDF-1.26.12.

Other:

  • Retrospectively mark 4756 <https://github.com/pymupdf/PyMuPDF/issues/4756>_ as fixed in 1.26.6.
  • Improved safety of pymupdf embed-extract. This now refuses to write to an existing file or outside current directory, unless -output or new flag -unsafe is specified.

Changes in version 1.26.6 (2025-11-05)

  • Use MuPDF-1.26.11.

  • Supported Python versions are now 3.10-3.14.

  • Fixed issues:

    • Fixed 4699 <https://github.com/pymupdf/PyMuPDF/issues/4699>_: cannot find ExtGState resource
    • Fixed 4712 <https://github.com/pymupdf/PyMuPDF/issues/4712>_: Crash with "corrupted double-linked list"
    • Fixed 4720 <https://github.com/pymupdf/PyMuPDF/issues/4720>_: Memory leaking in rewrite_images?
    • Fixed 4742 <https://github.com/pymupdf/PyMuPDF/issues/4742>_: 'Rect' object has no attribute 'get_area'
    • Fixed 4746 <https://github.com/pymupdf/PyMuPDF/issues/4746>_: Document.init() got an unexpected keyword argument 'encoding'
    • Fixed 4756 <https://github.com/pymupdf/PyMuPDF/issues/4756>_: swig --version doesn't work in all versions of swig; -version should be used instead

Changes in version 1.26.5 (2025-10-10)

  • Use MuPDF-1.26.10.

  • Fixed issues:

    • Fixed 2883 <https://github.com/pymupdf/PyMuPDF/issues/2883>_: Improve the Python type annotations for fitz_new
    • Fixed 4507 <https://github.com/pymupdf/PyMuPDF/issues/4507>_: Bugs in pyodide
    • Fixed 4613 <https://github.com/pymupdf/PyMuPDF/issues/4613>_: Thai and number blocks are not auto-scaled and get wrong hyphen when using in insert_htmlbox
    • Fixed 4700 <https://github.com/pymupdf/PyMuPDF/issues/4700>_: pymupdf.open() processes .zip file without raising
    • Fixed 4716 <https://github.com/pymupdf/PyMuPDF/issues/4716>_: Problems with unreadable characters
  • Other:

    • Supported Python versions are now 3.9-3.14.
    • We now define all class methods explicitly instead of with dynamic assignment; this improves type hints.
    • Removed pymupdf.utils.Shape class, was duplicate of pymupdf.Shape.
    • Allow use of cibuildwheel to build and test on Pyodide.

... (truncated)

Commits
  • 8264a4b tests/test_4767.py: test_4767() disable on github/windows/cibuildwheel.
  • e68755f setup.py changes.txt: upgrade to mupdf-1.26.12 by default.
  • c0e37f8 .github/workflows: cope with end of life of macos-13.
  • 1084c91 Docs: Fixes search path for sub-directory paths.
  • cb7c15c Docs: updates ko .mo files.
  • 715b7c1 Updates language toggle to add Korean option
  • caa8af7 Adds missing translations for pixmap.po
  • 83e3a47 Code syntax error updates.
  • a22f121 Fix Korean translation errors
  • bd48f16 Fix Korean translation errors in tutorial.po
  • Additional commits viewable in compare view

Updates reportlab from 4.4.5 to 4.4.7

Updates dulwich from 0.24.10 to 0.25.0

Release notes

Sourced from dulwich's releases.

v0.25.0

What's Changed

... (truncated)

Changelog

Sourced from dulwich's changelog.

0.25.0 2025-12-17

PLEASE NOTE: This release makes quite a lot of changes to public APIs. This is ahead of a 1.0 release, after which API changes will be kept backwards compatible.

  • Split out worktree module from porcelain into separate dulwich.worktree module for better code organization. (Jelmer Vernooij, #2037)

  • Split porcelain module into separate submodules: dulwich.porcelain.tags, dulwich.porcelain.notes, dulwich.porcelain.submodule, and dulwich.porcelain.lfs. Main porcelain module re-exports all functions for backward compatibility. (Jelmer Vernooij, #2032)

  • Ensure dulwich.porcelain package is properly installed as a directory structure with submodules. (Jelmer Vernooij, #2035)

  • Add tests for consistent license preamble across codebase and prevent os.environ usage in lower layers. (Jelmer Vernooij, #2033)

  • Add __all__ exports to all modules for better API clarity and wildcard import support. (Jelmer Vernooij, #2022)

  • Fix ParamikoSSHVendor interface compatibility with SSHVendor. (Jelmer Vernooij, #2028)

  • Add fallback when HEAD is missing in dumb HTTP protocol, improving compatibility with repositories that don't have a HEAD reference. (Antoine Lambert, #2030)

  • Fix smudge filter subprocess fallback for special characters in path. (Petr Chmelar, #1878)

  • Fix UTF-8 decode error in process filter protocol when handling binary files. (Jelmer Vernooij, #2023)

  • Fix porcelain.add() to correctly handle None values in pathspec parameter. (Jelmer Vernooij, #2027)

  • Add --stat argument to dulwich diff command to display diffstat summary showing files changed and line additions/deletions. (Jelmer Vernooij, #2026)

  • Avoid signing commits in porcelain.stash() operations to prevent GPG prompt interruptions during automated stashing. (Jelmer Vernooij, #2012)

  • Improve error handling when trying to remove non-empty directories during worktree operations. (Jelmer Vernooij, #2004)

  • Move greenthreads support to dulwich/contrib. This code isn't really developed and only used by the swift support.

... (truncated)

Commits

Updates qdrant-client from 1.15.1 to 1.16.2

Release notes

Sourced from qdrant-client's releases.

v1.6.2

Change Log

Deprecations ⏳

Fixes ⚙️

Thanks to everyone who contributed to the current release! @​holyMolyTolli @​joein

v1.16.1

Change Log

Features 🪐

  • #1116 - implement grpc version of cluster_collection_update by @​joein
  • #1123 - expose the remaining cluster methods: remove_peer, collection_cluster_info, recover_current_peer, cluster_status by @​joein

Fixes 😮

  • #1125 - rename common.proto to qdrant_common.proto to avoid conflicts with other libraries by @​joein
  • #1124 - fix local mode with persistence backward compatibility by @​joein
  • #1121 - add .pyi files for grpc files to help static code analyzers by @​joein

v1.16.0

Change Log

Features 🪐

Deprecations ⌚

  • #1093 - add, query, query_batch methods deprecated in favour of upsert and query_points by @​joein
  • #1103 - remove deprecated methods: search, recommend, discovery, upload_records, search_batch, recommend_batch, discovery_batch, rest, init_from in create_collection, all lock-related methods by @​joein
  • #1104 - remove structs used only in the removed methods (#1103) by @​joein

Fixes 😮

... (truncated)

Commits

Updates slack-sdk from 3.38.0 to 3.39.0

Release notes

Sourced from slack-sdk's releases.

v3.39.0

What's Changed

🚀 Enhancements

📦 Other changes

New Contributors

Full Changelog: slackapi/python-slack-sdk@v3.38.0...v3.39.0 Milestone: https://github.com/slackapi/python-slack-sdk/milestone/114?closed=1

Commits

Updates pytest from 9.0.1 to 9.0.2

Release notes

Sourced from pytest's releases.

9.0.2

pytest 9.0.2 (2025-12-06)

Bug fixes

  • #13896: The terminal progress feature added in pytest 9.0.0 has been disabled by default, except on Windows, due to compatibility issues with some terminal emulators.

    You may enable it again by passing -p terminalprogress. We may enable it by default again once compatibility improves in the future.

    Additionally, when the environment variable TERM is dumb, the escape codes are no longer emitted, even if the plugin is enabled.

  • #13904: Fixed the TOML type of the tmp_path_retention_count settings in the API reference from number to string.

  • #13946: The private config.inicfg attribute was changed in a breaking manner in pytest 9.0.0. Due to its usage in the ecosystem, it is now restored to working order using a compatibility shim. It will be deprecated in pytest 9.1 and removed in pytest 10.

  • #13965: Fixed quadratic-time behavior when handling unittest subtests in Python 3.10.

Improved documentation

  • #4492: The API Reference now contains cross-reference-able documentation of pytest's command-line flags <command-line-flags>.
Commits
  • 3d10b51 Prepare release version 9.0.2
  • 188750b Merge pull request #14030 from pytest-dev/patchback/backports/9.0.x/1e4b01d1f...
  • b7d7bef Merge pull request #14014 from bluetech/compat-note
  • bd08e85 Merge pull request #14013 from pytest-dev/patchback/backports/9.0.x/922b60377...
  • bc78386 Add CLI options reference documentation (#13930)
  • 5a4e398 Fix docs typo (#14005) (#14008)
  • d7ae6df Merge pull request #14006 from pytest-dev/maintenance/update-plugin-list-tmpl...
  • 556f6a2 pre-commit: fix rst-lint after new release (#13999) (#14001)
  • c60fbe6 Fix quadratic-time behavior when handling unittest subtests in Python 3.10 ...
  • 73d9b01 Merge pull request #13995 from nicoddemus/patchback/backports/9.0.x/1b5200c0f...
  • Additional commits viewable in compare view

Updates ruff from 0.14.5 to 0.14....

Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Dec 22, 2025
@dependabot dependabot bot requested a review from dineshpinto as a code owner December 22, 2025 06:22
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Dec 22, 2025
Bumps the uv-all group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [google-genai](https://github.com/googleapis/python-genai) | `1.51.0` | `1.56.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.12.4` | `2.12.5` |
| [google-adk](https://github.com/google/adk-python) | `1.19.0` | `1.21.0` |
| [pymupdf](https://github.com/pymupdf/pymupdf) | `1.26.6` | `1.26.7` |
| [reportlab](https://www.reportlab.com/) | `4.4.5` | `4.4.7` |
| [dulwich](https://github.com/dulwich/dulwich) | `0.24.10` | `0.25.0` |
| [qdrant-client](https://github.com/qdrant/qdrant-client) | `1.15.1` | `1.16.2` |
| [slack-sdk](https://github.com/slackapi/python-slack-sdk) | `3.38.0` | `3.39.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `9.0.1` | `9.0.2` |
| [ruff](https://github.com/astral-sh/ruff) | `0.14.5` | `0.14.10` |



Updates `google-genai` from 1.51.0 to 1.56.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@v1.51.0...v1.56.0)

Updates `pydantic` from 2.12.4 to 2.12.5
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.12.4...v2.12.5)

Updates `google-adk` from 1.19.0 to 1.21.0
- [Release notes](https://github.com/google/adk-python/releases)
- [Changelog](https://github.com/google/adk-python/blob/main/CHANGELOG.md)
- [Commits](google/adk-python@v1.19.0...v1.21.0)

Updates `pymupdf` from 1.26.6 to 1.26.7
- [Release notes](https://github.com/pymupdf/pymupdf/releases)
- [Changelog](https://github.com/pymupdf/PyMuPDF/blob/main/changes.txt)
- [Commits](pymupdf/PyMuPDF@1.26.6...1.26.7)

Updates `reportlab` from 4.4.5 to 4.4.7

Updates `dulwich` from 0.24.10 to 0.25.0
- [Release notes](https://github.com/dulwich/dulwich/releases)
- [Changelog](https://github.com/jelmer/dulwich/blob/master/NEWS)
- [Commits](jelmer/dulwich@dulwich-0.24.10...dulwich-0.25.0)

Updates `qdrant-client` from 1.15.1 to 1.16.2
- [Release notes](https://github.com/qdrant/qdrant-client/releases)
- [Commits](qdrant/qdrant-client@v1.15.1...v1.16.2)

Updates `slack-sdk` from 3.38.0 to 3.39.0
- [Release notes](https://github.com/slackapi/python-slack-sdk/releases)
- [Commits](slackapi/python-slack-sdk@v3.38.0...v3.39.0)

Updates `pytest` from 9.0.1 to 9.0.2
- [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.1...9.0.2)

Updates `ruff` from 0.14.5 to 0.14.10
- [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.14.5...0.14.10)

---
updated-dependencies:
- dependency-name: google-genai
  dependency-version: 1.56.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv-all
- dependency-name: pydantic
  dependency-version: 2.12.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: uv-all
- dependency-name: google-adk
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv-all
- dependency-name: pymupdf
  dependency-version: 1.26.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: uv-all
- dependency-name: reportlab
  dependency-version: 4.4.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: uv-all
- dependency-name: dulwich
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv-all
- dependency-name: qdrant-client
  dependency-version: 1.16.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv-all
- dependency-name: slack-sdk
  dependency-version: 3.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv-all
- dependency-name: pytest
  dependency-version: 9.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: uv-all
- dependency-name: ruff
  dependency-version: 0.14.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: uv-all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/uv/uv-all-c3c5eda93b branch from f9097d6 to 35b3e8f Compare December 29, 2025 06:19
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