Skip to content

Commit 8339b44

Browse files
authored
release-notes for Compose v2.35.1 version (#22456)
<!--Delete sections as needed --> ## Description Add release notes for latest Compose release `v2.35.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 452734f commit 8339b44

File tree

5 files changed

+28
-9
lines changed

5 files changed

+28
-9
lines changed

_vendor/modules.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# github.com/moby/moby v28.1.0-rc.2+incompatible
22
# github.com/moby/buildkit v0.21.0
33
# github.com/docker/buildx v0.23.0
4-
# github.com/docker/cli v28.1.0-rc.2+incompatible
5-
# github.com/docker/compose/v2 v2.35.0
4+
# github.com/docker/cli v28.1.0+incompatible
5+
# github.com/docker/compose/v2 v2.35.1
66
# github.com/docker/scout-cli v1.15.0

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

+20-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,23 @@ aliases:
1313

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

16+
## 2.35.1
17+
18+
{{< release-date date="2025-04-17" >}}
19+
20+
### Bug fixes and enhancements
21+
22+
- Fixed an issue with bind mounts
23+
24+
### Update
25+
26+
- Dependencies upgrade: bump compose-go to v2.6.0
27+
- Dependencies upgrade: bump docker engine and cli to v28.0.4
28+
- Dependencies upgrade: bump buildx to v0.22.0
29+
30+
31+
32+
1633
## 2.35.0
1734

1835
{{< release-date date="2025-04-10" >}}
@@ -30,9 +47,9 @@ For more detailed information, see the [release notes in the Compose repo](https
3047

3148
### Update
3249

33-
- Dependencies upgrade: bump compose-go to v2.6.0
34-
- Dependencies upgrade: bump docker engine and cli to v28.0.4
35-
- Dependencies upgrade: bump buildx to v0.22.0
50+
- Dependencies upgrade: bump docker engine and cli to v28.1.0
51+
- Dependencies upgrade: bump buildx to v0.23.0
52+
- Dependencies upgrade: bump buildkit to v0.21.0
3653

3754

3855
## 2.34.0

go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ toolchain go1.24.1
66

77
require (
88
github.com/docker/buildx v0.23.0 // indirect
9-
github.com/docker/cli v28.1.0-rc.2+incompatible // indirect
10-
github.com/docker/compose/v2 v2.35.0 // indirect
9+
github.com/docker/cli v28.1.0+incompatible // indirect
10+
github.com/docker/compose/v2 v2.35.1 // indirect
1111
github.com/docker/scout-cli v1.15.0 // indirect
1212
github.com/moby/buildkit v0.21.0 // indirect
1313
github.com/moby/moby v28.1.0-rc.2+incompatible // indirect
@@ -16,7 +16,7 @@ require (
1616
replace (
1717
github.com/docker/buildx => github.com/docker/buildx v0.23.0
1818
github.com/docker/cli => github.com/docker/cli v28.1.0-rc.2+incompatible
19-
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.35.0
19+
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.35.1
2020
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
2121
github.com/moby/buildkit => github.com/moby/buildkit v0.20.0
2222
github.com/moby/moby => github.com/moby/moby v28.1.0-rc.2+incompatible

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,8 @@ github.com/docker/compose/v2 v2.34.0 h1:mUhgA6AiRVO9hEndD2G2oOQi5Y0g/4H8xSPVUc5T
229229
github.com/docker/compose/v2 v2.34.0/go.mod h1:TgTD4Ku0vOSB3NZgOXp6HcCE6wDSBjg7r8bjWraV5/4=
230230
github.com/docker/compose/v2 v2.35.0 h1:bU23OeFrbGyHYrKijMSEwkOeDg2TLhAGntU2F3hwX1o=
231231
github.com/docker/compose/v2 v2.35.0/go.mod h1:S5ejUILn9KTYC6noX3IxznWu3/sb3FxdZqIYbq4seAk=
232+
github.com/docker/compose/v2 v2.35.1 h1:oRt5EE22een6DEAkNNQcuzJGhBS2rcMtEKdbfMhFIgk=
233+
github.com/docker/compose/v2 v2.35.1/go.mod h1:Ydd9ceg7VBOPSVAsDDKfyGGAkjejH3cD91GSmHjuRhI=
232234
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
233235
github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
234236
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=

hugo.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ params:
139139
# (Used to show e.g., "latest" and "latest"-1 in engine install examples
140140
docker_ce_version_prev: "28.1.0"
141141
# Latest Docker Compose version
142-
compose_version: "v2.35.0"
142+
compose_version: "v2.35.1"
143143
# Latest BuildKit version
144144
buildkit_version: "0.21.0"
145145

0 commit comments

Comments
 (0)