diff --git a/_vendor/modules.txt b/_vendor/modules.txt index 66e9abf550..63e05fa60d 100644 --- a/_vendor/modules.txt +++ b/_vendor/modules.txt @@ -3,4 +3,4 @@ # github.com/docker/buildx v0.13.1 # github.com/docker/scout-cli v1.4.1 # github.com/docker/cli v26.0.0-rc1+incompatible -# github.com/docker/compose/v2 v2.24.7 +# github.com/docker/compose/v2 v2.25.0 diff --git a/content/compose/release-notes.md b/content/compose/release-notes.md index d375620bbe..0502a609bf 100644 --- a/content/compose/release-notes.md +++ b/content/compose/release-notes.md @@ -11,6 +11,18 @@ aliases: For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/). +## 2.25.0 +{{< release-date date="2024-03-15" >}} + + +### Update +- Dependencies upgrade: bump compose-go v2.0.0 + +### Bug fixes and enhancements +- Restored `config` hebaviour until `--no-interpolate` is set +- Fixed service name shell completion +- Added `--watch` flag to `up` command + ## 2.24.7 {{< release-date date="2024-03-06" >}} diff --git a/go.mod b/go.mod index f703b39588..a4e7c8cb39 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ toolchain go1.21.1 require ( github.com/docker/buildx v0.13.1 // indirect github.com/docker/cli v26.0.0-rc1+incompatible // indirect - github.com/docker/compose/v2 v2.24.7 // indirect + github.com/docker/compose/v2 v2.25.0 // indirect github.com/docker/scout-cli v1.4.1 // indirect github.com/moby/buildkit v0.13.0 // indirect github.com/moby/moby v25.0.4+incompatible // indirect diff --git a/hugo.yaml b/hugo.yaml index 9fa42d58e4..a5f1ff58ed 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -96,7 +96,7 @@ params: latest_engine_api_version: "1.44" docker_ce_version: "25.0.4" - compose_version: "v2.24.7" + compose_version: "v2.25.0" compose_file_v3: "3.8" compose_file_v2: "2.4" buildkit_version: "0.12.3"