Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion _vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# github.com/moby/buildkit v0.25.1
# github.com/docker/buildx v0.29.1
# github.com/docker/cli v28.5.1+incompatible
# github.com/docker/compose/v2 v2.40.2
# github.com/docker/compose/v2 v2.40.3
# github.com/docker/model-runner/cmd/cli v0.1.44
# github.com/docker/mcp-gateway v0.22.0
# github.com/docker/scout-cli v1.18.4
12 changes: 12 additions & 0 deletions content/manuals/compose/releases/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ aliases:

For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).

## 2.40.3

{{< release-date date="2025-10-30" >}}

### Bug fixes and enhancements

- Lifecycle hooks now apply to the `restart` command
- Improved override support when publishing OCI artifacts
- Fixed an issue to ensure an image exists only for targeted services with the `run` command
- Added a default Prompt implementation


## 2.40.2

{{< release-date date="2025-10-22" >}}
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ require (
github.com/dlclark/regexp2 v1.11.0 // indirect
github.com/docker/buildx v0.29.1 // indirect
github.com/docker/cli v28.5.1+incompatible // indirect; see "replace" rule at the bottom for actual version
github.com/docker/compose/v2 v2.40.2 // indirect
github.com/docker/compose/v2 v2.40.3 // indirect
github.com/docker/distribution v2.8.3+incompatible // indirect
github.com/docker/docker v28.5.1+incompatible // indirect; see "replace" rule at the bottom for actual version
github.com/docker/docker-credential-helpers v0.9.3 // indirect
Expand Down Expand Up @@ -132,7 +132,7 @@ require (
replace (
github.com/docker/buildx => github.com/docker/buildx v0.29.1
github.com/docker/cli => github.com/docker/cli v28.5.1+incompatible
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.40.2
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.40.3
github.com/docker/docker => github.com/docker/docker v28.4.0+incompatible
github.com/docker/mcp-gateway => github.com/docker/mcp-gateway v0.22.0
github.com/docker/model-runner/cmd/cli => github.com/docker/model-runner/cmd/cli v0.1.44
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ github.com/docker/compose/v2 v2.40.1 h1:05it8xe0xH3qVGx8KxHf8XFKrcWqY1RpJ0OHCPe+
github.com/docker/compose/v2 v2.40.1/go.mod h1:CbSJpKGw20LInVsPjglZ8z7Squ3OBQOD7Ux5nkjGfIU=
github.com/docker/compose/v2 v2.40.2 h1:h2bDBJkOuqmj93XvT2oI0ArPQonE0lGtWiILXdiXvbA=
github.com/docker/compose/v2 v2.40.2/go.mod h1:CbSJpKGw20LInVsPjglZ8z7Squ3OBQOD7Ux5nkjGfIU=
github.com/docker/compose/v2 v2.40.3 h1:XeYkQu1svDtyfZPv5nTwFryQ25ZJMkIlc4pz9HalMPI=
github.com/docker/compose/v2 v2.40.3/go.mod h1:iNY1tvoHTyN3C3QHCuWAgj3OjR2T6mGkk/qxfbBF/4M=
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
github.com/docker/docker v28.2.2+incompatible h1:CjwRSksz8Yo4+RmQ339Dp/D2tGO5JxwYeqtMOEe0LDw=
Expand Down
2 changes: 1 addition & 1 deletion hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ params:
# (Used to show e.g., "latest" and "latest"-1 in engine install examples
docker_ce_version_prev: "28.5.0"
# Latest Docker Compose version
compose_version: "v2.40.1"
compose_version: "v2.40.3"
# Latest BuildKit version
buildkit_version: "0.25.0"

Expand Down