Skip to content

Commit 0e92efc

Browse files
authored
Merge pull request #23799 from vvoland/update-docker-2912
engine: 29.1.2
2 parents ef743c7 + c20f9db commit 0e92efc

File tree

6 files changed

+45
-13
lines changed

6 files changed

+45
-13
lines changed

_vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# github.com/moby/moby/api v1.52.0
22
# github.com/moby/buildkit v0.26.1
33
# github.com/docker/buildx v0.30.1
4-
# github.com/docker/cli v29.1.1+incompatible
4+
# github.com/docker/cli v29.1.2+incompatible
55
# github.com/docker/compose/v2 v2.40.3
66
# github.com/docker/model-runner/cmd/cli v0.1.44
77
# github.com/docker/mcp-gateway v0.22.0

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

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

25+
## 29.1.2
26+
27+
{{< release-date date="2025-12-02" >}}
28+
29+
For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:
30+
31+
- [docker/cli, 29.1.2 milestone](https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A29.1.2)
32+
- [moby/moby, 29.1.2 milestone](https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A29.1.2)
33+
34+
### Security
35+
36+
- Update Go runtime to [1.25.5](https://go.dev/doc/devel/release#go1.25.5). [moby/moby#51648](https://github.com/moby/moby/pull/51648), [docker/cli#6688](https://github.com/docker/cli/pull/6688)
37+
- Fixes a potential DoS via excessive resource usage when formatting hostname validation errors [**CVE-2025-61729**](https://nvd.nist.gov/vuln/detail/CVE-2025-61729)
38+
- Fixes incorrect enforcement of excluded subdomain constraints for wildcard SANs, which could allow improperly trusted certificates [**CVE-2025-61727**](https://nvd.nist.gov/vuln/detail/CVE-2025-22874)
39+
40+
### Bug fixes and enhancements
41+
42+
- containerd image store: Fix `docker image inspect` failing to return available image data in case where not all distributable blobs are available locally. [moby/moby#51629](https://github.com/moby/moby/pull/51629)
43+
- dockerd-rootless-setuptool.sh: fix `nsenter: no namespace specified`. [moby/moby#51622](https://github.com/moby/moby/pull/51622)
44+
- Fix `docker system df` showing `N/A` for shared size and unique size when using graph-drivers as storage. [moby/moby#51631](https://github.com/moby/moby/pull/51631)
45+
46+
### Packaging updates
47+
48+
- Update runc (in static binaries) to [v1.3.4](https://github.com/opencontainers/runc/releases/tag/v1.3.4). [moby/moby#51633](https://github.com/moby/moby/pull/51633)
49+
50+
### Networking
51+
52+
- Fix a bug preventing port mappings in rootless mode when slirp4netns is used. [moby/moby#51616](https://github.com/moby/moby/pull/51616)
53+
- Prevent a crash when making an API request with `HostConfig.PublishAllPorts` set (`-P`), and no port bindings. [moby/moby#51621](https://github.com/moby/moby/pull/51621)
54+
2555
## 29.1.1
2656

2757
{{< release-date date="2025-11-28" >}}

content/reference/api/engine/_index.md

Lines changed: 8 additions & 8 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: 29.0.4
76+
Version: 29.1.2
7777
API version: 1.52
78-
Go version: go1.25.4
79-
Git commit: 3247a5a
80-
Built: Mon Nov 24 21:59:50 2025
78+
Go version: go1.25.5
79+
Git commit: 890dcca
80+
Built: Tue Dec 2 21:56:10 2025
8181
OS/Arch: linux/arm64
8282
Context: default
8383

8484
Server: Docker Engine - Community
8585
Engine:
86-
Version: 29.0.4
86+
Version: 29.1.2
8787
API version: 1.52 (minimum version 1.44)
88-
Go version: go1.25.4
89-
Git commit: 4612690
90-
Built: Mon Nov 24 21:59:50 2025
88+
Go version: go1.25.5
89+
Git commit: de45c2a
90+
Built: Tue Dec 2 21:56:10 2025
9191
OS/Arch: linux/arm64
9292
...
9393
```

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.24.9
44

55
require (
66
github.com/docker/buildx v0.30.1 // indirect
7-
github.com/docker/cli v29.1.1+incompatible // indirect; see "replace" rule at the bottom for actual version
7+
github.com/docker/cli v29.1.2+incompatible // indirect; see "replace" rule at the bottom for actual version
88
github.com/docker/compose/v2 v2.40.3 // indirect
99
github.com/docker/mcp-gateway v0.22.0 // indirect
1010
github.com/docker/model-runner/cmd/cli v0.1.44 // indirect
@@ -15,7 +15,7 @@ require (
1515

1616
replace (
1717
github.com/docker/buildx => github.com/docker/buildx v0.30.1
18-
github.com/docker/cli => github.com/docker/cli v29.1.1+incompatible
18+
github.com/docker/cli => github.com/docker/cli v29.1.2+incompatible
1919
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.40.3
2020
github.com/docker/mcp-gateway => github.com/docker/mcp-gateway v0.22.0
2121
github.com/docker/model-runner/cmd/cli => github.com/docker/model-runner/cmd/cli v0.1.44

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ github.com/docker/cli v29.0.0+incompatible h1:KgsN2RUFMNM8wChxryicn4p46BdQWpXOA1
66
github.com/docker/cli v29.0.0+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
77
github.com/docker/cli v29.1.1+incompatible h1:gGQk5qx62yPKRm3bUdKBzmDBSQzp17hlSLbV1F7jjys=
88
github.com/docker/cli v29.1.1+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
9+
github.com/docker/cli v29.1.2+incompatible h1:s4QI7drXpIo78OM+CwuthPsO5kCf8cpNsck5PsLVTH8=
10+
github.com/docker/cli v29.1.2+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
911
github.com/docker/compose/v2 v2.40.3 h1:XeYkQu1svDtyfZPv5nTwFryQ25ZJMkIlc4pz9HalMPI=
1012
github.com/docker/compose/v2 v2.40.3/go.mod h1:iNY1tvoHTyN3C3QHCuWAgj3OjR2T6mGkk/qxfbBF/4M=
1113
github.com/docker/mcp-gateway v0.22.0 h1:l4t+HRNHxR7Jn545KDeXaeiEEhkCDBeWMTyuCaXVH7A=

hugo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,10 @@ params:
122122
# Latest version of the Docker Engine API
123123
latest_engine_api_version: "1.52"
124124
# Latest version of Docker Engine
125-
docker_ce_version: "29.1.1"
125+
docker_ce_version: "29.1.2"
126126
# Previous version of the Docker Engine
127127
# (Used to show e.g., "latest" and "latest"-1 in engine install examples
128-
docker_ce_version_prev: "29.1.0"
128+
docker_ce_version_prev: "29.1.1"
129129
# Latest Docker Compose version
130130
compose_version: "v2.40.3"
131131
# Latest BuildKit version

0 commit comments

Comments
 (0)