From a3f3e2aec5916651a0c7ac280b99ef3fc3d2b3af Mon Sep 17 00:00:00 2001 From: Guillaume Lours <705411+glours@users.noreply.github.com> Date: Tue, 24 Jun 2025 16:15:25 +0200 Subject: [PATCH 1/2] release-notes for Compose v2.37.3 version Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> --- _vendor/modules.txt | 6 +++--- content/manuals/compose/releases/release-notes.md | 14 ++++++++++++++ go.mod | 8 ++++---- go.sum | 2 ++ hugo.yaml | 2 +- 5 files changed, 24 insertions(+), 8 deletions(-) diff --git a/_vendor/modules.txt b/_vendor/modules.txt index 8af292064cd6..c15ba1fb2f8a 100644 --- a/_vendor/modules.txt +++ b/_vendor/modules.txt @@ -1,7 +1,7 @@ # github.com/moby/moby v28.2.1+incompatible -# github.com/moby/buildkit v0.22.0 -# github.com/docker/buildx v0.24.0 +# github.com/moby/buildkit v0.23.1 +# github.com/docker/buildx v0.25.0 # github.com/docker/cli v28.2.2+incompatible -# github.com/docker/compose/v2 v2.37.2 +# github.com/docker/compose/v2 v2.37.3 # github.com/docker/model-cli v0.1.26-0.20250527144806-15d0078a3c01 # 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 1c362d40b687..cf29604d3c7a 100644 --- a/content/manuals/compose/releases/release-notes.md +++ b/content/manuals/compose/releases/release-notes.md @@ -13,6 +13,20 @@ aliases: For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/). +## 2.37.3 + +{{< release-date date="2025-06-24" >}} + +### Bug fixes and enhancements + +- Added support of `cache_to` for bake +- Fixed issue with bake integration +- Fixed multiple issues affecting `run` command + +### Update + +- Dependencies upgrade: bump buildkit to v0.23.1 + ## 2.37.2 {{< release-date date="2025-06-20" >}} diff --git a/go.mod b/go.mod index debdb6db4b62..3d619e7648b2 100644 --- a/go.mod +++ b/go.mod @@ -3,19 +3,19 @@ module github.com/docker/docs go 1.24.0 require ( - github.com/docker/buildx v0.24.0 // indirect + github.com/docker/buildx v0.25.0 // indirect github.com/docker/cli v28.2.2+incompatible // indirect - github.com/docker/compose/v2 v2.37.2 // indirect + github.com/docker/compose/v2 v2.37.3 // indirect github.com/docker/model-cli v0.1.26-0.20250527144806-15d0078a3c01 // indirect github.com/docker/scout-cli v1.15.0 // indirect - github.com/moby/buildkit v0.22.0 // indirect + github.com/moby/buildkit v0.23.1 // indirect github.com/moby/moby v28.2.1+incompatible // indirect ) replace ( github.com/docker/buildx => github.com/docker/buildx v0.24.0 github.com/docker/cli => github.com/docker/cli v28.2.1+incompatible - github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.37.1 + github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.37.3 github.com/docker/model-cli => github.com/docker/model-cli v0.1.26-0.20250527144806-15d0078a3c01 github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0 github.com/moby/buildkit => github.com/moby/buildkit v0.22.0 diff --git a/go.sum b/go.sum index 55f92ffe3dc5..b263d8521fcb 100644 --- a/go.sum +++ b/go.sum @@ -26,6 +26,8 @@ github.com/docker/compose/v2 v2.37.0 h1:R8Yik9ssiRz7T9BRfdOZy0xHDzOFPIJX40DrxzJ6 github.com/docker/compose/v2 v2.37.0/go.mod h1:twDoqUBFO2L5+vccJjkR6shQOH8C50V8AAQPxlkFr2Q= github.com/docker/compose/v2 v2.37.1 h1:d/LO338bB7jxHvQwVHSBAjIgitDK2+Dl5IXJImL/bAA= github.com/docker/compose/v2 v2.37.1/go.mod h1:yyprfHgPYV+ydOoL1gp8nIIlZ730ughSvz8D1VamayU= +github.com/docker/compose/v2 v2.37.3 h1:RKaTVsWmqvJd6GP9EWPZ6fu4ezl8tfG1V7bRijToGJI= +github.com/docker/compose/v2 v2.37.3/go.mod h1:U5PKGy7r7M7u2oVhz41NzlNglJFCdMrrThBOH5x00hk= 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= diff --git a/hugo.yaml b/hugo.yaml index 7b9e59b1996c..e6bb2ee552aa 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -140,7 +140,7 @@ params: # (Used to show e.g., "latest" and "latest"-1 in engine install examples docker_ce_version_prev: "28.1.0" # Latest Docker Compose version - compose_version: "v2.37.2" + compose_version: "v2.37.3" # Latest BuildKit version buildkit_version: "0.22.0" From b841cf688da343af2530278fb00513e96c13e149 Mon Sep 17 00:00:00 2001 From: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Date: Tue, 24 Jun 2025 16:31:21 +0100 Subject: [PATCH 2/2] Apply suggestions from code review --- content/manuals/compose/releases/release-notes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manuals/compose/releases/release-notes.md b/content/manuals/compose/releases/release-notes.md index cf29604d3c7a..b629c8d4098e 100644 --- a/content/manuals/compose/releases/release-notes.md +++ b/content/manuals/compose/releases/release-notes.md @@ -19,8 +19,8 @@ For more detailed information, see the [release notes in the Compose repo](https ### Bug fixes and enhancements -- Added support of `cache_to` for bake -- Fixed issue with bake integration +- Added support of `cache_to` for Bake +- Fixed issue with Bake integration - Fixed multiple issues affecting `run` command ### Update