From da13512a3d8dff41195c4d4671d9a0905547be7b Mon Sep 17 00:00:00 2001 From: Nicolas De loof Date: Thu, 13 Feb 2025 14:32:49 +0100 Subject: [PATCH] Bump compose v2.33.0 (#22025) ## Description Bump compose to v2.33.0 ## Related issues or tickets https://docker.atlassian.net/browse/APCLI-966 ## 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 | 39 +++++++++++++++++++ go.mod | 2 +- hugo.yaml | 2 +- 4 files changed, 42 insertions(+), 3 deletions(-) diff --git a/_vendor/modules.txt b/_vendor/modules.txt index ae4caa5155..24989ba511 100644 --- a/_vendor/modules.txt +++ b/_vendor/modules.txt @@ -2,5 +2,5 @@ # github.com/moby/buildkit v0.19.0 # github.com/docker/buildx v0.20.1 # github.com/docker/cli v27.5.1+incompatible -# github.com/docker/compose/v2 v2.32.4 +# github.com/docker/compose/v2 v2.33.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 3cf8874e34..4a93a7da33 100644 --- a/content/manuals/compose/releases/release-notes.md +++ b/content/manuals/compose/releases/release-notes.md @@ -13,6 +13,45 @@ aliases: For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/). +## 2.33.0 + +{{< release-date date="2025-02-13" >}} + +### Bug fixes and enhancements + +- Introduced a hint to promote the use of [Bake](/build/bake/) +- Introduced support for the `additional_context` attribute referencing another service +- Added support for `BUILDKIT_PROGRESS` +- Compose now warns you when a published Compose application includes environment variables +- Added a `--with-env` flag to publish a Compose application with environment variables +- Updated `ls --quiet` help description +- Fixed multiple issues delegating build to Bake +- Updated help in `stats` command +- Fixed support for "builtin" seccomp profile +- Fixed support for `watch` with multiple services +- Removed exit code per error type used by legacy metrics system +- Fixed test coverage for `compatibility` +- Removed raw os.Args sent to OpenTelemetry +- Enabled copyloopvar linter +- Fixed provenance for binaries and generate SBOM +- Main branch for docs upstream validation is now used +- Added codeowners file +- Added Docker Engine v28.x to the test-matrix + +### Update + +- Dependencies upgrade: Bump compose-go v2.4.8 +- Dependencies upgrade: Bump buildx v0.20.1 +- Dependencies upgrade: Bump docker to v27.5.1 +- Dependencies upgrade: Bump golangci-lint to v1.63.4 +- Dependencies upgrade: Bump golang.org/x/sys from 0.28.0 to 0.30.0 +- Dependencies upgrade: Bump github.com/moby/term v0.5.2 +- Dependencies upgrade: Bump github.com/otiai10/copy from 1.14.0 to 1.14.1 +- Dependencies upgrade: Bump github.com/jonboulle/clockwork from 0.4.0 to 0.5.0 +- Dependencies upgrade: Bump github.com/spf13/pflag from 1.0.5 to 1.0.6 +- Dependencies upgrade: Bump golang.org/x/sync from 0.10.0 to 0.11.0 +- Dependencies upgrade: Bump gotest.tools/v3 from 3.5.1 to 3.5.2 + ## 2.32.4 {{< release-date date="2025-01-16" >}} diff --git a/go.mod b/go.mod index fc8141cfeb..01444cbfba 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.23.1 require ( github.com/docker/buildx v0.20.1 // indirect github.com/docker/cli v27.5.1+incompatible // indirect - github.com/docker/compose/v2 v2.32.4 // indirect + github.com/docker/compose/v2 v2.33.0 // indirect github.com/docker/scout-cli v1.15.0 // indirect github.com/moby/buildkit v0.19.0 // indirect github.com/moby/moby v27.5.1+incompatible // indirect diff --git a/hugo.yaml b/hugo.yaml index f82c878f76..8a0fae47d5 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -118,7 +118,7 @@ params: # (Used to show e.g., "latest" and "latest"-1 in engine install examples docker_ce_version_prev: "27.5.0" # Latest Docker Compose version - compose_version: "v2.32.4" + compose_version: "v2.33.0" # Latest BuildKit version buildkit_version: "0.16.0"