diff --git a/content/manuals/engine/release-notes/28.md b/content/manuals/engine/release-notes/28.md index dabe1c8052b1..b4d68515a608 100644 --- a/content/manuals/engine/release-notes/28.md +++ b/content/manuals/engine/release-notes/28.md @@ -23,6 +23,51 @@ For more information about: - 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.md). +## 28.5.0 + +{{< release-date date="2025-10-02" >}} + +For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones: + +- [docker/cli, 28.5.0 milestone](https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A28.5.0) +- [moby/moby, 28.5.0 milestone](https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A28.5.0) + +### Bug fixes and enhancements + +- Don't print warnings in `docker info` for broken symlinks in CLI-plugin directories. [docker/cli#6476](https://github.com/docker/cli/pull/6476) +- Fix a panic during `stats` on empty event `Actor.ID`. [docker/cli#6471](https://github.com/docker/cli/pull/6471) + +### Packaging updates + +- Remove support for legacy CBC cipher suites. [docker/cli#6474](https://github.com/docker/cli/pull/6474) +- Update Buildkit to [v0.25.0](https://github.com/moby/buildkit/releases/tag/v0.25.0). [moby/moby#51075](https://github.com/moby/moby/pull/51075) +- Update Dockerfile syntax to [v1.19.0](https://github.com/moby/buildkit/releases/tag/dockerfile%2F1.19.0). [moby/moby#51075](https://github.com/moby/moby/pull/51075) + +### Networking + +- Eliminated harmless warning about deletion of `endpoint_count` from the data store. [moby/moby#51064](https://github.com/moby/moby/pull/51064) +- Fix a bug causing IPAM plugins to not be loaded on Windows. [moby/moby#51035](https://github.com/moby/moby/pull/51035) + +### API + +- Deprecate support for kernel memory TCP accounting (`KernelMemoryTCP`). [moby/moby#51067](https://github.com/moby/moby/pull/51067) +- Fix `GET containers/{name}/checkpoints` returning `null` instead of empty JSON array when there are no checkpoints. [moby/moby#51052](https://github.com/moby/moby/pull/51052) + +### Go SDK + +- cli-plugins/plugin: Run: allow customizing the CLI. [docker/cli#6481](https://github.com/docker/cli/pull/6481) +- cli/command: add `WithUserAgent` option. [docker/cli#6477](https://github.com/docker/cli/pull/6477) + +### Deprecations + +- Go-SDK: cli/command: deprecate `DockerCli.Apply`. This method is no longer used and will be removed in the next release if there are no remaining uses. [docker/cli#6497](https://github.com/docker/cli/pull/6497) +- Go-SDK: cli/command: deprecate `DockerCli.ContentTrustEnabled`. This method is no longer used and will be removed in the next release. [docker/cli#6495](https://github.com/docker/cli/pull/6495) +- Go-SDK: cli/command: deprecate `DockerCli.DefaultVersion`. This method is no longer used and will be removed in the next release. [docker/cli#6491](https://github.com/docker/cli/pull/6491) +- Go-SDK: cli/command: deprecate `ResolveDefaultContext` utility. [docker/cli#6529](https://github.com/docker/cli/pull/6529) +- Go-SDK: cli/command: deprecate `WithContentTrustFromEnv`, `WithContentTrust` options. These options were used internally, and will be removed in the next release.. [docker/cli#6489](https://github.com/docker/cli/pull/6489) +- Go-SDK: cli/manifest/store: deprecate `IsNotFound()`. [docker/cli#6514](https://github.com/docker/cli/pull/6514) +- Go-SDK: templates: deprecate NewParse() function. [docker/cli#6469](https://github.com/docker/cli/pull/6469) + ## 28.4.0 {{< release-date date="2025-09-03" >}} diff --git a/content/reference/api/engine/_index.md b/content/reference/api/engine/_index.md index d7af7f93b863..7cd8945b7440 100644 --- a/content/reference/api/engine/_index.md +++ b/content/reference/api/engine/_index.md @@ -73,22 +73,22 @@ To see the highest version of the API your Docker daemon and client support, use ```console $ docker version Client: Docker Engine - Community - Version: 28.4.0 + Version: 28.5.0 API version: 1.51 Go version: go1.24.7 - Git commit: d8eb465 - Built: Wed Sep 3 20:57:32 2025 - OS/Arch: linux/amd64 + Git commit: 887030f + Built: Thu Oct 2 14:55:13 2025 + OS/Arch: linux/arm64 Context: default Server: Docker Engine - Community Engine: - Version: 28.4.0 + Version: 28.5.0 API version: 1.51 (minimum version 1.24) Go version: go1.24.7 - Git commit: 249d679 - Built: Wed Sep 3 20:57:32 2025 - OS/Arch: linux/amd64 + Git commit: cd04830 + Built: Thu Oct 2 14:55:13 2025 + OS/Arch: linux/arm64 ... ``` diff --git a/hugo.yaml b/hugo.yaml index fe6263a8415e..d580083c9027 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -135,14 +135,14 @@ params: # Latest version of the Docker Engine API latest_engine_api_version: "1.51" # Latest version of Docker Engine - docker_ce_version: "28.4.0" + docker_ce_version: "28.5.0" # Previous version of the Docker Engine # (Used to show e.g., "latest" and "latest"-1 in engine install examples - docker_ce_version_prev: "28.3.3" + docker_ce_version_prev: "28.4.0" # Latest Docker Compose version compose_version: "v2.39.4" # Latest BuildKit version - buildkit_version: "0.24.0" + buildkit_version: "0.25.0" # Example runtime/library/os versions example_go_version: "1.24"