Skip to content

Commit 286ca02

Browse files
vvolandArthurFlag
andauthored
Docker 28.3.3 (#23183)
<!--Delete sections as needed --> ## Description <!-- Tell us what you did and why --> ## Related issues or tickets <!-- Related issues, pull requests, or Jira tickets --> ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review --------- Signed-off-by: Paweł Gronowski <[email protected]> Co-authored-by: Arthur <[email protected]>
1 parent 3312403 commit 286ca02

File tree

6 files changed

+38
-14
lines changed

6 files changed

+38
-14
lines changed

_vendor/modules.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# github.com/moby/moby v28.3.2+incompatible
1+
# github.com/moby/moby v28.3.3+incompatible
22
# github.com/moby/buildkit v0.23.2
33
# github.com/docker/buildx v0.26.1
4-
# github.com/docker/cli v28.3.3-0.20250711132746-c69d8bde4adc+incompatible
4+
# github.com/docker/cli v28.3.3+incompatible
55
# github.com/docker/compose/v2 v2.39.1
66
# github.com/docker/model-cli v0.1.33-0.20250703103301-d4e4936a9eb2
77
# github.com/docker/scout-cli v1.18.1

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,25 @@ 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.3
27+
28+
{{< release-date date="2025-07-29" >}}
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.3 milestone](https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A28.3.3)
33+
- [moby/moby, 28.3.3 milestone](https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A28.3.3)
34+
35+
### Security
36+
37+
This release fixes an issue where, after a firewalld reload, published container ports could be accessed directly from the local network, even when they were intended to be accessible only via a loopback address. [CVE-2025-54388](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-54388) / [GHSA-x4rx-4gw3-53p4](https://github.com/moby/moby/security/advisories/GHSA-x4rx-4gw3-53p4) / [moby/moby#50506](https://github.com/moby/moby/pull/50506).
38+
39+
### Packaging updates
40+
41+
- Update Buildx to [v0.26.1](https://github.com/docker/buildx/releases/tag/v0.26.1). [docker/docker-ce-packaging#1230](https://github.com/docker/docker-ce-packaging/pull/1230)
42+
- Update Compose to [v2.39.1](https://github.com/docker/compose/releases/tag/v2.39.1). [docker/docker-ce-packaging#1234](https://github.com/docker/docker-ce-packaging/pull/1234)
43+
- Update Docker Model CLI plugin to [v0.1.36](https://github.com/docker/model-cli/releases/tag/v0.1.36). [docker/docker-ce-packaging#1233](https://github.com/docker/docker-ce-packaging/pull/1233)
44+
2645
## 28.3.2
2746

2847
{{< release-date date="2025-07-09" >}}
@@ -723,3 +742,4 @@ For a full list of pull requests and changes in this release, refer to the relev
723742
- `pkg/directory.Size()` function is deprecated, and will be removed in the next release. [moby/moby#48057](https://github.com/moby/moby/pull/48057)
724743
- `registry`: Deprecate `APIEndpoint.TrimHostName`; hostname is now trimmed unconditionally for remote names. This field will be removed in the next release. [moby/moby#49005](https://github.com/moby/moby/pull/49005)
725744
- `allow-nondistributable-artifacts` field in `daemon.json`. Setting either option will no longer take effect, but a deprecation warning log is added to raise awareness about the deprecation. This warning is planned to become an error in the next release. [moby/moby#49065](https://github.com/moby/moby/pull/49065)
745+

content/reference/api/engine/_index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,21 +73,21 @@ 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.2
76+
Version: 28.3.3
7777
API version: 1.51
7878
Go version: go1.24.5
79-
Git commit: 578ccf6
80-
Built: Wed Jul 9 16:13:45 2025
79+
Git commit: 980b856
80+
Built: Fri Jul 25 11:34:09 2025
8181
OS/Arch: linux/amd64
8282
Context: default
8383

8484
Server: Docker Engine - Community
8585
Engine:
86-
Version: 28.3.2
86+
Version: 28.3.3
8787
API version: 1.51 (minimum version 1.24)
8888
Go version: go1.24.5
89-
Git commit: e77ff99
90-
Built: Wed Jul 9 16:13:45 2025
89+
Git commit: bea959c
90+
Built: Fri Jul 25 11:34:09 2025
9191
OS/Arch: linux/amd64
9292
...
9393
```

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ go 1.24.0
44

55
require (
66
github.com/docker/buildx v0.26.1 // indirect
7-
github.com/docker/cli v28.3.3-0.20250711132746-c69d8bde4adc+incompatible // indirect
7+
github.com/docker/cli v28.3.3+incompatible // indirect
88
github.com/docker/compose/v2 v2.39.1 // indirect
99
github.com/docker/model-cli v0.1.33-0.20250703103301-d4e4936a9eb2 // indirect
1010
github.com/docker/scout-cli v1.18.1 // indirect
1111
github.com/moby/buildkit v0.23.2 // indirect
12-
github.com/moby/moby v28.3.2+incompatible // indirect
12+
github.com/moby/moby v28.3.3+incompatible // indirect
1313
)
1414

1515
replace (
1616
github.com/docker/buildx => github.com/docker/buildx v0.26.1
17-
github.com/docker/cli => github.com/docker/cli v28.3.3-0.20250711132746-c69d8bde4adc+incompatible
17+
github.com/docker/cli => github.com/docker/cli v28.3.3+incompatible
1818
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.39.1
1919
github.com/docker/model-cli => github.com/docker/model-cli v0.1.33-0.20250703103301-d4e4936a9eb2
2020
github.com/docker/scout-cli => github.com/docker/scout-cli v1.18.1
2121
github.com/moby/buildkit => github.com/moby/buildkit v0.23.2
22-
github.com/moby/moby => github.com/moby/moby v28.3.2+incompatible
22+
github.com/moby/moby => github.com/moby/moby v28.3.3+incompatible
2323
)

go.sum

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ github.com/docker/cli v28.3.0+incompatible h1:s+ttruVLhB5ayeuf2BciwDVxYdKi+RoUlx
4040
github.com/docker/cli v28.3.0+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
4141
github.com/docker/cli v28.3.3-0.20250711132746-c69d8bde4adc+incompatible h1:5I561JBDi4n0RKxYNkUVc9xiLnlCfjjm31XRV0r3o98=
4242
github.com/docker/cli v28.3.3-0.20250711132746-c69d8bde4adc+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
43+
github.com/docker/cli v28.3.3+incompatible h1:fp9ZHAr1WWPGdIWBM1b3zLtgCF+83gRdVMTJsUeiyAo=
44+
github.com/docker/cli v28.3.3+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
4345
github.com/docker/compose/v2 v2.36.2 h1:rxk1PUUbhbAS6HkGsYo9xUmMBpKtVwFMNCQjE4+i5fk=
4446
github.com/docker/compose/v2 v2.36.2/go.mod h1:mZygkne+MAMu/e1B28PBFmG0Z0WefbxZ/IpcjSFdrw8=
4547
github.com/docker/compose/v2 v2.37.0 h1:R8Yik9ssiRz7T9BRfdOZy0xHDzOFPIJX40DrxzJ62dQ=
@@ -160,6 +162,8 @@ github.com/moby/moby v28.3.0+incompatible h1:BnZpCciB9dCnfNC+MerxqsHV4I6/gLiZIzz
160162
github.com/moby/moby v28.3.0+incompatible/go.mod h1:fDXVQ6+S340veQPv35CzDahGBmHsiclFwfEygB/TWMc=
161163
github.com/moby/moby v28.3.2+incompatible h1:K0SaQiU3VJxzMmHarwIa9MUyYFYC6FzCf0Qs9oQaFI4=
162164
github.com/moby/moby v28.3.2+incompatible/go.mod h1:fDXVQ6+S340veQPv35CzDahGBmHsiclFwfEygB/TWMc=
165+
github.com/moby/moby v28.3.3+incompatible h1:nzkZIIn9bQP9S553kNmJ+U8PBhdS2ciFWphV2vX/Zp4=
166+
github.com/moby/moby v28.3.3+incompatible/go.mod h1:fDXVQ6+S340veQPv35CzDahGBmHsiclFwfEygB/TWMc=
163167
github.com/moby/sys/atomicwriter v0.1.0 h1:kw5D/EqkBwsBFi0ss9v1VG3wIkVhzGvLklJ+w3A14Sw=
164168
github.com/moby/sys/atomicwriter v0.1.0/go.mod h1:Ul8oqv2ZMNHOceF643P6FKPXeCmYtlQMvpizfsSoaWs=
165169
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.2"
138+
docker_ce_version: "28.3.3"
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.1"
141+
docker_ce_version_prev: "28.3.2"
142142
# Latest Docker Compose version
143143
compose_version: "v2.39.1"
144144
# Latest BuildKit version

0 commit comments

Comments
 (0)