Skip to content

Commit 91eaa59

Browse files
authored
release-notes for Compose v2.36.1 version (#22665)
<!--Delete sections as needed --> ## Description Add Compose `v2.36.1` release notes. ## Related issues or tickets https://docker.atlassian.net/browse/APCLI-1134 ## 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 f4f1a45 commit 91eaa59

File tree

7 files changed

+34
-9
lines changed

7 files changed

+34
-9
lines changed

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

Lines changed: 1 addition & 4 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_config.yaml

Lines changed: 10 additions & 1 deletion
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,5 +2,5 @@
22
# github.com/moby/buildkit v0.22.0-rc1
33
# github.com/docker/buildx v0.23.0
44
# github.com/docker/cli v28.1.1+incompatible
5-
# github.com/docker/compose/v2 v2.36.0
5+
# github.com/docker/compose/v2 v2.36.1
66
# github.com/docker/scout-cli v1.15.0

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

Lines changed: 17 additions & 0 deletions
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.36.1
17+
18+
{{< release-date date="2025-05-19" >}}
19+
20+
### Bug fixes and enhancements
21+
22+
- Introduced support of arrays for `provider` service `options` attribute
23+
- Added `debug` messages in the extension protocol
24+
- Fixed an issue when trying to publish a Compose application with a `provider` service
25+
- Fixed build issues on Compose applications with `service.provider`
26+
- Introduced `--lock-image-digests` to `config` command
27+
28+
### Update
29+
30+
- Dependencies upgrade: bump compose-go to v2.6.3
31+
- Dependencies upgrade: bump containerd to 2.1.0
32+
1633
## 2.36.0
1734

1835
{{< release-date date="2025-05-07" >}}

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.23.0 // indirect
77
github.com/docker/cli v28.1.1+incompatible // indirect
8-
github.com/docker/compose/v2 v2.36.0 // indirect
8+
github.com/docker/compose/v2 v2.36.1 // indirect
99
github.com/docker/scout-cli v1.15.0 // indirect
1010
github.com/moby/buildkit v0.22.0-rc1 // indirect
1111
github.com/moby/moby v28.1.0-rc.2+incompatible // indirect
@@ -14,7 +14,7 @@ require (
1414
replace (
1515
github.com/docker/buildx => github.com/docker/buildx v0.24.0-rc1
1616
github.com/docker/cli => github.com/docker/cli v28.1.0-rc.2+incompatible
17-
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.36.0
17+
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.36.1
1818
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
1919
github.com/moby/buildkit => github.com/moby/buildkit v0.22.0-rc1
2020
github.com/moby/moby => github.com/moby/moby v28.1.0-rc.2+incompatible

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,8 @@ github.com/docker/compose/v2 v2.35.1 h1:oRt5EE22een6DEAkNNQcuzJGhBS2rcMtEKdbfMhF
234234
github.com/docker/compose/v2 v2.35.1/go.mod h1:Ydd9ceg7VBOPSVAsDDKfyGGAkjejH3cD91GSmHjuRhI=
235235
github.com/docker/compose/v2 v2.36.0 h1:MACSfQ2xqcwgCwAtsHVoQkFbHi2nNfNAsd5EWFg164k=
236236
github.com/docker/compose/v2 v2.36.0/go.mod h1:kFPppTinl2Q0Lv3Dy9titIL41oWYoUkNxoKQZb/lfSU=
237+
github.com/docker/compose/v2 v2.36.1 h1:BmTE1Ps6XDOuubyL97ucPvIn8Nq2XprRylE2dgCtTXw=
238+
github.com/docker/compose/v2 v2.36.1/go.mod h1:w6fj+dvMW9W0gFaTpIwJ2PYstqiGIC07Cajp5wPukO0=
237239
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
238240
github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
239241
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=

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.1.0"
142142
# Latest Docker Compose version
143-
compose_version: "v2.36.0"
143+
compose_version: "v2.36.1"
144144
# Latest BuildKit version
145145
buildkit_version: "0.21.0"
146146

0 commit comments

Comments
 (0)