Workers Builds now supports up to 64 environment variables, and each environment variable can be up to 5 KB in size. The previous limit was 5 KB total across all environment variables. This change enables better support for complex build configurations, larger application settings, and more flexible CI/CD workflows....
Workers - Environment variable limits increase for Workers Builds
Cloudflare Developer Platform Changelog · 2025-11-21
Related items
Workers - Access git commit sha and branch name as environment variables in Workers Builds
Workers Builds connects your Worker to a Git repository , and automates building and deploying your code on each pushed change. To make CI/CD pipelines even more flexible, Workers Builds now automatically injects default environment variables into your build process (much like the defaults in Cloudflare Pages projec...
Workers - Increased disk space for Workers Builds
As part of the ongoing open beta for Workers Builds , we’ve increased the available disk space for builds from 8 GB to 20 GB for both Free and Paid plans. This provides more space for larger projects, dependencies, and build artifacts while improving overall build reliability. Metric Free Plan Paid Plans Disk Space...
Workers - Increased vCPU for Workers Builds on paid plans
We recently increased the available disk space from 8 GB to 20 GB for all plans. Building on that improvement, we’re now doubling the CPU power available for paid plans — from 2 vCPU to 4 vCPU . These changes continue our focus on making Workers Builds faster and more reliable. Metric Free Plan Paid Plans CPU 2 vCPU...
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, Workers for Platforms - Increased static asset limits for Workers
You can now upload up to 100,000 static assets per Worker version Paid and Workers for Platforms users can now upload up to 100,000 static assets per Worker version, a 5x increase from the previous limit of 20,000. Customers on the free plan still have the same limit as before — 20,000 static assets per version of y...
Workers - Select Wrangler environments using the CLOUDFLARE_ENV environment variable
Wrangler now supports using the CLOUDFLAREENV environment variable to select the active environment for your Worker commands. This provides a more flexible way to manage environments, especially when working with build tools and CI/CD pipelines. What's new Environment selection via environment variable: Set CLOUDFLA...