release-notes for Compose v2.39.1 version (#23154)

<!--Delete sections as needed -->

## Description
Release notes for Compose `v2.39.1` release

## Related issues or tickets
N/A
<!-- 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>
This commit is contained in:
Guillaume Lours
2025-07-25 08:24:12 +02:00
committed by GitHub
parent 1c45200540
commit e7e6807811
5 changed files with 18 additions and 4 deletions

View File

@@ -2,6 +2,6 @@
# github.com/moby/buildkit v0.23.2
# github.com/docker/buildx v0.26.1
# github.com/docker/cli v28.3.3-0.20250711132746-c69d8bde4adc+incompatible
# github.com/docker/compose/v2 v2.39.0
# github.com/docker/compose/v2 v2.39.1
# github.com/docker/model-cli v0.1.33-0.20250703103301-d4e4936a9eb2
# github.com/docker/scout-cli v1.18.1

View File

@@ -15,6 +15,18 @@ aliases:
For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).
## 2.39.1
{{< release-date date="2025-07-24" >}}
### Bug fixes and enhancements
- Added metrics to monitor `models` usage
### Update
- Dependencies upgrade: bump compose-go to v2.8.1
## 2.39.0
{{< release-date date="2025-07-24" >}}

4
go.mod
View File

@@ -5,7 +5,7 @@ go 1.24.0
require (
github.com/docker/buildx v0.26.1 // indirect
github.com/docker/cli v28.3.3-0.20250711132746-c69d8bde4adc+incompatible // indirect
github.com/docker/compose/v2 v2.39.0 // indirect
github.com/docker/compose/v2 v2.39.1 // indirect
github.com/docker/model-cli v0.1.33-0.20250703103301-d4e4936a9eb2 // indirect
github.com/docker/scout-cli v1.18.1 // indirect
github.com/moby/buildkit v0.23.2 // indirect
@@ -15,7 +15,7 @@ require (
replace (
github.com/docker/buildx => github.com/docker/buildx v0.26.1
github.com/docker/cli => github.com/docker/cli v28.3.3-0.20250711132746-c69d8bde4adc+incompatible
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.39.0
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.39.1
github.com/docker/model-cli => github.com/docker/model-cli v0.1.33-0.20250703103301-d4e4936a9eb2
github.com/docker/scout-cli => github.com/docker/scout-cli v1.18.1
github.com/moby/buildkit => github.com/moby/buildkit v0.23.2

2
go.sum
View File

@@ -54,6 +54,8 @@ github.com/docker/compose/v2 v2.38.2 h1:yY3jocdj1JkHbSgAyGaDLAh8fKOykZ8LVPitNOyo
github.com/docker/compose/v2 v2.38.2/go.mod h1:zigTfE9jJq/wFZPUCbNJtOC2YpSXBn0d3Xm/8EOs3Rk=
github.com/docker/compose/v2 v2.39.0 h1:MYK7fJ8r3Mk2ZG/SRnM+mAdQcd2c6pl2d6ckMhDYlcg=
github.com/docker/compose/v2 v2.39.0/go.mod h1:RKyOS+QxP/RlflxUkfNbmNQAhvzAjWtfB/uPKetq1lU=
github.com/docker/compose/v2 v2.39.1 h1:4HJuQl3OmrLSBmVg8aTcIXfzZUb/RkhxBWvAKfBs4gM=
github.com/docker/compose/v2 v2.39.1/go.mod h1:ye62pcRiLyFhXvEPzZE2n6WGjKTFQpkEJ7sLYDYyEJQ=
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
github.com/docker/docker v28.2.2+incompatible h1:CjwRSksz8Yo4+RmQ339Dp/D2tGO5JxwYeqtMOEe0LDw=

View File

@@ -140,7 +140,7 @@ params:
# (Used to show e.g., "latest" and "latest"-1 in engine install examples
docker_ce_version_prev: "28.3.1"
# Latest Docker Compose version
compose_version: "v2.39.0"
compose_version: "v2.39.1"
# Latest BuildKit version
buildkit_version: "0.23.2"