From 9736a4bb9526ffbd7b49ce725f4fb7384d99a47c Mon Sep 17 00:00:00 2001 From: Nicolas De loof Date: Mon, 16 Dec 2024 09:58:26 +0100 Subject: [PATCH] Bump compose to v2.32.0 (#21626) ## Description Bump compose to v2.32.0 ## Related issues or tickets ## Reviews - [ ] Technical review - [ ] Editorial review - [ ] Product review --------- Signed-off-by: Nicolas De Loof Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> --- _vendor/modules.txt | 2 +- .../manuals/compose/releases/release-notes.md | 25 +++++++++++++++++++ go.mod | 2 +- hugo.yaml | 2 +- 4 files changed, 28 insertions(+), 3 deletions(-) diff --git a/_vendor/modules.txt b/_vendor/modules.txt index e0b9fdce71a..77efffc0e10 100644 --- a/_vendor/modules.txt +++ b/_vendor/modules.txt @@ -2,5 +2,5 @@ # github.com/moby/buildkit v0.18.0 # github.com/docker/buildx v0.19.2 # github.com/docker/cli v27.4.0+incompatible -# github.com/docker/compose/v2 v2.31.0 +# github.com/docker/compose/v2 v2.32.0 # github.com/docker/scout-cli v1.15.0 diff --git a/content/manuals/compose/releases/release-notes.md b/content/manuals/compose/releases/release-notes.md index ff14e92aca6..2b4729c9fcd 100644 --- a/content/manuals/compose/releases/release-notes.md +++ b/content/manuals/compose/releases/release-notes.md @@ -13,6 +13,31 @@ aliases: For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/). +## 2.32.0 + +{{< release-date date="2024-12-13" >}} + +### Update + +- Dependencies upgrade: bump docker + buildx to latest release +- Dependencies upgrade: bump otel dependencies to v1.28.0 and v0.53.0 +- Dependencies upgrade: bump golang.org/x/sys 0.28.0 +- Dependencies upgrade: bump golang.org/x/crypto to 0.31.0 +- Dependencies upgrade: bump google.golang.org/grpc to 1.68.1 +- Dependencies upgrade: bump golang.org/x/sync 0.10.0 +- Dependencies upgrade: bump xx to v1.6.1 + +### Bug fixes and enhancements + +- Improved support when building with [Bake](/manuals/build/bake.md) +- Added `restart` and `sync+exec` watch actions +- Compose now recreates containers when the volume or network configuration changes +- Fixed support for `mac_address` +- Fixed `pull --quiet` to only hide progress, not global status +- Fixed an issue where only the `rebuild` watch action now requires a build declaration +- Compose now logs `watch` configuration error when enabled through the Compose menu + + ## 2.31.0 {{< release-date date="2024-11-28" >}} diff --git a/go.mod b/go.mod index 9f2ade109a4..752e39197d3 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.23.1 require ( github.com/docker/buildx v0.19.2 // indirect github.com/docker/cli v27.4.0+incompatible // indirect - github.com/docker/compose/v2 v2.31.0 // indirect + github.com/docker/compose/v2 v2.32.0 // indirect github.com/docker/scout-cli v1.15.0 // indirect github.com/moby/buildkit v0.18.0 // indirect github.com/moby/moby v27.4.0+incompatible // indirect diff --git a/hugo.yaml b/hugo.yaml index 9ef72604c38..56a269f10a1 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -109,7 +109,7 @@ params: latest_engine_api_version: "1.47" docker_ce_version: "27.4.0" docker_ce_version_prev: "27.3.1" - compose_version: "v2.30.3" + compose_version: "v2.32.0" compose_file_v3: "3.8" compose_file_v2: "2.4" buildkit_version: "0.16.0"