Original text is not available for public display.
Workers, Pages - Smart Placement is smarter about running Workers and Pages Functions in the best locations
Cloudflare Developer Platform Changelog · 2025-03-22
Related items
Workers - Wrangler and the Cloudflare Vite plugin support `.env` files in local development
Now, you can use .env files to provide secrets and override environment variables on the env object during local development with Wrangler and the Cloudflare Vite plugin. Previously in local development, if you wanted to provide secrets or environment variables during local development, you had to use .dev.vars file...
Workflows, Workers - Workflow instances now support pause(), resume(), restart(), and terminate() methods in local development
Workflow instance methods pause() , resume() , restart() , and terminate() are now available in local development when using wrangler dev . You can now test the full Workflow instance lifecycle locally: const instance = await env . MYWORKFLOW . create ( { id : "my-instance-id" , } ) ; await instance . pause () ; //...
Workers - Control which routes invoke your Worker script for Single Page Applications
For those building Single Page Applications (SPAs) on Workers , you can now explicitly define which routes invoke your Worker script in Wrangler configuration. The runworkerfirst config option has now been expanded to accept an array of route patterns, allowing you to more granularly specify when your Worker script...
Making Rust Workers reliable: panic and abort recovery in wasm‑bindgen
Panics in Rust Workers were historically fatal, poisoning the entire instance. By collaborating upstream on the wasm‑bindgen project, Rust Workers now support resilient critical error recovery, including panic unwinding using WebAssembly Exception Handling.
Workers - CPU time and Wall time now published for Workers Invocations
You can now observe and investigate the CPU time and Wall time for every Workers Invocations. For Workers Logs , CPU time and Wall time are surfaced in the Invocation Log .. For Tail Workers , CPU time and Wall time are surfaced at the top level of the Workers Trace Events object . For Workers Logpush , CPU and Wall...
Workers - The Node.js and Web File System APIs in Workers
Implementations of the node:fs module and the Web File System API are now available in Workers. Using the node:fs module The node:fs module provides access to a virtual file system in Workers. You can use it to read and write files, create directories, and perform other file system operations. The virtual file syste...