Original text is not available for public display.
Workers - Access Workers preview URLs from the Build details page
Cloudflare Developer Platform Changelog · 2025-10-30
Related items
Workers - Preview URLs now default to opt-in
To prevent the accidental exposure of applications, we've updated how Worker preview URLs ( PREVIEW-WORKERNAME.SUBDOMAIN.workers.dev ) are handled. We made this change to ensure preview URLs are only active when intentionally configured, improving the default security posture of your Workers. One-Time Update for Wor...
Workers, Pages - Retry Pages & Workers Builds Directly from GitHub
You can now retry your Cloudflare Pages and Workers builds directly from GitHub. No need to switch to the Cloudflare Dashboard for a simple retry! Let\u2019s say you push a commit, but your build fails due to a spurious error like a network timeout. Instead of going to the Cloudflare Dashboard to manually retry, you...
Agents, Workers - Build MCP servers with the Agents SDK
The Agents SDK now includes built-in support for building remote MCP (Model Context Protocol) servers directly as part of your Agent. This allows you to easily create and manage MCP servers, without the need for additional infrastructure or configuration. The SDK includes a new MCPAgent class that extends the Agent...
Workers - Workers per-branch preview URLs now support long branch names
We've updated preview URLs for Cloudflare Workers to support long branch names. Previously, branch and Worker names exceeding the 63-character DNS limit would cause alias generation to fail, leaving pull requests without aliased preview URLs. This particularly impacted teams relying on descriptive branch naming. Now...
Workers - Access your Worker's environment variables from process.env
You can now access environment variables and secrets on process.env when using the nodejscompat compatibility flag . const apiClient = ApiClient . new ( { apiKey : process . env . APIKEY } ) ; const LOGLEVEL = process . env . LOGLEVEL || "info" ; In Node.js, environment variables are exposed via the global process.e...
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...