fix(docs): correct Docker image tag in v1.82.0 release notes - #23537
Merged
RheagalFire merged 5 commits intoMar 13, 2026
Conversation
bump: version 1.82.1 → 1.82.2
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Add missing 'v' prefix to Docker image tag: main-1.82.0-stable → main-v1.82.0-stable Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Greptile SummaryThis PR corrects a typo in the v1.82.0 release notes where the Docker image tag was missing the
Confidence Score: 5/5
|
| Filename | Overview |
|---|---|
| docs/my-website/release_notes/v1.82.0.md | Single-character fix: adds missing v prefix to Docker image tag in the docker run snippet (main-1.82.0-stable → main-v1.82.0-stable). Change is correct and matches the established tagging convention used in other release notes. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[User reads v1.82.0 release notes] --> B{Copy docker run command}
B -- Before fix --> C["ghcr.io/berriai/litellm:main-1.82.0-stable"]
B -- After fix --> D["ghcr.io/berriai/litellm:main-v1.82.0-stable"]
C --> E["❌ docker pull fails\n(tag does not exist)"]
D --> F["✅ docker pull succeeds\n(tag exists in GHCR)"]
Last reviewed commit: d7c6b95
RheagalFire
approved these changes
Mar 13, 2026
RheagalFire
changed the base branch from
main
to
litellm_oss_staging_03_13_2026
March 13, 2026 18:08
RheagalFire
merged commit Mar 13, 2026
43db397
into
BerriAI:litellm_oss_staging_03_13_2026
29 of 37 checks passed
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.
Summary
main-1.82.0-stable→main-v1.82.0-stablevprefix was missing, which would causedocker pullto fail with the copied commandTest plan
🤖 Generated with Claude Code