Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions content/manuals/engine/release-notes/29.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,25 @@
- Deprecated and removed features, see [Deprecated Engine Features](../deprecated.md).
- Changes to the Engine API, see [Engine API version history](/reference/api/engine/version-history/).

## 29.1.4

{{< release-date date="2026-01-08" >}}

For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:

- [docker/cli, 29.1.4 milestone](https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A29.1.4)
- [moby/moby, 29.1.4 milestone](https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A29.1.4)

### Bug fixes and enhancements

- Fix `docker run --network none` panic on Windows. [moby/moby#51830](https://github.com/moby/moby/pull/51830)
- Fix image mounts failing with "file name too long" for long mount paths. [moby/moby#51829](https://github.com/moby/moby/pull/51829)

Check warning on line 37 in content/manuals/engine/release-notes/29.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'filename' instead of 'file name' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'filename' instead of 'file name'", "location": {"path": "content/manuals/engine/release-notes/29.md", "range": {"start": {"line": 37, "column": 34}}}, "severity": "INFO"}

Check warning on line 37 in content/manuals/engine/release-notes/29.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'filename' instead of 'file name' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'filename' instead of 'file name'", "location": {"path": "content/manuals/engine/release-notes/29.md", "range": {"start": {"line": 37, "column": 34}}}, "severity": "INFO"}
- Fix potential creation of orphaned overlay2 layers. [moby/moby#51826](https://github.com/moby/moby/pull/51826), [moby/moby#51824](https://github.com/moby/moby/pull/51824)

### Packaging updates

- Update BuildKit to [v0.26.3](https://github.com/moby/buildkit/releases/tag/v0.26.3). [moby/moby#51821](https://github.com/moby/moby/pull/51821)

## 29.1.3

{{< release-date date="2025-12-12" >}}
Expand Down
6 changes: 3 additions & 3 deletions hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,14 @@ params:
# Latest version of the Docker Engine API
latest_engine_api_version: "1.52"
# Latest version of Docker Engine
docker_ce_version: "29.1.3"
docker_ce_version: "29.1.4"
# Previous version of the Docker Engine
# (Used to show e.g., "latest" and "latest"-1 in engine install examples
docker_ce_version_prev: "29.1.2"
docker_ce_version_prev: "29.1.3"
# Latest Docker Compose version
compose_version: "v5.0.1"
# Latest BuildKit version
buildkit_version: "0.26.0"
buildkit_version: "0.26.3"

# Example runtime/library/os versions
example_go_version: "1.24"
Expand Down
Loading