Skip to content

chore(deps): bump the ai-providers group with 6 updates - #924

Merged
marandaneto merged 3 commits into
mainfrom
dependabot/uv/ai-providers-c455a4b290
Sep 7, 2026
Merged

chore(deps): bump the ai-providers group with 6 updates#924
marandaneto merged 3 commits into
mainfrom
dependabot/uv/ai-providers-c455a4b290

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the ai-providers group with 6 updates:

Package From To
langchain 1.3.16 1.3.18
anthropic 0.122.0 1.2.0
langchain-core 1.6.0 1.6.1
langchain-anthropic 1.6.1 1.7.0
google-genai 2.19.0 2.20.0
langchain-protocol 0.0.18 0.0.19

Updates langchain from 1.3.16 to 1.3.18

Release notes

Sourced from langchain's releases.

langchain==1.3.18

Changes since langchain==1.3.17

release(langchain): 1.3.18 (#39966) fix(langchain): preserve content-block shape in PIIMiddleware redaction (#39894) fix(core): shore up indexing in genai v1 streaming content (#39964)

langchain==1.3.17

Changes since langchain==1.3.16

release(langchain): 1.3.17 (#39893) fix(langchain): frame custom HITL rejection reasons (#39773) chore(deps): bump minor and patch dependencies (#39869)

Commits
  • 7d4b42b release(langchain): 1.3.18 (#39966)
  • 4a66e35 fix(langchain): preserve content-block shape in PIIMiddleware redaction (#39894)
  • 38e2113 fix(core): shore up indexing in genai v1 streaming content (#39964)
  • 13b1b2f fix(core): make StructuredTool JSON-serializable (#39631)
  • 3b3b308 release(anthropic): 1.7.0 (#39963)
  • e3f6adf feat(anthropic): support top-level param for skills via container; `updates...
  • c253f54 fix(openai): correct reasoning_effort_levels for gpt-5 and gpt-5.1 profiles...
  • 513e425 chore(model-profiles): refresh model profile data (#39954)
  • fd2fbd7 feat(anthropic): support 1.0 sdk (#39938)
  • b0fb33f fix(perplexity): map Responses API cache tokens into input_token_details (#39...
  • Additional commits viewable in compare view

Updates anthropic from 0.122.0 to 1.2.0

Release notes

Sourced from anthropic's releases.

v1.2.0

1.2.0 (2026-08-27)

Full Changelog: v1.1.0...v1.2.0

Features

  • api: beta files/skills namespaces use GA shapes; drop dated beta header pins (9df4565)

Bug Fixes

  • aws,bedrock: sign raw request bytes so binary file uploads work (#531) (f50e910)
  • ci: resolve assignment aliases in detect-breaking-changes (f2c4925)
  • sessions: make event accumulator forward-compatible with new event types (#533) (cbbaf6e)
  • tools: let read return a view_range of a file over the size cap (#538) (b68e876)
  • tools: preserve exact file bytes in the agent toolset and memory tool (no newline translation) (#540) (56921a8)
  • webhooks: require headers to be passed to unwrap() (0baa902)

Documentation

  • api: clarify pagination on the organization rate-limit list endpoints (1832b27)

v1.1.0

1.1.0 (2026-08-26)

Full Changelog: v1.0.0...v1.1.0

Features

  • api: add updates thinking display mode (beta) (eb4a73f)
  • api: add missing anthropic-beta values (dbebd15)
  • api: add support for Organization API endpoints (5a5b8fc)

Bug Fixes

  • docs: correct link for long requests error (#1884) (4474f31), closes #1883
  • tools: keep the tool runner going on pause_turn (#343) (ab1ec60)

Chores

  • docs: clarify skill version latest support and memory version retention (a754f3b)
  • internal: cancel superseded CI runs (c061ab1)
  • internal: minor workflow reformat (1569002)
  • internal: remove the legacy response API (a48b1dd)
  • internal: use import httpx2 directly instead of aliasing as httpx (628d789)

... (truncated)

Changelog

Sourced from anthropic's changelog.

1.2.0 (2026-08-27)

Full Changelog: v1.1.0...v1.2.0

Features

  • api: beta files/skills namespaces use GA shapes; drop dated beta header pins (9df4565)

    The beta Files and Skills namespaces (client.beta.files, client.beta.skills) no longer send the files-api-2025-04-14 / skills-2025-10-02 headers and return the same shapes as client.files / client.skills (with Beta-prefixed type names under anthropic.types.beta). Requests that still send those headers on raw HTTP keep receiving the beta shapes.

    Changes in the beta namespaces:

    • client.beta.skills.delete() now deletes a Skill together with all of its versions (previously refused while any version existed). It returns BetaDeletedSkill (was SkillDeleteResponse).
    • Beta Messages type BetaSkill (container skill reference with skill_id, type, version) is renamed BetaContainerSkill; the request-side BetaSkillParams keeps its name. BetaSkill now names the Skill object returned by client.beta.skills.create() / retrieve() / list() (replacing SkillCreateResponse / SkillRetrieveResponse / SkillListResponse), and skill versions are BetaSkillVersion / BetaDeletedSkillVersion (replacing Version*Response).
    • client.beta.files.list() returns SyncPageCursor[BetaFileMetadata] / AsyncPageCursor[BetaFileMetadata] (with data / next_page) and paginates with page= / ids= (was SyncPage / AsyncPage with data, has_more, first_id, last_id and before_id= / after_id=); iterating the result for auto-pagination is unchanged. BetaSkill uses display_name (was display_title, also the create() keyword) and latest_version_id (was latest_version), and BetaSkillVersion is addressed by its skver_… id (the Unix-timestamp version field is gone).

    Migration guides: Migrate from files-api-2025-04-14 · Migrate from skills-2025-10-02

Bug Fixes

  • aws,bedrock: sign raw request bytes so binary file uploads work (#531) (f50e910)
  • ci: resolve assignment aliases in detect-breaking-changes (f2c4925)
  • sessions: make event accumulator forward-compatible with new event types (#533) (cbbaf6e)
  • tools: let read return a view_range of a file over the size cap (#538) (b68e876)
  • tools: preserve exact file bytes in the agent toolset and memory tool (no newline translation) (#540) (56921a8)
  • webhooks: require headers to be passed to unwrap() (0baa902)

Documentation

  • api: clarify pagination on the organization rate-limit list endpoints (1832b27)

1.1.0 (2026-08-26)

Full Changelog: v1.0.0...v1.1.0

Features

  • api: add updates thinking display mode (beta) (eb4a73f)
  • api: add missing anthropic-beta values (dbebd15)
  • api: add support for Organization API endpoints (5a5b8fc)

Bug Fixes

  • docs: correct link for long requests error (#1884) (4474f31), closes #1883
  • tools: keep the tool runner going on pause_turn (#343) (ab1ec60)

Chores

... (truncated)

Commits
  • 071efb6 release: 1.2.0
  • 6d48fd0 docs(api): clarify pagination on the organization rate-limit list endpoints
  • 2f564a2 fix(tools): let read return a view_range of a file over the size cap (#538)
  • dffb22d fix(tools): preserve exact file bytes in the agent toolset and memory tool (n...
  • 932ab4b fix(ci): resolve assignment aliases in detect-breaking-changes
  • e541b4d feat(api): beta files/skills namespaces use GA shapes; drop dated beta header...
  • 0c1a85a fix(sessions): make event accumulator forward-compatible with new event types...
  • 39a670c fix(webhooks): require headers to be passed to unwrap()
  • 05532bc fix(aws,bedrock): sign raw request bytes so binary file uploads work (#531)
  • 181e2e5 release: 1.1.0
  • Additional commits viewable in compare view

Updates langchain-core from 1.6.0 to 1.6.1

Release notes

Sourced from langchain-core's releases.

langchain-core==1.6.1

Changes since langchain-core==1.6.0

revert: release(core): 1.6.2 (#39971) release(core): 1.6.2 (#39967) fix(core): shore up indexing in genai v1 streaming content (#39964) fix(core): make StructuredTool JSON-serializable (#39631) chore(deps): bump minor and patch dependencies (#39869) release(core): 1.6.1 (#39832) feat(core): propagate gateway information on error path (#39829)

Commits
  • 4fe9d30 chore(openai): fix tests (#39972)
  • 8fa38dc revert: release(core): 1.6.2 (#39971)
  • 122030d release(core): 1.6.2 (#39967)
  • 7d4b42b release(langchain): 1.3.18 (#39966)
  • 4a66e35 fix(langchain): preserve content-block shape in PIIMiddleware redaction (#39894)
  • 38e2113 fix(core): shore up indexing in genai v1 streaming content (#39964)
  • 13b1b2f fix(core): make StructuredTool JSON-serializable (#39631)
  • 3b3b308 release(anthropic): 1.7.0 (#39963)
  • e3f6adf feat(anthropic): support top-level param for skills via container; `updates...
  • c253f54 fix(openai): correct reasoning_effort_levels for gpt-5 and gpt-5.1 profiles...
  • Additional commits viewable in compare view

Updates langchain-anthropic from 1.6.1 to 1.7.0

Release notes

Sourced from langchain-anthropic's releases.

langchain-anthropic==1.7.0

Changes since langchain-anthropic==1.6.1

release(anthropic): 1.7.0 (#39963) feat(anthropic): support top-level param for skills via container; updates thinking display mode (#39962) feat(anthropic): support 1.0 sdk (#39938) fix(anthropic): auto-append advisor-tool-2026-03-01 beta header for advisor_20260301 tool (#39917) feat(anthropic): surface gateway response metadata (#39809)

Commits
  • 3b3b308 release(anthropic): 1.7.0 (#39963)
  • e3f6adf feat(anthropic): support top-level param for skills via container; `updates...
  • c253f54 fix(openai): correct reasoning_effort_levels for gpt-5 and gpt-5.1 profiles...
  • 513e425 chore(model-profiles): refresh model profile data (#39954)
  • fd2fbd7 feat(anthropic): support 1.0 sdk (#39938)
  • b0fb33f fix(perplexity): map Responses API cache tokens into input_token_details (#39...
  • 502b2b4 chore(model-profiles): refresh model profile data (#39928)
  • c9dcf6e fix(perplexity): emit search_context_size once per stream in _astream (#39924)
  • 7f5b324 fix(anthropic): auto-append advisor-tool-2026-03-01 beta header for `adviso...
  • 43bed06 chore(model-profiles): refresh model profile data (#39906)
  • Additional commits viewable in compare view

Updates google-genai from 2.19.0 to 2.20.0

Release notes

Sourced from google-genai's releases.

v2.20.0

2.20.0 (2026-08-25)

Features

  • Add AudioTranscriptionConfigMode (4a80954)
  • Add environment files support and scotty file download helper (3074263)
  • Add TYPE_JPEG2000 to VideoContent.MimeType enum (ef39c40)
Changelog

Sourced from google-genai's changelog.

2.20.0 (2026-08-25)

Features

  • Add AudioTranscriptionConfigMode (4a80954)
  • Add environment files support and scotty file download helper (3074263)
  • Add TYPE_JPEG2000 to VideoContent.MimeType enum (ef39c40)
Commits
  • 66518c9 chore(main): release 2.20.0 (#2884)
  • 4a80954 feat: Add AudioTranscriptionConfigMode
  • 5be429c chore: Part.media_processing
  • cb75a08 chore: internal change to resolve naming collision
  • 3074263 feat: add environment files support and scotty file download helper
  • 6680718 No public description
  • 53e386e chore: Move major release check to job level in block_major_releases workflow
  • 43ef621 chore: Disable GenerateImages for Gemini API
  • 028e01d chore: regenerate
  • ef39c40 feat: Add TYPE_JPEG2000 to VideoContent.MimeType enum
  • See full diff in compare view

Updates langchain-protocol from 0.0.18 to 0.0.19

Release notes

Sourced from langchain-protocol's releases.

langchain-protocol==0.0.19

What's Changed

Full Changelog: langchain-ai/agent-protocol@langchain-protocol==0.0.18...langchain-protocol==0.0.19

Commits
  • 59c02be fix(py): pin hatchling to avoid metadata 2.5 publish failure (#97)
  • c59077b release: v0.19.0 (#96)
  • 870ef95 Merge pull request #95 from langchain-ai/open-swe/v3-replica-routing
  • 175a1b8 feat(protocol): add LangSmith routing to run start
  • d9fd23d Merge pull request #93 from langchain-ai/langster/fix-datamodel-code-generato...
  • 9476948 fix(tooling): update code generator dependencies
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the ai-providers group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [langchain](https://github.com/langchain-ai/langchain) | `1.3.16` | `1.3.18` |
| [anthropic](https://github.com/anthropics/anthropic-sdk-python) | `0.122.0` | `1.2.0` |
| [langchain-core](https://github.com/langchain-ai/langchain) | `1.6.0` | `1.6.1` |
| [langchain-anthropic](https://github.com/langchain-ai/langchain) | `1.6.1` | `1.7.0` |
| [google-genai](https://github.com/googleapis/python-genai) | `2.19.0` | `2.20.0` |
| [langchain-protocol](https://github.com/langchain-ai/agent-protocol) | `0.0.18` | `0.0.19` |


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

Updates `anthropic` from 0.122.0 to 1.2.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@v0.122.0...v1.2.0)

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

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

Updates `google-genai` from 2.19.0 to 2.20.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.19.0...v2.20.0)

Updates `langchain-protocol` from 0.0.18 to 0.0.19
- [Release notes](https://github.com/langchain-ai/agent-protocol/releases)
- [Commits](langchain-ai/agent-protocol@langchain-protocol==0.0.18...langchain-protocol==0.0.19)

---
updated-dependencies:
- dependency-name: langchain
  dependency-version: 1.3.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ai-providers
- dependency-name: anthropic
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ai-providers
- dependency-name: langchain-core
  dependency-version: 1.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ai-providers
- dependency-name: langchain-anthropic
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ai-providers
- dependency-name: google-genai
  dependency-version: 2.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ai-providers
- dependency-name: langchain-protocol
  dependency-version: 0.0.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ai-providers
...

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 7, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 7, 2026 10:10
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Sep 7, 2026
@github-actions

github-actions Bot commented Sep 7, 2026

Copy link
Copy Markdown
Contributor

posthog-python Compliance Report

Date: 2026-09-07 10:33:54 UTC
Duration: 256082ms

✅ All Tests Passed!

111/111 tests passed


Capture_V1 Tests

94/94 tests passed

View Details
Test Status Duration
Endpoint And Method.Targets V1 Endpoint 515ms
Endpoint And Method.Does Not Use Legacy Endpoints 509ms
Required Headers.Has Authorization Bearer Header 508ms
Required Headers.Has Content Type Json 508ms
Required Headers.Has Posthog Sdk Info Format 509ms
Required Headers.Has Posthog Attempt Header 508ms
Required Headers.Has Posthog Request Id 508ms
Required Headers.Has Posthog Request Timestamp 509ms
Required Headers.Has User Agent 508ms
Body Format.Body Has Created At And Batch 510ms
Body Format.No Api Key In Body 510ms
Body Format.No Sent At In Body 508ms
Event Format.Event Has Required Root Fields 509ms
Event Format.Event Uuid Is Valid 508ms
Event Format.Event Timestamp Is Rfc3339 508ms
Event Format.Distinct Id Is String 508ms
Event Format.Distinct Id At Root Not Properties 509ms
Event Format.Custom Properties Preserved 508ms
Event Format.Set Properties Preserved 509ms
Event Format.Set Once Properties Preserved 508ms
Event Format.Groups Properties Preserved 508ms
Event Format.Sdk Generates Uuid If Not Provided 509ms
Event Format.Event Has Required Root Fields Batch 511ms
Event Format.Event Uuid Is Valid Batch 511ms
Event Format.Event Timestamp Is Rfc3339 Batch 511ms
Event Format.Distinct Id Is String Batch 511ms
Event Format.Distinct Id At Root Not Properties Batch 511ms
Event Format.Custom Properties Preserved Batch 511ms
Event Format.Set Properties Preserved Batch 511ms
Event Format.Set Once Properties Preserved Batch 511ms
Event Format.Groups Properties Preserved Batch 511ms
Event Format.Sdk Generates Uuid If Not Provided Batch 511ms
Batch Behavior.Multiple Events In Single Batch 514ms
Batch Behavior.Batch Envelope Smoke 513ms
Batch Behavior.Flush With No Events Sends Nothing 505ms
Batch Behavior.Flush At Triggers Batch 1008ms
Batch Behavior.Created At Reflects Batch Creation Time 509ms
Deduplication.Generates Unique Uuids 514ms
Deduplication.Different Events Same Content Different Uuids 511ms
Deduplication.Preserves Uuid On Retry 6517ms
Deduplication.Preserves Timestamp On Retry 6517ms
Deduplication.Preserves Uuid And Timestamp On Batch Retry 6520ms
Deduplication.No Duplicate Events In Batch 515ms
Header Behavior On Retry.Attempt Header Starts At One 508ms
Header Behavior On Retry.Attempt Header Increments On Retry 13525ms
Header Behavior On Retry.Request Id Preserved On Retry 6513ms
Header Behavior On Retry.Different Requests Have Different Request Ids 3017ms
Header Behavior On Retry.Request Timestamp Changes On Retry 6518ms
Response Format Validation.Success Response Has Uuid Keyed Results 509ms
Response Format Validation.Success Response Has Ok For Each Event 512ms
Response Format Validation.Success No Retry After When All Ok 510ms
Response Format Validation.Success Retry After Present When Retry Events 1513ms
Response Format Validation.Success No Retry After When Drop Only 511ms
Response Format Validation.Response Echoes Request Id 508ms
Retry Behavior.Retries On 408 6516ms
Retry Behavior.Retries On 500 6518ms
Retry Behavior.Retries On 503 8516ms
Retry Behavior.Retries On 504 6517ms
Retry Behavior.Retryable Errors Have Retry After 3515ms
Retry Behavior.Respects Retry After On Retryable Error 11521ms
Retry Behavior.Does Not Retry On 400 2510ms
Retry Behavior.Does Not Retry On 401 2511ms
Retry Behavior.Does Not Retry On 402 2512ms
Retry Behavior.Does Not Retry On 413 2511ms
Retry Behavior.Does Not Retry On 415 2512ms
Retry Behavior.Non Retryable Errors Have No Retry After 2511ms
Retry Behavior.Implements Backoff 22533ms
Retry Behavior.Max Retries Respected 22530ms
Partial Batch Handling.Handles 200 Full Success 2511ms
Partial Batch Handling.Handles 200 With All Ok 3512ms
Partial Batch Handling.Does Not Retry Dropped Events 3514ms
Partial Batch Handling.Does Not Retry Limited Events 3511ms
Partial Batch Handling.Prunes Ok Events On Partial Retry 6520ms
Partial Batch Handling.Prunes Dropped Events On Partial Retry 6519ms
Partial Batch Handling.Retries Only Retry Events From Partial 6520ms
Partial Batch Handling.Partial Retry Preserves Uuids 6514ms
Partial Batch Handling.Partial Retry Attempt Header Increments 6519ms
Partial Batch Handling.Partial Retry Request Id Preserved 6518ms
Partial Batch Handling.Respects Retry After On Partial 8518ms
Partial Batch Handling.Unknown Result Treated As Terminal 3512ms
Partial Batch Handling.Mixed Ok Drop Limited No Retry 3515ms
Compression.Sends Gzip Content Encoding 510ms
Compression.No Content Encoding When Disabled 508ms
Compression.Compressed Body Is Decompressible 509ms
Error Handling.Does Not Retry On Unknown 4Xx 2511ms
Event Options.Cookieless Mode Override 509ms
Event Options.Disable Skew Correction Override 508ms
Event Options.Process Person Profile Override 508ms
Event Options.Product Tour Id Override 508ms
Event Options.Unset Options Omitted 508ms
Event Options.Options Override In Batch 512ms
Geoip And Historical Migration.Geoip Disable Injected Into Properties 508ms
Geoip And Historical Migration.Historical Migration Set In Body 508ms
Geoip And Historical Migration.Historical Migration Absent By Default 511ms

Feature_Flags Tests

17/17 tests passed

View Details
Test Status Duration
Request Payload.Request With Person Properties Device Id 9ms
Request Payload.Flags Request Uses V2 Query Param 7ms
Request Payload.Flags Request Hits Flags Path Not Decide 7ms
Request Payload.Flags Request Omits Authorization Header 7ms
Request Payload.Token In Flags Body Matches Init 7ms
Request Payload.Groups Round Trip 7ms
Request Payload.Groups Default To Empty Object 7ms
Request Payload.Disable Geoip False Propagates As Geoip Disable False 7ms
Request Payload.Disable Geoip Omitted Defaults To False 7ms
Request Payload.Flag Keys To Evaluate Contains Only Requested Key 7ms
Request Lifecycle.No Flags Request On Init Alone 2ms
Request Lifecycle.No Flags Request On Normal Capture 507ms
Request Lifecycle.Two Flag Calls Produce Two Remote Requests 11ms
Request Lifecycle.Mock Response Value Is Returned To Caller 8ms
Retry Behavior.Retries Flags On 502 310ms
Retry Behavior.Retries Flags On 504 310ms
Side Effect Events.Get Feature Flag Captures Feature Flag Called Event 510ms

@marandaneto
marandaneto enabled auto-merge (squash) September 7, 2026 10:32
@marandaneto
marandaneto merged commit c7584fd into main Sep 7, 2026
41 checks passed
@marandaneto
marandaneto deleted the dependabot/uv/ai-providers-c455a4b290 branch September 7, 2026 10:35
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