Skip to content

Commit 7f9ec3f

Browse files
authored
Merge pull request #23042 from vvoland/docker-28.3.2
engine: docker 28.3.2
2 parents d55a05a + d091e02 commit 7f9ec3f

File tree

10 files changed

+47
-19
lines changed

10 files changed

+47
-19
lines changed

_vendor/github.com/moby/moby/docs/api/v1.48.yaml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/moby/moby/docs/api/v1.49.yaml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/moby/moby/docs/api/v1.50.yaml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/moby/moby/docs/api/v1.51.yaml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# github.com/moby/moby v28.3.0+incompatible
1+
# github.com/moby/moby v28.3.2+incompatible
22
# github.com/moby/buildkit v0.23.1
33
# github.com/docker/buildx v0.25.0
44
# github.com/docker/cli v28.3.0+incompatible

content/manuals/engine/release-notes/28.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,28 @@ For more information about:
2323
- Deprecated and removed features, see [Deprecated Engine Features](../deprecated.md).
2424
- Changes to the Engine API, see [Engine API version history](/reference/api/engine/version-history.md).
2525

26+
## 28.3.2
27+
28+
{{< release-date date="2025-07-09" >}}
29+
30+
For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:
31+
32+
- [docker/cli, 28.3.2 milestone](https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A28.3.2)
33+
- [moby/moby, 28.3.2 milestone](https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A28.3.2)
34+
35+
### Bug fixes and enhancements
36+
37+
- Fix `--use-api-socket` not working correctly when targeting a remote daemon. [docker/cli#6157](https://github.com/docker/cli/pull/6157)
38+
- Fix stray "otel error" logs being printed if debug logging is enabled. [docker/cli#6160](https://github.com/docker/cli/pull/6160)
39+
- Quote SSH arguments when connecting to a remote daemon over an SSH connection to avoid unexpected expansion. [docker/cli#6147](https://github.com/docker/cli/pull/6147)
40+
- Warn when `DOCKER_AUTH_CONFIG` is set during `docker login` and `docker logout`. [docker/cli#6163](https://github.com/docker/cli/pull/6163)
41+
42+
### Packaging updates
43+
44+
- Update Compose to [v2.38.2](https://github.com/docker/compose/releases/tag/v2.38.2). [docker/docker-ce-packaging#1225](https://github.com/docker/docker-ce-packaging/pull/1225)
45+
- Update Docker Model CLI plugin to [v0.1.33](https://github.com/docker/model-cli/releases/tag/v0.1.33). [docker/docker-ce-packaging#1227](https://github.com/docker/docker-ce-packaging/pull/1227)
46+
- Update Go runtime to 1.24.5. [moby/moby#50354](https://github.com/moby/moby/pull/50354)
47+
2648
## 28.3.1
2749

2850
{{< release-date date="2025-07-02" >}}

content/reference/api/engine/_index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -73,22 +73,22 @@ To see the highest version of the API your Docker daemon and client support, use
7373
```console
7474
$ docker version
7575
Client: Docker Engine - Community
76-
Version: 28.3.1
76+
Version: 28.3.2
7777
API version: 1.51
78-
Go version: go1.24.4
79-
Git commit: 38b7060
80-
Built: Wed Jul 2 20:56:31 2025
81-
OS/Arch: linux/arm64
78+
Go version: go1.24.5
79+
Git commit: 578ccf6
80+
Built: Wed Jul 9 16:13:45 2025
81+
OS/Arch: linux/amd64
8282
Context: default
8383

8484
Server: Docker Engine - Community
8585
Engine:
86-
Version: 28.3.1
86+
Version: 28.3.2
8787
API version: 1.51 (minimum version 1.24)
88-
Go version: go1.24.4
89-
Git commit: 5beb93d
90-
Built: Wed Jul 2 20:56:31 2025
91-
OS/Arch: linux/arm64
88+
Go version: go1.24.5
89+
Git commit: e77ff99
90+
Built: Wed Jul 9 16:13:45 2025
91+
OS/Arch: linux/amd64
9292
...
9393
```
9494

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ require (
5151
github.com/moby/buildkit v0.23.1 // indirect
5252
github.com/moby/docker-image-spec v1.3.1 // indirect
5353
github.com/moby/locker v1.0.1 // indirect
54-
github.com/moby/moby v28.3.0+incompatible // indirect
54+
github.com/moby/moby v28.3.2+incompatible // indirect
5555
github.com/moby/sys/atomicwriter v0.1.0 // indirect
5656
github.com/moby/sys/sequential v0.6.0 // indirect
5757
github.com/moby/term v0.5.2 // indirect
@@ -109,5 +109,5 @@ replace (
109109
github.com/docker/model-cli => github.com/docker/model-cli v0.1.33-0.20250703103301-d4e4936a9eb2
110110
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
111111
github.com/moby/buildkit => github.com/moby/buildkit v0.22.0
112-
github.com/moby/moby => github.com/moby/moby v28.3.0+incompatible
112+
github.com/moby/moby => github.com/moby/moby v28.3.2+incompatible
113113
)

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ github.com/moby/moby v28.2.1+incompatible h1:UYmHExYP8S0uGKDozhYw7RJ+LpANL51g4fa
138138
github.com/moby/moby v28.2.1+incompatible/go.mod h1:fDXVQ6+S340veQPv35CzDahGBmHsiclFwfEygB/TWMc=
139139
github.com/moby/moby v28.3.0+incompatible h1:BnZpCciB9dCnfNC+MerxqsHV4I6/gLiZIzzbRFJIhUY=
140140
github.com/moby/moby v28.3.0+incompatible/go.mod h1:fDXVQ6+S340veQPv35CzDahGBmHsiclFwfEygB/TWMc=
141+
github.com/moby/moby v28.3.2+incompatible h1:K0SaQiU3VJxzMmHarwIa9MUyYFYC6FzCf0Qs9oQaFI4=
142+
github.com/moby/moby v28.3.2+incompatible/go.mod h1:fDXVQ6+S340veQPv35CzDahGBmHsiclFwfEygB/TWMc=
141143
github.com/moby/sys/atomicwriter v0.1.0 h1:kw5D/EqkBwsBFi0ss9v1VG3wIkVhzGvLklJ+w3A14Sw=
142144
github.com/moby/sys/atomicwriter v0.1.0/go.mod h1:Ul8oqv2ZMNHOceF643P6FKPXeCmYtlQMvpizfsSoaWs=
143145
github.com/moby/sys/sequential v0.6.0 h1:qrx7XFUd/5DxtqcoH1h438hF5TmOvzC/lspjy7zgvCU=

hugo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ params:
135135
# Latest version of the Docker Engine API
136136
latest_engine_api_version: "1.51"
137137
# Latest version of Docker Engine
138-
docker_ce_version: "28.3.1"
138+
docker_ce_version: "28.3.2"
139139
# Previous version of the Docker Engine
140140
# (Used to show e.g., "latest" and "latest"-1 in engine install examples
141-
docker_ce_version_prev: "28.3.0"
141+
docker_ce_version_prev: "28.3.1"
142142
# Latest Docker Compose version
143143
compose_version: "v2.38.2"
144144
# Latest BuildKit version

0 commit comments

Comments
 (0)