mirror of
https://github.com/docker/docs.git
synced 2026-03-27 06:18:55 +07:00
docker: 28.5.0 (#23486)
<!--Delete sections as needed --> ## Description <!-- Tell us what you did and why --> ## Related issues or tickets <!-- Related issues, pull requests, or Jira tickets --> ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review --------- Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com> Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
This commit is contained in:
@@ -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" >}}
|
||||
|
||||
@@ -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
|
||||
...
|
||||
```
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user