mirror of https://github.com/docker/docs.git
parent
9ea2034b6a
commit
cd03a7b69e
|
@ -1,6 +1,6 @@
|
|||
# github.com/moby/moby v25.0.4+incompatible
|
||||
# github.com/moby/buildkit v0.13.0-rc3.0.20240308080452-a38011b9f57d
|
||||
# github.com/docker/buildx v0.0.0-00010101000000-000000000000
|
||||
# github.com/moby/buildkit v0.13.0
|
||||
# github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315
|
||||
# github.com/docker/scout-cli v1.4.1
|
||||
# github.com/docker/cli v26.0.0-rc1+incompatible
|
||||
# github.com/docker/compose/v2 v2.0.0-00010101000000-000000000000
|
||||
# github.com/docker/compose/v2 v2.24.7
|
||||
|
|
|
@ -11,6 +11,29 @@ aliases:
|
|||
|
||||
For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).
|
||||
|
||||
## 2.24.7
|
||||
{{< release-date date="2024-03-06" >}}
|
||||
|
||||
### Update
|
||||
- Dependencies upgrade: bump golang to 1.21.8
|
||||
- Dependencies upgrade: bump compose-go to 2.0.0-rc8
|
||||
- Dependencies upgrade: bump docker to v24.0.4
|
||||
|
||||
### Bug fixes and enhancements
|
||||
|
||||
- Compose now ensures stable priority sort order for networks
|
||||
- Fixed interpolation with curly braces (e.g. JSON) in default values
|
||||
- Fixed validation for non-unique `container_name` values
|
||||
- Fixed validation for `develop.watch`
|
||||
- Fixed environment loading for `include`
|
||||
- Fixed panic when merging labels/networks
|
||||
- Added support for `--no-path-resolution` when using `include`
|
||||
- Fixed missing project name errors
|
||||
- Fixed `--no-interpolate` flag on `config`
|
||||
- Added a workaround for file lock issues with Watch mode on Windows
|
||||
- Fixed duplicate exit code status messages
|
||||
- Compose now respects `COMPOSE_REMOVE_ORPHANS` on `up`
|
||||
|
||||
## 2.24.6
|
||||
{{< release-date date="2024-02-15" >}}
|
||||
|
||||
|
|
2
go.mod
2
go.mod
|
@ -7,7 +7,7 @@ toolchain go1.21.1
|
|||
require (
|
||||
github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 // indirect
|
||||
github.com/docker/cli v26.0.0-rc1+incompatible // indirect
|
||||
github.com/docker/compose/v2 v2.0.0-00010101000000-000000000000 // indirect
|
||||
github.com/docker/compose/v2 v2.24.7 // indirect
|
||||
github.com/docker/scout-cli v1.4.1 // indirect
|
||||
github.com/moby/buildkit v0.13.0 // indirect
|
||||
github.com/moby/moby v25.0.4+incompatible // indirect
|
||||
|
|
Loading…
Reference in New Issue