mirror of https://github.com/docker/docs.git
Bump compose to v2.32.0 (#21626)
## Description Bump compose to v2.32.0 ## Related issues or tickets ## Reviews - [ ] Technical review - [ ] Editorial review - [ ] Product review --------- Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com> Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
This commit is contained in:
parent
d19959f01f
commit
9736a4bb95
|
@ -2,5 +2,5 @@
|
||||||
# github.com/moby/buildkit v0.18.0
|
# github.com/moby/buildkit v0.18.0
|
||||||
# github.com/docker/buildx v0.19.2
|
# github.com/docker/buildx v0.19.2
|
||||||
# github.com/docker/cli v27.4.0+incompatible
|
# github.com/docker/cli v27.4.0+incompatible
|
||||||
# github.com/docker/compose/v2 v2.31.0
|
# github.com/docker/compose/v2 v2.32.0
|
||||||
# github.com/docker/scout-cli v1.15.0
|
# github.com/docker/scout-cli v1.15.0
|
||||||
|
|
|
@ -13,6 +13,31 @@ 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.0
|
||||||
|
|
||||||
|
{{< release-date date="2024-12-13" >}}
|
||||||
|
|
||||||
|
### Update
|
||||||
|
|
||||||
|
- Dependencies upgrade: bump docker + buildx to latest release
|
||||||
|
- Dependencies upgrade: bump otel dependencies to v1.28.0 and v0.53.0
|
||||||
|
- Dependencies upgrade: bump golang.org/x/sys 0.28.0
|
||||||
|
- Dependencies upgrade: bump golang.org/x/crypto to 0.31.0
|
||||||
|
- Dependencies upgrade: bump google.golang.org/grpc to 1.68.1
|
||||||
|
- Dependencies upgrade: bump golang.org/x/sync 0.10.0
|
||||||
|
- Dependencies upgrade: bump xx to v1.6.1
|
||||||
|
|
||||||
|
### Bug fixes and enhancements
|
||||||
|
|
||||||
|
- Improved support when building with [Bake](/manuals/build/bake.md)
|
||||||
|
- Added `restart` and `sync+exec` watch actions
|
||||||
|
- Compose now recreates containers when the volume or network configuration changes
|
||||||
|
- Fixed support for `mac_address`
|
||||||
|
- Fixed `pull --quiet` to only hide progress, not global status
|
||||||
|
- Fixed an issue where only the `rebuild` watch action now requires a build declaration
|
||||||
|
- Compose now logs `watch` configuration error when enabled through the Compose menu
|
||||||
|
|
||||||
|
|
||||||
## 2.31.0
|
## 2.31.0
|
||||||
|
|
||||||
{{< release-date date="2024-11-28" >}}
|
{{< release-date date="2024-11-28" >}}
|
||||||
|
|
2
go.mod
2
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.4.0+incompatible // indirect
|
github.com/docker/cli v27.4.0+incompatible // indirect
|
||||||
github.com/docker/compose/v2 v2.31.0 // indirect
|
github.com/docker/compose/v2 v2.32.0 // 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.0 // indirect
|
github.com/moby/buildkit v0.18.0 // indirect
|
||||||
github.com/moby/moby v27.4.0+incompatible // indirect
|
github.com/moby/moby v27.4.0+incompatible // indirect
|
||||||
|
|
|
@ -109,7 +109,7 @@ params:
|
||||||
latest_engine_api_version: "1.47"
|
latest_engine_api_version: "1.47"
|
||||||
docker_ce_version: "27.4.0"
|
docker_ce_version: "27.4.0"
|
||||||
docker_ce_version_prev: "27.3.1"
|
docker_ce_version_prev: "27.3.1"
|
||||||
compose_version: "v2.30.3"
|
compose_version: "v2.32.0"
|
||||||
compose_file_v3: "3.8"
|
compose_file_v3: "3.8"
|
||||||
compose_file_v2: "2.4"
|
compose_file_v2: "2.4"
|
||||||
buildkit_version: "0.16.0"
|
buildkit_version: "0.16.0"
|
||||||
|
|
Loading…
Reference in New Issue