The number of recent versions available for a Worker rollback has been increased from 10 to 100. This allows you to: Promote any of the 100 most recent versions to be the active deployment. Split traffic using gradual deployments between your latest code and any of the 100 most recent versions. You can do this throu...
Workers - Worker version rollback limit increased from 10 to 100
Cloudflare Developer Platform Changelog · 2025-09-11
Related items
KV - Workers KV namespace limits increased to 1000
You can now have up to 1000 Workers KV namespaces per account. Workers KV namespace limits were increased from 200 to 1000 for all accounts. Higher limits for Workers KV namespaces enable better organization of key-value data, such as by category, tenant, or environment. Consult the Workers KV limits documentation f...
Workers - Worker startup time limit increased to 1 second
You can now upload a Worker that takes up 1 second to parse and execute its global scope. Previously, startup time was limited to 400 ms. This allows you to run Workers that import more complex packages and execute more code prior to requests being handled. For more information, see the documentation on Workers star...
Workflows, Workers - Workflows step limit increased to 25,000 steps per instance
Each Workflow on Workers Paid now supports 10,000 steps by default, configurable up to 25,000 steps in your wrangler.jsonc file: { " workflows " : [ { " name " : "my-workflow" , " binding " : "MYWORKFLOW" , " classname " : "MyWorkflow" , " limits " : { " steps " : 25000 } } ] } Previously, each instance was limited...
Workers, Browser Run - Increased Browser Rendering limits!
Browser Rendering now supports 10 concurrent browser instances per account and 10 new instances per minute, up from the previous limits of 2. This allows you to launch more browser tasks from Cloudflare Workers . To manage concurrent browser sessions, you can use Queues or Workflows : JavaScript export default { asy...
Workers, Durable Objects, Browser Run - Workers WebSocket message size limit increased from 1 MiB to 32 MiB
Workers, including those using Durable Objects and Browser Rendering , may now process WebSocket messages up to 32 MiB in size. Previously, this limit was 1 MiB. This change allows Workers to handle use cases requiring large message sizes, such as processing Chrome Devtools Protocol messages. For more information, p...
Pages - Increased Pages file limit to 100,000 for paid plans
Paid plans can now have up to 100,000 files per Pages site, increased from the previous limit of 20,000 files. To enable this increased limit, set the environment variable PAGESWRANGLERMAJORVERSION=4 in your Pages project settings. The Free plan remains at 20,000 files per site. For more details, refer to the Pages...