mirror of https://github.com/docker/docs.git
release-notes for Compose v2.32.4 version (#21832)
add a note about the version issue in v2.32.3 <!--Delete sections as needed --> ## Description Add release notes of Compose v2.32.4 ## Related issues or tickets https://docker.atlassian.net/browse/COMP-909 ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [x] Editorial review - [ ] Product review --------- Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
This commit is contained in:
parent
349619f54f
commit
d7f4f4b05b
|
@ -2,5 +2,5 @@
|
||||||
# github.com/moby/buildkit v0.18.1
|
# github.com/moby/buildkit v0.18.1
|
||||||
# github.com/docker/buildx v0.19.2
|
# github.com/docker/buildx v0.19.2
|
||||||
# github.com/docker/cli v27.5.0+incompatible
|
# github.com/docker/cli v27.5.0+incompatible
|
||||||
# github.com/docker/compose/v2 v2.32.3
|
# github.com/docker/compose/v2 v2.32.4
|
||||||
# github.com/docker/scout-cli v1.15.0
|
# github.com/docker/scout-cli v1.15.0
|
||||||
|
|
|
@ -13,10 +13,23 @@ aliases:
|
||||||
|
|
||||||
For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).
|
For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).
|
||||||
|
|
||||||
|
## 2.32.4
|
||||||
|
|
||||||
|
{{< release-date date="2025-01-16" >}}
|
||||||
|
|
||||||
|
### Bug fixes and enhancements
|
||||||
|
|
||||||
|
- Fixed an issue where the Compose version did not display properly when using `docker compose version`
|
||||||
|
|
||||||
## 2.32.3
|
## 2.32.3
|
||||||
|
|
||||||
{{< release-date date="2025-01-13" >}}
|
{{< release-date date="2025-01-13" >}}
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
>
|
||||||
|
> Binaries from the Compose GitHub repository may not display the version number properly. If you rely on `docker compose version`
|
||||||
|
> in your development or CI processes, upgrade to Compose version 2.32.4.
|
||||||
|
|
||||||
### Bug fixes and enhancements
|
### Bug fixes and enhancements
|
||||||
|
|
||||||
- Fixed an issue where Compose would override a service-level MAC address with the main network MAC address
|
- Fixed an issue where Compose would override a service-level MAC address with the main network MAC address
|
||||||
|
|
4
go.mod
4
go.mod
|
@ -5,7 +5,7 @@ go 1.23.1
|
||||||
require (
|
require (
|
||||||
github.com/docker/buildx v0.19.2 // indirect
|
github.com/docker/buildx v0.19.2 // indirect
|
||||||
github.com/docker/cli v27.5.0+incompatible // indirect
|
github.com/docker/cli v27.5.0+incompatible // indirect
|
||||||
github.com/docker/compose/v2 v2.32.3 // indirect
|
github.com/docker/compose/v2 v2.32.4 // indirect
|
||||||
github.com/docker/scout-cli v1.15.0 // indirect
|
github.com/docker/scout-cli v1.15.0 // indirect
|
||||||
github.com/moby/buildkit v0.18.1 // indirect
|
github.com/moby/buildkit v0.18.1 // indirect
|
||||||
github.com/moby/moby v27.5.0+incompatible // indirect
|
github.com/moby/moby v27.5.0+incompatible // indirect
|
||||||
|
@ -14,7 +14,7 @@ require (
|
||||||
replace (
|
replace (
|
||||||
github.com/docker/buildx => github.com/docker/buildx v0.19.2
|
github.com/docker/buildx => github.com/docker/buildx v0.19.2
|
||||||
github.com/docker/cli => github.com/docker/cli v27.5.0+incompatible
|
github.com/docker/cli => github.com/docker/cli v27.5.0+incompatible
|
||||||
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.32.3
|
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.32.4
|
||||||
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
|
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
|
||||||
github.com/moby/buildkit => github.com/moby/buildkit v0.18.0
|
github.com/moby/buildkit => github.com/moby/buildkit v0.18.0
|
||||||
github.com/moby/moby => github.com/moby/moby v27.5.0+incompatible
|
github.com/moby/moby => github.com/moby/moby v27.5.0+incompatible
|
||||||
|
|
2
go.sum
2
go.sum
|
@ -195,6 +195,8 @@ github.com/docker/compose/v2 v2.31.0/go.mod h1:oQq3UDEdsnB3AUO72AxaoeLbkCgmUu1+8
|
||||||
github.com/docker/compose/v2 v2.32.2/go.mod h1:fcK4rrf1bm8pfDsYdZIR+l4RSk9j6HVtBvJKGYyXsZ4=
|
github.com/docker/compose/v2 v2.32.2/go.mod h1:fcK4rrf1bm8pfDsYdZIR+l4RSk9j6HVtBvJKGYyXsZ4=
|
||||||
github.com/docker/compose/v2 v2.32.3 h1:7KKVpTudYUrqs9GueTnJ+N6qnnzI2bqmANq6kXfmuv8=
|
github.com/docker/compose/v2 v2.32.3 h1:7KKVpTudYUrqs9GueTnJ+N6qnnzI2bqmANq6kXfmuv8=
|
||||||
github.com/docker/compose/v2 v2.32.3/go.mod h1:fcK4rrf1bm8pfDsYdZIR+l4RSk9j6HVtBvJKGYyXsZ4=
|
github.com/docker/compose/v2 v2.32.3/go.mod h1:fcK4rrf1bm8pfDsYdZIR+l4RSk9j6HVtBvJKGYyXsZ4=
|
||||||
|
github.com/docker/compose/v2 v2.32.4 h1:h1I7GlJ1NCXKqM0nCVVsMrD/7TdIG48HNgRufcBF1KQ=
|
||||||
|
github.com/docker/compose/v2 v2.32.4/go.mod h1:fcK4rrf1bm8pfDsYdZIR+l4RSk9j6HVtBvJKGYyXsZ4=
|
||||||
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
|
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
|
||||||
github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
||||||
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
|
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
|
||||||
|
|
|
@ -118,7 +118,7 @@ params:
|
||||||
# (Used to show e.g., "latest" and "latest"-1 in engine install examples
|
# (Used to show e.g., "latest" and "latest"-1 in engine install examples
|
||||||
docker_ce_version_prev: "27.4.1"
|
docker_ce_version_prev: "27.4.1"
|
||||||
# Latest Docker Compose version
|
# Latest Docker Compose version
|
||||||
compose_version: "v2.32.3"
|
compose_version: "v2.32.4"
|
||||||
# Latest BuildKit version
|
# Latest BuildKit version
|
||||||
buildkit_version: "0.16.0"
|
buildkit_version: "0.16.0"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue