Each of your Workers now has a new overview page in the Cloudflare dashboard. The goal is to make it easier to understand your Worker without digging through multiple tabs. Think of it as a new home base, a place to get a high-level overview on what's going on. It's the first place you land when you open a Worker in...
Workers - New Overview Page for Cloudflare Workers
Cloudflare Developer Platform Changelog · 2025-10-07
Related items
Workers - One-click Cloudflare Access for Workers
You can now enable Cloudflare Access for your workers.dev and Preview URLs in a single click. Access allows you to limit access to your Workers to specific users or groups. You can limit access to yourself, your teammates, your organization, or anyone else you specify in your Access policy . To enable Cloudflare Acc...
Workers - Build image policies for Workers Builds and Cloudflare Pages
We've published build image policies for Workers Builds and Cloudflare Pages , which establish: Minor version updates : We typically update preinstalled software to the latest available minor version without notice. For tools that don't follow semantic versioning (e.g., Bun or Hugo), we provide 3 months’ notice. Maj...
Workers - A new, simpler REST API for Cloudflare Workers (Beta)
You can now manage Workers , Versions , and Deployments as separate resources with a new, resource-oriented API (Beta). This new API is supported in the Cloudflare Terraform provider and the Cloudflare Typescript SDK , allowing platform teams to manage a Worker's infrastructure in Terraform, while development teams...
Workers - Built with Cloudflare button
We've updated our "Built with Cloudflare" button to make it easier to share that you're building on Cloudflare with the world. Embed it in your project's README, blog post, or wherever you want to let people know. Check out the documentation for usage information.
Workers - Better local deployment flow for Cloudflare Workers
Until now, if a Worker had been previously deployed via the Cloudflare Dashboard , a subsequent deployment done via the Cloudflare Workers CLI, Wrangler (through the deploy command ), would allow the user to override the Worker's dashboard settings without providing details on what dashboard settings would be lost....
Workers - Support for ctx.exports in @cloudflare/vitest-pool-workers
The @cloudflare/vitest-pool-workers package now supports the ctx.exports API , allowing you to access your Worker's top-level exports during tests. You can access ctx.exports in unit tests by calling createExecutionContext() : import { createExecutionContext } from "cloudflare:test" ; import { it , expect } from "vi...