Skip to content

bump: version 1.96.1 → 1.96.2 (1.96.1 burned by the PyPI storage failure) - #36570

Merged
yuneng-berri merged 2 commits into
stable/1.96.xfrom
litellm_bump_version_1_96_2
Aug 11, 2026
Merged

bump: version 1.96.1 → 1.96.2 (1.96.1 burned by the PyPI storage failure)#36570
yuneng-berri merged 2 commits into
stable/1.96.xfrom
litellm_bump_version_1_96_2

Conversation

@yuneng-berri

@yuneng-berri yuneng-berri commented Aug 11, 2026

Copy link
Copy Markdown
Collaborator

Bumps stable/1.96.x from 1.96.1 → 1.96.2. No code changes — version only.

Why

The v1.96.1 release run exhausted the PyPI project storage quota partway
through the upload, so 1.96.1 is now a permanently incomplete release:

Surface State
PyPI litellm==1.96.1 4 of 36 files (only cp310 × 4 platforms, uploaded 2026-08-11 02:31–02:32Z) — no sdist, no cp311–cp314
PyPI litellm==1.96.0 (reference) 36 files
DockerHub litellm/litellm:v1.96.1 absent (404)
GHCR ghcr.io/berriai/litellm:v1.96.1 absent
git tag v1.96.1 absent
branch release/v1.96.1 absent

PyPI filenames are immutable — the 4 uploaded files can never be replaced. Strictly
speaking the 32 missing files could still be pushed under 1.96.1 (the publish
steps run skip-existing: true, so a re-run would fill the gaps rather than error),
but that would ship a stable version whose artifacts come from two different builds
days apart, with no guarantee the rebuilt wheels match the four already on the index.
That's not something to do to a stable release. Treating 1.96.1 as burned and
moving to 1.96.2 is the clean call.

Nothing downstream consumed 1.96.1 (no image, no tag, no release branch), so the
bump skips nothing and strands nothing.

What's in here

Same two-commit shape as the 1.96.1 bump on this line:

  • bump: version 1.96.1 → 1.96.2pyproject.toml only ([project].version +
    [tool.commitizen].version), produced by cz bump --increment PATCH
  • chore: refresh uv.lock for 1.96.2uv lock run with the line's own uv pin
    (0.11.7, per Dockerfile UV_IMAGE)

Total diff: 4 lines across 2 files. The lock refresh moved only the project's
own entry (litellm 1.96.1 → 1.96.2) plus the rolling exclude-newer timestamp
— no third-party package version moved, and revision = 3 / format fields are
unchanged. No git tag was created (tagging is release.yml's job).

Subpackages: not bumped, and that's correct

litellm-enterprise (0.1.53) and litellm-proxy-extras (0.4.81) are unchanged
on this line and are already fully published on PyPI (2 files each, from
2026-08-03 and 2026-07-29 respectively — i.e. before the failed run, not casualties
of it). The publish workflows use skip-existing: true, so re-publishing them at
1.96.2 is a no-op rather than an error.

Before re-running the release

The storage quota that killed the run is not addressed by this PR. If the PyPI
project limit is still exhausted, 1.96.2 will fail exactly the same way and burn
another version — confirm the quota has been raised before dispatching.

@yuneng-berri
yuneng-berri requested a review from a team August 11, 2026 20:22
@greptile-apps

greptile-apps Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

This PR advances the LiteLLM release version from 1.96.1 to 1.96.2 after the incomplete 1.96.1 publication.

  • Updates both root version declarations in pyproject.toml.
  • Refreshes the editable root package version and generated cutoff timestamp in uv.lock.
  • Leaves independently versioned workspace packages and all third-party dependency versions unchanged.

Confidence Score: 5/5

The PR appears safe to merge because the release version is consistently updated and the lockfile remains coordinated with the project metadata.

The changed manifests agree on version 1.96.2, independently versioned workspace packages require no coordinated bump, and frozen installations continue using the same pinned third-party dependencies.

Important Files Changed

Filename Overview
pyproject.toml Consistently updates the project and Commitizen versions to 1.96.2 without changing dependencies or package behavior.
uv.lock Updates the editable LiteLLM package to 1.96.2 and refreshes expected lock-generation metadata without moving third-party packages.

Reviews (1): Last reviewed commit: "chore: refresh uv.lock for 1.96.2" | Re-trigger Greptile

@yuneng-berri
yuneng-berri enabled auto-merge August 11, 2026 20:43
@yuneng-berri
yuneng-berri merged commit 83d6d84 into stable/1.96.x Aug 11, 2026
4 of 6 checks passed
@yuneng-berri
yuneng-berri deleted the litellm_bump_version_1_96_2 branch August 11, 2026 20:43
doonga pushed a commit to greyrock-labs/home-ops that referenced this pull request Aug 12, 2026
….2) (#315)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/berriai/litellm](https://images.chainguard.dev/directory/image/wolfi-base/overview) ([source](https://github.com/BerriAI/litellm)) | patch | `v1.96.0` → `v1.96.2` |

---

### Release Notes

<details>
<summary>BerriAI/litellm (ghcr.io/berriai/litellm)</summary>

### [`v1.96.2`](https://github.com/BerriAI/litellm/releases/tag/v1.96.2)

[Compare Source](BerriAI/litellm@v1.96.2...v1.96.2)

##### Verify Docker Image Signature

All LiteLLM Docker images are signed with [cosign](https://docs.sigstore.dev/cosign/overview/). Every release is signed with the same key introduced in [commit `0112e53`](BerriAI/litellm@0112e53).

**Verify using the pinned commit hash (recommended):**

A commit hash is cryptographically immutable, so this is the strongest way to ensure you are using the original signing key:

```bash
cosign verify \
  --key https://raw.githubusercontent.com/BerriAI/litellm/0112e53046018d726492c814b3644b7d376029d0/cosign.pub \
  ghcr.io/berriai/litellm:v1.96.2
```

**Verify using the release tag (convenience):**

Tags are protected in this repository and resolve to the same key. This option is easier to read but relies on tag protection rules:

```bash
cosign verify \
  --key https://raw.githubusercontent.com/BerriAI/litellm/v1.96.2/cosign.pub \
  ghcr.io/berriai/litellm:v1.96.2
```

Expected output:

```
The following checks were performed on each of these signatures:
  - The cosign claims were validated
  - The signatures were verified against the specified public key
```

***

##### What's Changed

- chore(release): backport proxy request-handling maintenance and refresh runtime deps for 1.96.1 by [@&#8203;yuneng-berri](https://github.com/yuneng-berri) in [#&#8203;36494](BerriAI/litellm#36494)
- bump: version 1.96.1 → 1.96.2 (1.96.1 burned by the PyPI storage failure) by [@&#8203;yuneng-berri](https://github.com/yuneng-berri) in [#&#8203;36570](BerriAI/litellm#36570)

**Full Changelog**: <BerriAI/litellm@v1.96.0...v1.96.2>

### [`v1.96.2`](https://github.com/BerriAI/litellm/releases/tag/v1.96.2)

[Compare Source](BerriAI/litellm@v1.96.0...v1.96.2)

##### Verify Docker Image Signature

All LiteLLM Docker images are signed with [cosign](https://docs.sigstore.dev/cosign/overview/). Every release is signed with the same key introduced in [commit `0112e53`](BerriAI/litellm@0112e53).

**Verify using the pinned commit hash (recommended):**

A commit hash is cryptographically immutable, so this is the strongest way to ensure you are using the original signing key:

```bash
cosign verify \
  --key https://raw.githubusercontent.com/BerriAI/litellm/0112e53046018d726492c814b3644b7d376029d0/cosign.pub \
  ghcr.io/berriai/litellm:v1.96.2
```

**Verify using the release tag (convenience):**

Tags are protected in this repository and resolve to the same key. This option is easier to read but relies on tag protection rules:

```bash
cosign verify \
  --key https://raw.githubusercontent.com/BerriAI/litellm/v1.96.2/cosign.pub \
  ghcr.io/berriai/litellm:v1.96.2
```

Expected output:

```
The following checks were performed on each of these signatures:
  - The cosign claims were validated
  - The signatures were verified against the specified public key
```

***

##### What's Changed

- chore(release): backport proxy request-handling maintenance and refresh runtime deps for 1.96.1 by [@&#8203;yuneng-berri](https://github.com/yuneng-berri) in [#&#8203;36494](BerriAI/litellm#36494)
- bump: version 1.96.1 → 1.96.2 (1.96.1 burned by the PyPI storage failure) by [@&#8203;yuneng-berri](https://github.com/yuneng-berri) in [#&#8203;36570](BerriAI/litellm#36570)

**Full Changelog**: <BerriAI/litellm@v1.96.0...v1.96.2>

</details>

---

### Configuration

📅 **Schedule**: (in timezone America/New_York)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC43LjQiLCJ1cGRhdGVkSW5WZXIiOiI0NC43LjQiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->

Reviewed-on: https://git.greyrock.io/greyrock-labs/home-ops/pulls/315
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants