Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Increased version rollback limit from 10 to 100
description: Workers can now deploy and rollback to their most recent 100 versions, up from the previous limit of 10.
products:
- workers
date: 2025-09-11
---

Workers can now deploy and rollback to their most recent **100 versions**, a significant increase from the previous limit of 10 versions. You can roll back to any of the 100 most recent versions using either [Wrangler's rollback command](/workers/wrangler/commands/#rollback) or through the Cloudflare dashboard.

Learn more about [versions and deployments](/workers/configuration/versions-and-deployments/) and [rollbacks](/workers/configuration/versions-and-deployments/rollbacks/) in the Workers documentation.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ See examples of creating a Worker, Versions, and Deployments directly with the A

#### Via Wrangler

Wrangler allows you to view the 10 most recent versions and deployments. Refer to the [`versions list`](/workers/wrangler/commands/#list-4) and [`deployments`](/workers/wrangler/commands/#list-5) documentation to view the commands.
Wrangler allows you to view the 100 most recent versions and deployments. Refer to the [`versions list`](/workers/wrangler/commands/#list-4) and [`deployments`](/workers/wrangler/commands/#list-5) documentation to view the commands.

#### Via the Cloudflare dashboard

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,15 @@ Errors could occur if using code for a prior version if the structure of data ha

### Rollbacks limit

You can only roll back to the 10 most recently published versions.
You can only roll back to the 100 most recently published versions.

:::note

When using Wrangler in interactive mode, only the 10 most recent versions will be displayed for selection. To roll back to an older version (beyond the 10 most recent), you must specify the version ID directly on the command line. Refer to the [`wrangler versions deploy`](/workers/wrangler/commands/#versions-deploy) documentation for details on specifying version IDs.

We plan to address this limitation soon to allow displaying all 100 available versions in interactive mode.

:::

### Bindings

Expand Down