diff --git a/content/engine/api/_index.md b/content/engine/api/_index.md index 23c31ec1e8..80d1462518 100644 --- a/content/engine/api/_index.md +++ b/content/engine/api/_index.md @@ -73,21 +73,21 @@ To see the highest version of the API your Docker daemon and client support, use ```console $ docker version Client: Docker Engine - Community - Version: 27.1.1 + Version: 27.1.2 API version: 1.46 - Go version: go1.21.12 - Git commit: 6312585 - Built: Tue Jul 23 19:57:14 2024 + Go version: go1.21.13 + Git commit: d01f264 + Built: Mon Aug 12 11:51:13 2024 OS/Arch: linux/amd64 Context: default Server: Docker Engine - Community Engine: - Version: 27.1.1 + Version: 27.1.2 API version: 1.46 (minimum version 1.24) - Go version: go1.21.12 - Git commit: cc13f95 - Built: Tue Jul 23 19:57:14 2024 + Go version: go1.21.13 + Git commit: f9522e5 + Built: Mon Aug 12 11:51:13 2024 OS/Arch: linux/amd64 Experimental: false ... diff --git a/content/engine/release-notes/27.1.md b/content/engine/release-notes/27.1.md index 5d01f349a8..2635374543 100644 --- a/content/engine/release-notes/27.1.md +++ b/content/engine/release-notes/27.1.md @@ -21,6 +21,34 @@ 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). +## 27.1.2 + +{{< release-date date="2024-08-13" >}} + +For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones: + +- [docker/cli, 27.1.2 milestone](https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A27.1.2) +- [moby/moby, 27.1.2 milestone](https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A27.1.2) +- Deprecated and removed features, see [Deprecated Features](https://github.com/docker/cli/blob/v27.1.2/docs/deprecated.md). +- Changes to the Engine API, see [API version history](https://github.com/moby/moby/blob/v27.1.2/docs/api/version-history.md). + + +### Bug fixes and enhancements + +- Fix a regression that could result in a `ResourceExhausted desc = grpc: received message larger than max` error when building from a large Dockerfile. [moby/moby#48245](https://github.com/moby/moby/pull/48245) +- CLI: Fix `docker attach` printing a spurious `context cancelled` error message. [docker/cli#5296](https://github.com/docker/cli/pull/5296) +- CLI: Fix `docker attach` exiting on `SIGINT` instead of forwarding the signal to the container and waiting for it to exit. [docker/cli#5302](https://github.com/docker/cli/pull/5302) +- CLI: Fix `--device-read-bps` and `--device-write-bps` options not taking effect. [docker/cli#5339](https://github.com/docker/cli/pull/5339) +- CLI: Fix a panic happening in some cases while running a plugin. [docker/cli#5337](https://github.com/docker/cli/pull/5337) + + +### Packaging updates + +- Update BuildKit to [v0.15.1](https://github.com/moby/buildkit/releases/tag/v0.15.1). [moby/moby#48246](https://github.com/moby/moby/pull/48246) +- Update Buildx to [v0.16.2](https://github.com/docker/buildx/releases/tag/v0.16.2). [docker/docker-ce-packaging#1043](https://github.com/docker/docker-ce-packaging/pull/1043) +- Update Go runtime to 1.21.13. [moby/moby#48301](https://github.com/moby/moby/pull/48301), [docker/cli#5325](https://github.com/docker/cli/pull/5325), [docker/docker-ce-packaging#1046](https://github.com/docker/docker-ce-packaging/pull/1046) +- Remove unused `docker-proxy.exe` binary from Windows packages. [docker/docker-ce-packaging#1045](https://github.com/docker/docker-ce-packaging/pull/1045) + ## 27.1.1 {{< release-date date="2024-07-23" >}} diff --git a/hugo.yaml b/hugo.yaml index 4c5f5ba422..e197eb4f79 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -98,11 +98,11 @@ params: docs_url: https://docs.docker.com latest_engine_api_version: "1.46" - docker_ce_version: "27.1.1" + docker_ce_version: "27.1.2" compose_version: "v2.29.1" compose_file_v3: "3.8" compose_file_v2: "2.4" - buildkit_version: "0.15.0" + buildkit_version: "0.15.1" example_go_version: "1.21" example_golangci_lint_version: "v1.59"