Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions _vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -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
14 changes: 14 additions & 0 deletions content/manuals/compose/releases/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,20 @@

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

Check failure on line 28 in content/manuals/compose/releases/release-notes.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'BuildKit' instead of 'buildkit'. Raw Output: {"message": "[Vale.Terms] Use 'BuildKit' instead of 'buildkit'.", "location": {"path": "content/manuals/compose/releases/release-notes.md", "range": {"start": {"line": 28, "column": 30}}}, "severity": "ERROR"}

## 2.37.2

{{< release-date date="2025-06-20" >}}
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down
2 changes: 1 addition & 1 deletion hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down