chore: bump litellm from 1.82.2 to 1.82.3 in the minor-and-patch group#516
Closed
dependabot[bot] wants to merge 1 commit into
Closed
chore: bump litellm from 1.82.2 to 1.82.3 in the minor-and-patch group#516dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Bumps the minor-and-patch group with 1 update: [litellm](https://github.com/BerriAI/litellm). Updates `litellm` from 1.82.2 to 1.82.3 - [Release notes](https://github.com/BerriAI/litellm/releases) - [Commits](https://github.com/BerriAI/litellm/commits) --- updated-dependencies: - dependency-name: litellm dependency-version: 1.82.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Dependency ReviewThe following issues were found:
License Issuesuv.lock
OpenSSF Scorecard
Scanned Files
|
Contributor
Author
|
Looks like litellm is updatable in another way, so this is no longer needed. |
Aureliolo
added a commit
that referenced
this pull request
May 24, 2026
… gemini, 1 ci-bench) CI fixes: - restore CLI bench regression budget: hoist Validate / validateTunables check slices to package vars and replace closure-based bindings in resolveDurationTunables / resolveCountTunables with direct pointer setters; unroll per-section enumCheck / formatCheck / duration / byte slices in validate.go to inline if-chains. The closure + per-call slice allocations had pushed BenchmarkResolveTunables +32% and BenchmarkLoadExisting +57% allocs. Security alerts (3 dismissed): - CodeQL #515 cli/cmd/start.go:147 (false positive; safeDir comes from safeStateDir -> config.SecurePath, sanitiser cannot be traced past the assertComposeExists helper boundary) - CodeQL #516 cli/cmd/wipe.go:175 (same shape on requireComposeFile) - CodeQL #517 cli/internal/completion/install.go:381 (false positive; path is resolved from a fixed allowlist of shell config locations under the operator home dir, which is the entire point of completion uninstall) Reviewer feedback: - cleanup.go: collectCleanupCandidates now takes the existing *ui.UI instead of re-creating one; removeOldImages signature widened to (removed, freedB, hardFailures, ctxErr) so non "in use" docker rmi failures and ctx cancellation both surface as runtime errors - update_cleanup.go: runAutoCleanupRemovals returns ctxErr; reinstall next-step hint upgraded to HintNextStep - config.go: hintComposeRestart uses HintNextStep - config_dispatch.go: color/hints/output/timestamps readers now return the effective default (auto/auto/text/relative) instead of empty - doctor.go: classifyDoctorIssues honours --checks for the unfixable bucket (anyFixableCheckEnabled gate) - new.go: warnPartialScaffoldWrite emits the recovery hint via HintError so it survives every mode except --quiet - start.go: emitFineTuneSizeHint uses HintGuidance instead of HintTip - uninstall.go: GitHub releases reinstall hint + "container images still on disk" hint upgraded to HintNextStep - completion/install.go: probeShellProfile rel-check no longer rejects filenames that lexically start with ".." (e.g. "..config/profile.ps1") - compose/validate.go: validateDigestPins sorts keys before iterating so the returned error is deterministic - scaffold/writer.go: resolveOneTarget now resolves the deepest existing ancestor via EvalSymlinks and re-checks containment, so a symlinked subpath under absRoot cannot escape at write time - verify/dhi.go: readCosignPayload reads maxBundleBytes+1 and rejects oversize payloads explicitly (mirrors readAttestationStatement) - config/validate.go: validateMasterKey rejects an empty MasterKey when EncryptSecrets is true, exported as ErrMissingMasterKey; introduced LoadAllowMissingMasterKey + ValidateAllowMissingMasterKey so handleReinit can still recover an install whose persisted config predates the new invariant SKIP (verified factually wrong against current code): - Gemini "critical" errors.AsType typo on cli/cmd/update.go:360 -- Go 1.25+ stdlib added a generic errors.AsType helper; build + CI tests pass on Go 1.26 in this repo. golangci-lint actually surfaces the modernisation hint that callers SHOULD migrate to AsType. Tests updated where required: - cmd/* tests, config/* tests: explicit `state.EncryptSecrets = false` (or `encrypt_secrets: false` in JSON fixtures) where the test targets non-encryption behaviour, since the new MasterKey invariant rejects the DefaultState() baseline that those fixtures rely on. Issue: #2099
Aureliolo
added a commit
that referenced
this pull request
May 24, 2026
… gemini, 1 ci-bench) CI fixes: - restore CLI bench regression budget: hoist Validate / validateTunables check slices to package vars and replace closure-based bindings in resolveDurationTunables / resolveCountTunables with direct pointer setters; unroll per-section enumCheck / formatCheck / duration / byte slices in validate.go to inline if-chains. The closure + per-call slice allocations had pushed BenchmarkResolveTunables +32% and BenchmarkLoadExisting +57% allocs. Security alerts (3 dismissed): - CodeQL #515 cli/cmd/start.go:147 (false positive; safeDir comes from safeStateDir -> config.SecurePath, sanitiser cannot be traced past the assertComposeExists helper boundary) - CodeQL #516 cli/cmd/wipe.go:175 (same shape on requireComposeFile) - CodeQL #517 cli/internal/completion/install.go:381 (false positive; path is resolved from a fixed allowlist of shell config locations under the operator home dir, which is the entire point of completion uninstall) Reviewer feedback: - cleanup.go: collectCleanupCandidates now takes the existing *ui.UI instead of re-creating one; removeOldImages signature widened to (removed, freedB, hardFailures, ctxErr) so non "in use" docker rmi failures and ctx cancellation both surface as runtime errors - update_cleanup.go: runAutoCleanupRemovals returns ctxErr; reinstall next-step hint upgraded to HintNextStep - config.go: hintComposeRestart uses HintNextStep - config_dispatch.go: color/hints/output/timestamps readers now return the effective default (auto/auto/text/relative) instead of empty - doctor.go: classifyDoctorIssues honours --checks for the unfixable bucket (anyFixableCheckEnabled gate) - new.go: warnPartialScaffoldWrite emits the recovery hint via HintError so it survives every mode except --quiet - start.go: emitFineTuneSizeHint uses HintGuidance instead of HintTip - uninstall.go: GitHub releases reinstall hint + "container images still on disk" hint upgraded to HintNextStep - completion/install.go: probeShellProfile rel-check no longer rejects filenames that lexically start with ".." (e.g. "..config/profile.ps1") - compose/validate.go: validateDigestPins sorts keys before iterating so the returned error is deterministic - scaffold/writer.go: resolveOneTarget now resolves the deepest existing ancestor via EvalSymlinks and re-checks containment, so a symlinked subpath under absRoot cannot escape at write time - verify/dhi.go: readCosignPayload reads maxBundleBytes+1 and rejects oversize payloads explicitly (mirrors readAttestationStatement) - config/validate.go: validateMasterKey rejects an empty MasterKey when EncryptSecrets is true, exported as ErrMissingMasterKey; introduced LoadAllowMissingMasterKey + ValidateAllowMissingMasterKey so handleReinit can still recover an install whose persisted config predates the new invariant SKIP (verified factually wrong against current code): - Gemini "critical" errors.AsType typo on cli/cmd/update.go:360 -- Go 1.25+ stdlib added a generic errors.AsType helper; build + CI tests pass on Go 1.26 in this repo. golangci-lint actually surfaces the modernisation hint that callers SHOULD migrate to AsType. Tests updated where required: - cmd/* tests, config/* tests: explicit `state.EncryptSecrets = false` (or `encrypt_secrets: false` in JSON fixtures) where the test targets non-encryption behaviour, since the new MasterKey invariant rejects the DefaultState() baseline that those fixtures rely on. Issue: #2099
Aureliolo
added a commit
that referenced
this pull request
May 24, 2026
… gemini, 1 ci-bench) CI fixes: - restore CLI bench regression budget: hoist Validate / validateTunables check slices to package vars and replace closure-based bindings in resolveDurationTunables / resolveCountTunables with direct pointer setters; unroll per-section enumCheck / formatCheck / duration / byte slices in validate.go to inline if-chains. The closure + per-call slice allocations had pushed BenchmarkResolveTunables +32% and BenchmarkLoadExisting +57% allocs. Security alerts (3 dismissed): - CodeQL #515 cli/cmd/start.go:147 (false positive; safeDir comes from safeStateDir -> config.SecurePath, sanitiser cannot be traced past the assertComposeExists helper boundary) - CodeQL #516 cli/cmd/wipe.go:175 (same shape on requireComposeFile) - CodeQL #517 cli/internal/completion/install.go:381 (false positive; path is resolved from a fixed allowlist of shell config locations under the operator home dir, which is the entire point of completion uninstall) Reviewer feedback: - cleanup.go: collectCleanupCandidates now takes the existing *ui.UI instead of re-creating one; removeOldImages signature widened to (removed, freedB, hardFailures, ctxErr) so non "in use" docker rmi failures and ctx cancellation both surface as runtime errors - update_cleanup.go: runAutoCleanupRemovals returns ctxErr; reinstall next-step hint upgraded to HintNextStep - config.go: hintComposeRestart uses HintNextStep - config_dispatch.go: color/hints/output/timestamps readers now return the effective default (auto/auto/text/relative) instead of empty - doctor.go: classifyDoctorIssues honours --checks for the unfixable bucket (anyFixableCheckEnabled gate) - new.go: warnPartialScaffoldWrite emits the recovery hint via HintError so it survives every mode except --quiet - start.go: emitFineTuneSizeHint uses HintGuidance instead of HintTip - uninstall.go: GitHub releases reinstall hint + "container images still on disk" hint upgraded to HintNextStep - completion/install.go: probeShellProfile rel-check no longer rejects filenames that lexically start with ".." (e.g. "..config/profile.ps1") - compose/validate.go: validateDigestPins sorts keys before iterating so the returned error is deterministic - scaffold/writer.go: resolveOneTarget now resolves the deepest existing ancestor via EvalSymlinks and re-checks containment, so a symlinked subpath under absRoot cannot escape at write time - verify/dhi.go: readCosignPayload reads maxBundleBytes+1 and rejects oversize payloads explicitly (mirrors readAttestationStatement) - config/validate.go: validateMasterKey rejects an empty MasterKey when EncryptSecrets is true, exported as ErrMissingMasterKey; introduced LoadAllowMissingMasterKey + ValidateAllowMissingMasterKey so handleReinit can still recover an install whose persisted config predates the new invariant SKIP (verified factually wrong against current code): - Gemini "critical" errors.AsType typo on cli/cmd/update.go:360 -- Go 1.25+ stdlib added a generic errors.AsType helper; build + CI tests pass on Go 1.26 in this repo. golangci-lint actually surfaces the modernisation hint that callers SHOULD migrate to AsType. Tests updated where required: - cmd/* tests, config/* tests: explicit `state.EncryptSecrets = false` (or `encrypt_secrets: false` in JSON fixtures) where the test targets non-encryption behaviour, since the new MasterKey invariant rejects the DefaultState() baseline that those fixtures rely on. Issue: #2099
Aureliolo
added a commit
that referenced
this pull request
May 24, 2026
… gemini, 1 ci-bench) CI fixes: - restore CLI bench regression budget: hoist Validate / validateTunables check slices to package vars and replace closure-based bindings in resolveDurationTunables / resolveCountTunables with direct pointer setters; unroll per-section enumCheck / formatCheck / duration / byte slices in validate.go to inline if-chains. The closure + per-call slice allocations had pushed BenchmarkResolveTunables +32% and BenchmarkLoadExisting +57% allocs. Security alerts (3 dismissed): - CodeQL #515 cli/cmd/start.go:147 (false positive; safeDir comes from safeStateDir -> config.SecurePath, sanitiser cannot be traced past the assertComposeExists helper boundary) - CodeQL #516 cli/cmd/wipe.go:175 (same shape on requireComposeFile) - CodeQL #517 cli/internal/completion/install.go:381 (false positive; path is resolved from a fixed allowlist of shell config locations under the operator home dir, which is the entire point of completion uninstall) Reviewer feedback: - cleanup.go: collectCleanupCandidates now takes the existing *ui.UI instead of re-creating one; removeOldImages signature widened to (removed, freedB, hardFailures, ctxErr) so non "in use" docker rmi failures and ctx cancellation both surface as runtime errors - update_cleanup.go: runAutoCleanupRemovals returns ctxErr; reinstall next-step hint upgraded to HintNextStep - config.go: hintComposeRestart uses HintNextStep - config_dispatch.go: color/hints/output/timestamps readers now return the effective default (auto/auto/text/relative) instead of empty - doctor.go: classifyDoctorIssues honours --checks for the unfixable bucket (anyFixableCheckEnabled gate) - new.go: warnPartialScaffoldWrite emits the recovery hint via HintError so it survives every mode except --quiet - start.go: emitFineTuneSizeHint uses HintGuidance instead of HintTip - uninstall.go: GitHub releases reinstall hint + "container images still on disk" hint upgraded to HintNextStep - completion/install.go: probeShellProfile rel-check no longer rejects filenames that lexically start with ".." (e.g. "..config/profile.ps1") - compose/validate.go: validateDigestPins sorts keys before iterating so the returned error is deterministic - scaffold/writer.go: resolveOneTarget now resolves the deepest existing ancestor via EvalSymlinks and re-checks containment, so a symlinked subpath under absRoot cannot escape at write time - verify/dhi.go: readCosignPayload reads maxBundleBytes+1 and rejects oversize payloads explicitly (mirrors readAttestationStatement) - config/validate.go: validateMasterKey rejects an empty MasterKey when EncryptSecrets is true, exported as ErrMissingMasterKey; introduced LoadAllowMissingMasterKey + ValidateAllowMissingMasterKey so handleReinit can still recover an install whose persisted config predates the new invariant SKIP (verified factually wrong against current code): - Gemini "critical" errors.AsType typo on cli/cmd/update.go:360 -- Go 1.25+ stdlib added a generic errors.AsType helper; build + CI tests pass on Go 1.26 in this repo. golangci-lint actually surfaces the modernisation hint that callers SHOULD migrate to AsType. Tests updated where required: - cmd/* tests, config/* tests: explicit `state.EncryptSecrets = false` (or `encrypt_secrets: false` in JSON fixtures) where the test targets non-encryption behaviour, since the new MasterKey invariant rejects the DefaultState() baseline that those fixtures rely on. Issue: #2099
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.
Bumps the minor-and-patch group with 1 update: litellm.
Updates
litellmfrom 1.82.2 to 1.82.3Release notes
Sourced from litellm's releases.
... (truncated)
Commits
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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