Skip to content

Commit db51090

Browse files
authored
release-notes for Compose v2.38.0 and v2.38.1 versions (#22953)
<!--Delete sections as needed --> ## Description Add release notes for Compose versions `v2.38.0` and `v2.38.1` ## Related issues or tickets N/A ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [x] Editorial review - [ ] Product review Signed-off-by: Guillaume Lours <[email protected]>
1 parent 3d6ad93 commit db51090

File tree

9 files changed

+106
-4
lines changed

9 files changed

+106
-4
lines changed

_vendor/github.com/docker/compose/v2/docs/reference/compose.md

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/docker/compose/v2/docs/reference/compose_volumes.md

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/docker/compose/v2/docs/reference/docker_compose.yaml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/docker/compose/v2/docs/reference/docker_compose_volumes.yaml

Lines changed: 52 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
# github.com/moby/buildkit v0.23.1
33
# github.com/docker/buildx v0.25.0
44
# github.com/docker/cli v28.3.0+incompatible
5-
# github.com/docker/compose/v2 v2.37.3
5+
# github.com/docker/compose/v2 v2.38.1
66
# github.com/docker/model-cli v0.1.26-0.20250527144806-15d0078a3c01
77
# github.com/docker/scout-cli v1.15.0

content/manuals/compose/releases/release-notes.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,35 @@ aliases:
1313

1414
For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).
1515

16+
## 2.38.1
17+
18+
{{< release-date date="2025-06-30" >}}
19+
20+
### Bug fixes and enhancements
21+
22+
- Added support of `model_variable` for service `models` configuration
23+
24+
### Update
25+
26+
- Dependencies upgrade: bump compose-go to v2.7.1
27+
28+
## 2.38.0
29+
30+
{{< release-date date="2025-06-30" >}}
31+
32+
### Bug fixes and enhancements
33+
34+
- Introduced support of `models` for LLM configuration
35+
- Added `volumes` command
36+
- Removed `publish` limitation on bind mounts
37+
- Fixed an issue mounting the docker socket to container which doesn't need it
38+
- Fixed an issue with bake hanging on output
39+
40+
### Update
41+
42+
- Dependencies upgrade: bump compose-go to v2.7.0
43+
- Dependencies upgrade: bump docker engine and cli to v28.3.0
44+
1645
## 2.37.3
1746

1847
{{< release-date date="2025-06-24" >}}

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
require (
66
github.com/docker/buildx v0.25.0 // indirect
77
github.com/docker/cli v28.3.0+incompatible // indirect
8-
github.com/docker/compose/v2 v2.37.3 // indirect
8+
github.com/docker/compose/v2 v2.38.1 // indirect
99
github.com/docker/model-cli v0.1.26-0.20250527144806-15d0078a3c01 // indirect
1010
github.com/docker/scout-cli v1.15.0 // indirect
1111
github.com/moby/buildkit v0.23.1 // indirect
@@ -15,7 +15,7 @@ require (
1515
replace (
1616
github.com/docker/buildx => github.com/docker/buildx v0.24.0
1717
github.com/docker/cli => github.com/docker/cli v28.3.0+incompatible
18-
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.37.3
18+
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.38.1
1919
github.com/docker/model-cli => github.com/docker/model-cli v0.1.26-0.20250527144806-15d0078a3c01
2020
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
2121
github.com/moby/buildkit => github.com/moby/buildkit v0.22.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ github.com/docker/compose/v2 v2.37.1 h1:d/LO338bB7jxHvQwVHSBAjIgitDK2+Dl5IXJImL/
3030
github.com/docker/compose/v2 v2.37.1/go.mod h1:yyprfHgPYV+ydOoL1gp8nIIlZ730ughSvz8D1VamayU=
3131
github.com/docker/compose/v2 v2.37.3 h1:RKaTVsWmqvJd6GP9EWPZ6fu4ezl8tfG1V7bRijToGJI=
3232
github.com/docker/compose/v2 v2.37.3/go.mod h1:U5PKGy7r7M7u2oVhz41NzlNglJFCdMrrThBOH5x00hk=
33+
github.com/docker/compose/v2 v2.38.1 h1:UNbMX6UbpdvdW3xjljD05fcL4jQmHGLh7y9VDgPp29Q=
34+
github.com/docker/compose/v2 v2.38.1/go.mod h1:0Jn/JGDGghZ9JlhY4DJY2/Cs15EDIH2nnagA66Lu3Dw=
3335
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
3436
github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
3537
github.com/docker/docker v28.2.2+incompatible h1:CjwRSksz8Yo4+RmQ339Dp/D2tGO5JxwYeqtMOEe0LDw=

hugo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ params:
140140
# (Used to show e.g., "latest" and "latest"-1 in engine install examples
141141
docker_ce_version_prev: "28.2.2"
142142
# Latest Docker Compose version
143-
compose_version: "v2.37.3"
143+
compose_version: "v2.38.1"
144144
# Latest BuildKit version
145145
buildkit_version: "0.23.1"
146146

0 commit comments

Comments
 (0)