chore: bump litellm to 1.95.0 - #711
Merged
Merged
Conversation
Clears four Dependabot advisories, the highest being GHSA-4xpc-pv4p-pm3w (critical, auth bypass via Host header injection, fixed in 1.84.0). 1.84.0 through 1.92.x cap requires-python at <3.14, so none of them could be installed on a Python 3.14 bench. BerriAI/litellm#33438 raised the cap to <3.15 and shipped in 1.93.0, which unblocks the upgrade. Also resolves a pre-existing conflict with frappe: 1.83.7 hard-pinned click==8.1.8 while frappe requires Click~=8.4.1. 1.95.0 relaxes to click>=8.0.0,<9.0, letting click satisfy both. Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
Confidence Score: 5/5The dependency bump appears safe to merge. The supported Python range and repository-used LiteLLM APIs remain compatible, and no lockfile requires synchronization. Reviews (1): Last reviewed commit: "chore: bump litellm to 1.95.0" | Re-trigger Greptile |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #711 +/- ##
========================================
Coverage 59.59% 59.59%
========================================
Files 35 35
Lines 4413 4413
========================================
Hits 2630 2630
Misses 1783 1783 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Clears the open litellm security advisories flagged by Dependabot.
Advisories cleared
gh api /advisories?ecosystem=pip&affects=litellm@1.95.0returns nothing, so 1.95.0 is clean.Why this was blocked until now
Every release from 1.84.0 through 1.92.x caps
requires-pythonat<3.14, so none of them install on a Python 3.14 bench. BerriAI/litellm#33438 raised the cap to<3.15and first shipped in 1.93.0, which is what unblocks this.>=3.9,<4.0>=3.10,<3.14>=3.10,<3.15Click conflict, also fixed
1.83.7 hard-pinned
click==8.1.8, while frappe requiresClick~=8.4.1. That conflict was already present on develop:1.95.0 relaxes to
click>=8.0.0,<9.0, so click can move to 8.4.x and satisfy frappe.