mirror of https://github.com/docker/docs.git
update Compose v2.24.1 release notes (#19126)
* update Compose v2.24.1 release notes Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> * Update content/compose/release-notes.md --------- 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
d3482fa8b8
commit
1da0617fa5
|
@ -6,11 +6,9 @@ plink: docker_compose.yaml
|
|||
cname:
|
||||
- docker compose alpha publish
|
||||
- docker compose alpha viz
|
||||
- docker compose alpha watch
|
||||
clink:
|
||||
- docker_compose_alpha_publish.yaml
|
||||
- docker_compose_alpha_viz.yaml
|
||||
- docker_compose_alpha_watch.yaml
|
||||
inherited_options:
|
||||
- option: dry-run
|
||||
value_type: bool
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# github.com/moby/buildkit v0.13.0-beta1.0.20240116143623-28ce478b1fde
|
||||
# github.com/moby/moby v24.0.8-0.20240109122856-854ca341c0f6+incompatible
|
||||
# github.com/moby/buildkit v0.13.0-beta1.0.20240116143623-28ce478b1fde
|
||||
# github.com/docker/buildx v0.12.1
|
||||
# github.com/docker/scout-cli v1.2.0
|
||||
# github.com/docker/cli v25.0.0-rc.1+incompatible
|
||||
# github.com/docker/compose/v2 v2.24.0
|
||||
# github.com/docker/cli v25.0.0-rc.3+incompatible
|
||||
# github.com/docker/compose/v2 v2.24.1
|
||||
|
|
|
@ -11,6 +11,21 @@ aliases:
|
|||
|
||||
For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).
|
||||
|
||||
## 2.24.1
|
||||
{{< release-date date="2024-01-18" >}}
|
||||
|
||||
### Update
|
||||
- Dependencies upgrade: bump cli to 25.0.0-rc3
|
||||
- Dependencies upgrade: bump docker to 25.0.0-rc3
|
||||
- Dependencies upgrade: bump compose-go to 2.0.0-rc.1
|
||||
- Dependencies upgrade: bump containerd to 1.7.12
|
||||
|
||||
### Bug fixes and enhancements
|
||||
Reworked the display of container status during `up`
|
||||
Fixed the engine version required to use `healthcheck.start_interval`
|
||||
Removed `watch` subcommand from the `alpha` command
|
||||
Fixed a bug when handling received signals
|
||||
|
||||
## 2.24.0
|
||||
{{< release-date date="2024-01-11" >}}
|
||||
|
||||
|
|
4
go.mod
4
go.mod
|
@ -6,8 +6,8 @@ toolchain go1.21.1
|
|||
|
||||
require (
|
||||
github.com/docker/buildx v0.12.1 // indirect
|
||||
github.com/docker/cli v25.0.0-rc.1+incompatible // indirect
|
||||
github.com/docker/compose/v2 v2.24.0 // indirect
|
||||
github.com/docker/cli v25.0.0-rc.3+incompatible // indirect
|
||||
github.com/docker/compose/v2 v2.24.1 // indirect
|
||||
github.com/docker/scout-cli v1.2.0 // indirect
|
||||
github.com/moby/buildkit v0.13.0-beta1.0.20240116143623-28ce478b1fde // indirect
|
||||
github.com/moby/moby v24.0.8-0.20240109122856-854ca341c0f6+incompatible // indirect
|
||||
|
|
2
go.sum
2
go.sum
|
@ -86,6 +86,8 @@ github.com/docker/compose/v2 v2.23.3 h1:2p2biZqpUvPzC8J7nDl+ankVQNCCAk2IZJ4eg1S+
|
|||
github.com/docker/compose/v2 v2.23.3/go.mod h1:lUweVMN13YR0a9M7qdKulTSMS1kYdAysYNJlFEnDMCw=
|
||||
github.com/docker/compose/v2 v2.24.0 h1:Gvmg3E5/Rqa4G340sYcUk/DIegT5Nod2ZV3MqR248j8=
|
||||
github.com/docker/compose/v2 v2.24.0/go.mod h1:sDypMTKq6Mrp0W5NZ6+uiqxR9zEukI1RVuFRqwBTljs=
|
||||
github.com/docker/compose/v2 v2.24.1 h1:Mk14AOkxetMKrWb1bOnx7bEfS+v/moaCZnU69QqUw6A=
|
||||
github.com/docker/compose/v2 v2.24.1/go.mod h1:rrqu0bPBN/HD2wRSNwVN+V9SDfhVQnKxF1DP9B9WOdI=
|
||||
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/go v1.5.1-1.0.20160303222718-d30aec9fd63c/go.mod h1:CADgU4DSXK5QUlFslkQu2yW2TKzFZcXq/leZfM0UH5Q=
|
||||
|
|
Loading…
Reference in New Issue