Wrangler now includes built-in shell tab completion support, making it faster and easier to navigate commands without memorizing every option. Press Tab as you type to autocomplete commands, subcommands, flags, and even option values like log levels. Tab completions are supported for Bash, Zsh, Fish, and PowerShell....
Workers - Shell tab completions for Wrangler CLI
Cloudflare Developer Platform Changelog · 2026-01-09
Related items
Workers - Capture Wrangler command output in structured format
You can now capture Wrangler command output in a structured ND-JSON format by setting the WRANGLEROUTPUTFILEPATH or WRANGLEROUTPUTFILEDIRECTORY environment variables. This feature is particularly useful for CI/CD pipelines and automation tools that need programmatic access to deployment information such as worker na...
Workflows, Workers - All Wrangler commands for Workflows now support local development
All wrangler workflows commands now accept a --local flag to target a Workflow running in a local wrangler dev session instead of the production API. You can now manage the full Workflow lifecycle locally, including triggering Workflows, listing instances, pausing, resuming, restarting, terminating, and sending even...
Workers - `wrangler types` now generates types for all environments
The wrangler types command now generates TypeScript types for bindings from all environments defined in your Wrangler configuration file by default. Previously, wrangler types only generated types for bindings in the top-level configuration (or a single environment when using the --env flag). This meant that if you...
Cloudflare Tunnel, Workers - Manage Cloudflare Tunnels with Wrangler
You can now manage Cloudflare Tunnels directly from Wrangler , the CLI for the Cloudflare Developer Platform. The new wrangler tunnel commands let you create, run, and manage tunnels without leaving your terminal. Available commands: wrangler tunnel create — Create a new remotely managed tunnel. wrangler tunnel list...
Workers - Improved support for running multiple Workers with `wrangler dev`
You can run multiple Workers in a single dev command by passing multiple config files to wrangler dev : wrangler dev --config ./web/wrangler.jsonc --config ./api/wrangler.jsonc Previously, if you ran the command above and then also ran wrangler dev for a different Worker, the Workers running in separate wrangler dev...
Workers - Use the latest JavaScript features with Wrangler CLI v4
We've released the next major version of Wrangler , the CLI for Cloudflare Workers — wrangler@4.0.0 . Wrangler v4 is a major release focused on updates to underlying systems and dependencies, along with improvements to keep Wrangler commands consistent and clear. You can run the following command to install it in yo...