Skip to content

Commit 3bb0bfd

Browse files
gloursaevesdocker
andauthored
release-notes for Compose v2.40.1 version (#23575)
<!--Delete sections as needed --> ## Description Add release notes of Compose `v2.40.1` release ## 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]> Co-authored-by: Allie Sadler <[email protected]>
1 parent c0e404f commit 3bb0bfd

File tree

8 files changed

+54
-14
lines changed

8 files changed

+54
-14
lines changed

_vendor/github.com/docker/compose/v2/docs/reference/compose_publish.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/docker_compose_alpha_publish.yaml

Lines changed: 10 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_publish.yaml

Lines changed: 10 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
@@ -1,5 +1,5 @@
11
# github.com/moby/moby v28.5.1+incompatible
2-
# github.com/moby/buildkit v0.25.0
2+
# github.com/moby/buildkit v0.25.1
33
# github.com/docker/buildx v0.29.1
44
# github.com/docker/cli v28.5.1+incompatible
55
# github.com/docker/compose/v2 v2.40.0

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

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,22 @@ aliases:
1515

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

18-
## 2.39.4
18+
## 2.40.1
1919

20-
{{< release-date date="2025-09-19" >}}
20+
{{< release-date date="2025-10-17" >}}
2121

2222
### Bug fixes and enhancements
2323

24-
- Added `initial_sync` attribute to the Compose Develop Specification definition, to sync files after starting a watch session
25-
- Fixed a TLS issue when building with bake
26-
- Disabled Tty on `run` when running as a piped command
24+
- Fixed a few issues when building with bake
25+
- Added support of extends with profiles when using the `publish` command
26+
- Added support of `CTRL+Z` to run Compose in background
27+
- Fixed secret/config setup of uid:gid to match container's USER definition
2728

2829
### Update
2930

30-
- Dependencies upgrade: bump compose-go to v2.9.0
31+
- Dependencies upgrade: bump docker engine and cli to v28.5.1
32+
- Dependencies upgrade: bump buildx to v0.29.1
33+
- Dependencies upgrade: bump golang to v1.24.9
3134

3235
## 2.40.0
3336

@@ -43,6 +46,19 @@ For more detailed information, see the [release notes in the Compose repo](https
4346

4447
- Dependencies upgrade: bump docker engine and cli to v28.5.0
4548

49+
## 2.39.4
50+
51+
{{< release-date date="2025-09-19" >}}
52+
53+
### Bug fixes and enhancements
54+
55+
- Added `initial_sync` attribute to the Compose Develop Specification definition, to sync files after starting a watch session
56+
- Fixed a TLS issue when building with bake
57+
- Disabled Tty on `run` when running as a piped command
58+
59+
### Update
60+
61+
- Dependencies upgrade: bump compose-go to v2.9.0
4662

4763
## 2.39.3
4864

go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/docker/docs
22

3-
go 1.24.7
3+
go 1.24.9
44

55
require (
66
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
@@ -30,7 +30,7 @@ require (
3030
github.com/docker/cli v28.5.1+incompatible // indirect; see "replace" rule at the bottom for actual version
3131
github.com/docker/compose/v2 v2.40.0 // indirect
3232
github.com/docker/distribution v2.8.3+incompatible // indirect
33-
github.com/docker/docker v28.4.0+incompatible // indirect; see "replace" rule at the bottom for actual version
33+
github.com/docker/docker v28.5.1+incompatible // indirect; see "replace" rule at the bottom for actual version
3434
github.com/docker/docker-credential-helpers v0.9.3 // indirect
3535
github.com/docker/go-connections v0.6.0 // indirect
3636
github.com/docker/go-units v0.5.0 // indirect
@@ -68,7 +68,7 @@ require (
6868
github.com/mattn/go-shellwords v1.0.12 // indirect
6969
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
7070
github.com/mitchellh/go-homedir v1.1.0 // indirect
71-
github.com/moby/buildkit v0.25.0 // indirect
71+
github.com/moby/buildkit v0.25.1 // indirect
7272
github.com/moby/docker-image-spec v1.3.1 // indirect
7373
github.com/moby/locker v1.0.1 // indirect
7474
github.com/moby/moby v28.5.1+incompatible // indirect; see "replace" rule at the bottom for actual version
@@ -115,7 +115,7 @@ require (
115115
golang.org/x/mod v0.25.0 // indirect
116116
golang.org/x/net v0.41.0 // indirect
117117
golang.org/x/sync v0.17.0 // indirect
118-
golang.org/x/sys v0.36.0 // indirect
118+
golang.org/x/sys v0.37.0 // indirect
119119
golang.org/x/term v0.32.0 // indirect
120120
golang.org/x/text v0.26.0 // indirect
121121
golang.org/x/tools v0.34.0 // indirect
@@ -132,11 +132,11 @@ require (
132132
replace (
133133
github.com/docker/buildx => github.com/docker/buildx v0.29.1
134134
github.com/docker/cli => github.com/docker/cli v28.5.1+incompatible
135-
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.39.4
135+
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.40.1
136136
github.com/docker/docker => github.com/docker/docker v28.4.0+incompatible
137+
github.com/docker/mcp-gateway => github.com/docker/mcp-gateway v0.22.0
137138
github.com/docker/model-runner/cmd/cli => github.com/docker/model-runner/cmd/cli v0.1.44
138139
github.com/docker/scout-cli => github.com/docker/scout-cli v1.18.4
139140
github.com/moby/buildkit => github.com/moby/buildkit v0.25.0
140141
github.com/moby/moby => github.com/moby/moby v28.5.1+incompatible
141-
github.com/docker/mcp-gateway => github.com/docker/mcp-gateway v0.22.0
142142
)

go.sum

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ github.com/docker/compose/v2 v2.39.3 h1:a9itRH/aBf9jJM80hQqQYdIzm4+9hcccJRnK5w0F
102102
github.com/docker/compose/v2 v2.39.3/go.mod h1:AOUEk2X2GpWNn/x/WNN55cc+JkH3mBd6gmx71lHZHv4=
103103
github.com/docker/compose/v2 v2.39.4 h1:lXIyl0axf8rZ5ThGm25g0y5nvtj1a9HKS08qfMvHiFM=
104104
github.com/docker/compose/v2 v2.39.4/go.mod h1:HrP3GcmLSdb1YbhcRhr1zWx/8Ulj/9Y+H443hlTAwMA=
105+
github.com/docker/compose/v2 v2.40.1/go.mod h1:CbSJpKGw20LInVsPjglZ8z7Squ3OBQOD7Ux5nkjGfIU=
105106
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
106107
github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
107108
github.com/docker/docker v28.2.2+incompatible h1:CjwRSksz8Yo4+RmQ339Dp/D2tGO5JxwYeqtMOEe0LDw=
@@ -441,6 +442,8 @@ golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI=
441442
golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
442443
golang.org/x/sys v0.36.0 h1:KVRy2GtZBrk1cBYA7MKu5bEZFxQk4NIDV6RLVcC8o0k=
443444
golang.org/x/sys v0.36.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
445+
golang.org/x/sys v0.37.0 h1:fdNQudmxPjkdUTPnLn5mdQv7Zwvbvpaxqs831goi9kQ=
446+
golang.org/x/sys v0.37.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
444447
golang.org/x/term v0.32.0 h1:DR4lr0TjUs3epypdhTOkMmuF5CDFJ/8pOnbzMZPQ7bg=
445448
golang.org/x/term v0.32.0/go.mod h1:uZG1FhGx848Sqfsq4/DlJr3xGGsYMu/L5GW4abiaEPQ=
446449
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=

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.5.0"
142142
# Latest Docker Compose version
143-
compose_version: "v2.40.0"
143+
compose_version: "v2.40.1"
144144
# Latest BuildKit version
145145
buildkit_version: "0.25.0"
146146

0 commit comments

Comments
 (0)