release-notes for Compose v2.32.2 version (#21726)

<!--Delete sections as needed -->

## Description
Add release notes of Compose `v2.32.2` version
<!-- Tell us what you did and why -->

## Related issues or tickets
https://docker.atlassian.net/browse/COMP-868
<!-- Related issues, pull requests, or Jira tickets -->

## 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:
Guillaume Lours
2025-01-07 17:53:02 +01:00
committed by GitHub
parent 66eb22e5fa
commit ececfa948c
4 changed files with 28 additions and 4 deletions

View File

@@ -13,6 +13,29 @@ aliases:
For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).
## 2.32.2
{{< release-date date="2025-01-07" >}}
### Update
- Dependencies upgrade: bump compose-go to v2.4.7
- Dependencies upgrade: bump golang to v1.22.10
### Bug fixes and enhancements
- Added `--pull` flag to the `docker compose run` command
- Fixed a bug which meant the `restart` action of `watch` mode didn't monitor bind mounts
- Fixed an issue recreating containers when using anonymous volumes
## 2.32.1
{{< release-date date="2024-12-16" >}}
### Bug fixes and enhancements
- Fixed a bug recreating containers when not needed
## 2.32.0
{{< release-date date="2024-12-13" >}}

6
go.mod
View File

@@ -5,16 +5,16 @@ go 1.23.1
require (
github.com/docker/buildx v0.19.2 // indirect
github.com/docker/cli v27.4.0+incompatible // indirect
github.com/docker/compose/v2 v2.32.0 // indirect
github.com/docker/compose/v2 v2.32.2 // indirect
github.com/docker/scout-cli v1.15.0 // indirect
github.com/moby/buildkit v0.18.0 // indirect
github.com/moby/buildkit v0.18.1 // indirect
github.com/moby/moby v27.4.0+incompatible // indirect
)
replace (
github.com/docker/buildx => github.com/docker/buildx v0.19.2
github.com/docker/cli => github.com/docker/cli v27.4.0+incompatible
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.31.0
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.32.2
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/moby => github.com/moby/moby v27.4.0+incompatible

1
go.sum
View File

@@ -190,6 +190,7 @@ github.com/docker/compose/v2 v2.30.3 h1:e8H7xGLCZOeFo46GEtyDGHlkBbNgXqbXKIXPOSL8
github.com/docker/compose/v2 v2.30.3/go.mod h1:ayPsSsRSc5WpVFehPrTDFuljAydxaf8g0aM9UKbaMXk=
github.com/docker/compose/v2 v2.31.0 h1:8Sm0c4MjIhksguxIA5koYMXoTJDAp/CaZ1cdZrMvMdw=
github.com/docker/compose/v2 v2.31.0/go.mod h1:oQq3UDEdsnB3AUO72AxaoeLbkCgmUu1+8tLzvmphmXA=
github.com/docker/compose/v2 v2.32.2/go.mod h1:fcK4rrf1bm8pfDsYdZIR+l4RSk9j6HVtBvJKGYyXsZ4=
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.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=

View File

@@ -109,7 +109,7 @@ params:
latest_engine_api_version: "1.47"
docker_ce_version: "27.4.0"
docker_ce_version_prev: "27.3.1"
compose_version: "v2.32.0"
compose_version: "v2.32.2"
compose_file_v3: "3.8"
compose_file_v2: "2.4"
buildkit_version: "0.16.0"