chore(deps): weekly dependency update - #711
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 18b6a9e6da
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "Codex (@codex) review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "Codex (@codex) address that feedback".
|
|
||
| [tool.braintrust.matrix.anthropic] | ||
| latest = "anthropic==0.122.0" | ||
| latest = "anthropic==1.0.0" |
There was a problem hiding this comment.
Re-record the latest provider cassettes
When CI runs the bumped latest provider sessions, it uses playback-only VCR mode, but this commit changes numerous provider pins without updating any cassettes/latest recordings. This is especially risky for the Anthropic 0.x-to-1.0 jump and the OpenAI, OpenAI Agents, LiteLLM, Pydantic AI, Google GenAI, LangChain, and other minor-version bumps: changed request serialization can cause no-matching-cassette failures, while unchanged requests merely replay responses produced by the old SDKs and therefore do not validate the new response shapes. Re-record each affected latest cassette directory and rerun the corresponding latest sessions in playback mode before merging.
AGENTS.md reference: AGENTS.md:L201-L205
Useful? React with 👍 / 👎.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: e3504b9266
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "Codex (@codex) review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "Codex (@codex) address that feedback".
| # provider use, while still keeping the same chat_completion / | ||
| # text_generation / feature_extraction / sentence_similarity method names. | ||
| latest = "huggingface-hub==1.27.0" | ||
| latest = "huggingface-hub==1.28.0" |
There was a problem hiding this comment.
Re-record the Hugging Face latest cassettes
After the broader cassette refresh, test_huggingface_hub(latest) now installs 1.28.0 but its cassettes/latest directory remains unchanged; the recorded request headers still identify hf_hub/1.15.0. Consequently, playback either fails if 1.28.0 changes a matched request or continues exercising old provider exchanges rather than validating this minor-version bump. This is fresh evidence beyond the earlier broad comment because the other affected latest directories were refreshed while this mapped provider directory was omitted; re-record it and rerun test_huggingface_hub(latest) in playback mode.
AGENTS.md reference: AGENTS.md:L134-L141
Useful? React with 👍 / 👎.
Automated weekly dependency update via
python scripts/update-matrix-latest.py && uv lock --upgrade.