mirror of https://github.com/docker/docs.git
Bump compose v2.33.0 (#22025)
## Description Bump compose to v2.33.0 ## Related issues or tickets https://docker.atlassian.net/browse/APCLI-966 ## 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
000f71b2d6
commit
da13512a3d
|
@ -2,5 +2,5 @@
|
|||
# github.com/moby/buildkit v0.19.0
|
||||
# github.com/docker/buildx v0.20.1
|
||||
# github.com/docker/cli v27.5.1+incompatible
|
||||
# github.com/docker/compose/v2 v2.32.4
|
||||
# github.com/docker/compose/v2 v2.33.0
|
||||
# github.com/docker/scout-cli v1.15.0
|
||||
|
|
|
@ -13,6 +13,45 @@ aliases:
|
|||
|
||||
For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).
|
||||
|
||||
## 2.33.0
|
||||
|
||||
{{< release-date date="2025-02-13" >}}
|
||||
|
||||
### Bug fixes and enhancements
|
||||
|
||||
- Introduced a hint to promote the use of [Bake](/build/bake/)
|
||||
- Introduced support for the `additional_context` attribute referencing another service
|
||||
- Added support for `BUILDKIT_PROGRESS`
|
||||
- Compose now warns you when a published Compose application includes environment variables
|
||||
- Added a `--with-env` flag to publish a Compose application with environment variables
|
||||
- Updated `ls --quiet` help description
|
||||
- Fixed multiple issues delegating build to Bake
|
||||
- Updated help in `stats` command
|
||||
- Fixed support for "builtin" seccomp profile
|
||||
- Fixed support for `watch` with multiple services
|
||||
- Removed exit code per error type used by legacy metrics system
|
||||
- Fixed test coverage for `compatibility`
|
||||
- Removed raw os.Args sent to OpenTelemetry
|
||||
- Enabled copyloopvar linter
|
||||
- Fixed provenance for binaries and generate SBOM
|
||||
- Main branch for docs upstream validation is now used
|
||||
- Added codeowners file
|
||||
- Added Docker Engine v28.x to the test-matrix
|
||||
|
||||
### Update
|
||||
|
||||
- Dependencies upgrade: Bump compose-go v2.4.8
|
||||
- Dependencies upgrade: Bump buildx v0.20.1
|
||||
- Dependencies upgrade: Bump docker to v27.5.1
|
||||
- Dependencies upgrade: Bump golangci-lint to v1.63.4
|
||||
- Dependencies upgrade: Bump golang.org/x/sys from 0.28.0 to 0.30.0
|
||||
- Dependencies upgrade: Bump github.com/moby/term v0.5.2
|
||||
- Dependencies upgrade: Bump github.com/otiai10/copy from 1.14.0 to 1.14.1
|
||||
- Dependencies upgrade: Bump github.com/jonboulle/clockwork from 0.4.0 to 0.5.0
|
||||
- Dependencies upgrade: Bump github.com/spf13/pflag from 1.0.5 to 1.0.6
|
||||
- Dependencies upgrade: Bump golang.org/x/sync from 0.10.0 to 0.11.0
|
||||
- Dependencies upgrade: Bump gotest.tools/v3 from 3.5.1 to 3.5.2
|
||||
|
||||
## 2.32.4
|
||||
|
||||
{{< release-date date="2025-01-16" >}}
|
||||
|
|
2
go.mod
2
go.mod
|
@ -5,7 +5,7 @@ go 1.23.1
|
|||
require (
|
||||
github.com/docker/buildx v0.20.1 // indirect
|
||||
github.com/docker/cli v27.5.1+incompatible // indirect
|
||||
github.com/docker/compose/v2 v2.32.4 // indirect
|
||||
github.com/docker/compose/v2 v2.33.0 // indirect
|
||||
github.com/docker/scout-cli v1.15.0 // indirect
|
||||
github.com/moby/buildkit v0.19.0 // indirect
|
||||
github.com/moby/moby v27.5.1+incompatible // indirect
|
||||
|
|
Loading…
Reference in New Issue