Minor Changes
-
#12656
ae047eeThanks @mikenomitch! - Add--containers-rollout=noneThis allows you to skip deploying a container. This is useful if you know that your container is not going to be updated or you don't have Docker locally, but still want to make changes to your Worker.
Patch Changes
-
#13950
f78d435Thanks @dario-piotrowicz! - Improve the Docker CLI error message to be more actionable.Include a link to Docker installation docs, platform-specific instructions for starting the daemon, and guidance for alternative Docker-compatible CLIs.
-
#13950
f78d435Thanks @dario-piotrowicz! - RefactorverifyDockerInstalledto accept an options object instead of positional parametersThe function signature changed from
(dockerPath: string, isDev?: boolean)to({ dockerPath, isDev }: { dockerPath: string; isDev?: boolean })for improved readability and extensibility.