Check What Version Is Live and Review History

logs & debug

// what it does

`status` shows the deployment currently serving production traffic; `list` shows the 10 most recent deployments with their version IDs and timestamps. Run these to confirm a `wrangler deploy` actually landed, or to see what changed before logs went sideways.

// shell

$ wrangler deployments status
$ wrangler deployments list

// gotcha

`list` only returns the 10 most recent deployments, and `deploy` always creates a new one — if your fix isn't live, check that the active version-id in `status` matches your latest build rather than assuming the push took.