release-notes for Compose v2.30.3 version

Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
This commit is contained in:
Guillaume Lours 2024-11-07 23:17:12 +01:00
parent e006697f4f
commit efe6a80467
No known key found for this signature in database
5 changed files with 20 additions and 4 deletions

View File

@ -2,5 +2,5 @@
# github.com/moby/buildkit v0.17.1-0.20241031124041-354f2d13c905
# github.com/docker/buildx v0.18.0
# github.com/docker/cli v27.3.2-0.20241107125754-eb986ae71b0c+incompatible
# github.com/docker/compose/v2 v2.30.2
# github.com/docker/compose/v2 v2.30.3
# github.com/docker/scout-cli v1.15.0

View File

@ -13,6 +13,20 @@ aliases:
For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).
## 2.30.3
{{< release-date date="2024-11-07" >}}
### Update
- Dependencies upgrade: bump compose-go to v2.4.4
### Bug fixes and enhancements
- Fixed an issue re-starting services that should not when using `--watch`
- Improve the fix of using same YAML anchor multiple times in a Compose file
## 2.30.2
{{< release-date date="2024-11-05" >}}

4
go.mod
View File

@ -5,7 +5,7 @@ go 1.23.1
require (
github.com/docker/buildx v0.18.0 // indirect
github.com/docker/cli v27.3.2-0.20241107125754-eb986ae71b0c+incompatible // indirect
github.com/docker/compose/v2 v2.30.2 // indirect
github.com/docker/compose/v2 v2.30.3 // indirect
github.com/docker/scout-cli v1.15.0 // indirect
github.com/moby/buildkit v0.17.1-0.20241031124041-354f2d13c905 // indirect
github.com/moby/moby v27.3.1+incompatible // indirect
@ -14,7 +14,7 @@ require (
replace (
github.com/docker/buildx => github.com/docker/buildx v0.18.0
github.com/docker/cli => github.com/docker/cli v27.3.2-0.20241107125754-eb986ae71b0c+incompatible
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.30.2
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.30.3
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
github.com/moby/buildkit => github.com/moby/buildkit v0.17.1-0.20241031124041-354f2d13c905
github.com/moby/moby => github.com/moby/moby v27.3.1+incompatible

2
go.sum
View File

@ -180,6 +180,8 @@ github.com/docker/compose/v2 v2.30.1 h1:AwDaEcmgskxaI75Wjt3KL6/Xqq/GXKUQcBpo/RqM
github.com/docker/compose/v2 v2.30.1/go.mod h1:pt/uv8KQ6VaM0IbHZwB1UdwDIs9PB4nN4LoWst+dqXc=
github.com/docker/compose/v2 v2.30.2 h1:7PypFsyl5wjlSeOyx3LCb8XMcAGkb+D0fqM47OIKe8I=
github.com/docker/compose/v2 v2.30.2/go.mod h1:ND4+yaNoJ3Jh1OgrEO64uzMq/VKRqBkMS8zpb65Fve8=
github.com/docker/compose/v2 v2.30.3 h1:e8H7xGLCZOeFo46GEtyDGHlkBbNgXqbXKIXPOSL8cfU=
github.com/docker/compose/v2 v2.30.3/go.mod h1:ayPsSsRSc5WpVFehPrTDFuljAydxaf8g0aM9UKbaMXk=
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

@ -108,7 +108,7 @@ params:
latest_engine_api_version: "1.47"
docker_ce_version: "27.2.1"
compose_version: "v2.30.2"
compose_version: "v2.30.3"
compose_file_v3: "3.8"
compose_file_v2: "2.4"
buildkit_version: "0.16.0"