Check which version is currently live in production

versions & rollback

// what it does

`deployments status` shows the current production state — which version(s) serve traffic and at what split. `deployments list` shows the 10 most recent deployments so you can see history and grab a version ID to roll back to. Run these before and after a deploy to confirm what users are actually running.

// shell

$ wrangler deployments status
$ wrangler deployments list

// gotcha

Deployments (routing events) are distinct from versions (uploaded builds) — a version can exist without ever being deployed. Only the 10 most recent deployments are shown.