Merge pull request #22906 from glours/release-notes-compose-v2.37.3

release-notes for Compose v2.37.3 version
This commit is contained in:
Guillaume Lours
2025-06-24 17:36:14 +02:00
committed by GitHub
parent 6dee98ad33
commit 77924e073d
5 changed files with 24 additions and 8 deletions

View File

@@ -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

View File

@@ -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" >}}

8
go.mod
View File

@@ -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

2
go.sum
View File

@@ -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=

View File

@@ -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"