From c35843911210c66ee63bf98f759f1290b92ff598 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Tue, 30 Apr 2024 11:43:01 +0200 Subject: [PATCH] engine: 26.1.1 release notes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Gronowski Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- content/engine/release-notes/26.1.md | 27 +++++++++++++++++++++++++++ hugo.yaml | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/content/engine/release-notes/26.1.md b/content/engine/release-notes/26.1.md index da959c8f1694..32308f1f2e78 100644 --- a/content/engine/release-notes/26.1.md +++ b/content/engine/release-notes/26.1.md @@ -19,6 +19,33 @@ For more information about: - Deprecated and removed features, see [Deprecated Engine Features](../deprecated.md). - Changes to the Engine API, see [Engine API version history](../api/version-history.md). +## 26.1.1 + +{{< release-date date="2024-04-30" >}} + +For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones: + +- [docker/cli, 26.1.1 milestone](https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A26.1.1) +- [moby/moby, 26.1.1 milestone](https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A26.1.1) +- Deprecated and removed features, see [Deprecated Features](https://github.com/docker/cli/blob/v26.1.1/docs/deprecated.md). +- Changes to the Engine API, see [API version history](https://github.com/moby/moby/blob/v26.1.1/docs/api/version-history.md). + +### Bug fixes and enhancements + +- Fix `docker run -d` printing an `context canceled` spurious error when OpenTelemetry is configured. [docker/cli#5044](https://github.com/docker/cli/pull/5044) +- Experimental environment variable `DOCKER_BRIDGE_PRESERVE_KERNEL_LL=1` will prevent the daemon from removing the kernel-assigned link local address on a Linux bridge. [moby/moby#47775](https://github.com/moby/moby/pull/47775) +- Resolve an issue preventing container creation on hosts with a read-only `/proc/sys/net` filesystem. If IPv6 cannot be disabled on an interface due to this, either disable IPv6 by default on the host or ensure `/proc/sys/net` is read-write. To bypass the error, set the environment variable `DOCKER_ALLOW_IPV6_ON_IPV4_INTERFACE=1` before starting the Docker daemon. [moby/moby#47769](https://github.com/moby/moby/pull/47769) + +> **Note** +> +> The `DOCKER_ALLOW_IPV6_ON_IPV4_INTERFACE` is added as a temporary fix and will be phased out in a future major release, when the IPv6 enablement process has been improved. + +### Packaging updates + +- Update BuildKit to [v0.13.2](https://github.com/moby/buildkit/releases/tag/v0.13.2). [moby/moby#47762](https://github.com/moby/moby/pull/47762) +- Update Compose to [v2.27.0](https://github.com/docker/compose/releases/tag/v2.27.0). [docker/docker-ce-packages#1017](https://github.com/docker/docker-ce-packaging/pull/1017) + + ## 26.1.0 {{< release-date date="2024-04-22" >}} diff --git a/hugo.yaml b/hugo.yaml index f203e505d4d9..6423fb75c9b1 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -97,7 +97,7 @@ params: docs_url: https://docs.docker.com latest_engine_api_version: "1.45" - docker_ce_version: "26.1.0" + docker_ce_version: "26.1.1" compose_version: "v2.27.0" compose_file_v3: "3.8" compose_file_v2: "2.4"