mirror of https://github.com/docker/docs.git
engine: 28.0.3 (#22304)
<!--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:
parent
3535a2d8d5
commit
17b7d12f9a
|
@ -22,6 +22,25 @@ 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.0.3
|
||||
|
||||
{{< release-date date="2025-03-25" >}}
|
||||
|
||||
For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:
|
||||
|
||||
- [docker/cli, 28.0.3 milestone](https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A28.0.3)
|
||||
- [moby/moby, 28.0.3 milestone](https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A28.0.3)
|
||||
|
||||
### Bug fixes and enhancements
|
||||
|
||||
- Fix `docker run` truncating the `STDOUT`/`STDERR` prematurely when the container exits before the data is consumed. [docker/cli#5957](https://github.com/docker/cli/pull/5957)
|
||||
|
||||
### Packaging updates
|
||||
|
||||
- Update BuildKit to [v0.20.2](https://github.com/moby/buildkit/releases/tag/v0.20.2). [moby/moby#49698](https://github.com/moby/moby/pull/49698)
|
||||
- Update `runc` to [v1.2.6](https://github.com/opencontainers/runc/releases/tag/v1.2.6). [moby/moby#49682](https://github.com/moby/moby/pull/49682)
|
||||
- Update containerd to [v1.7.26](https://github.com/containerd/containerd/releases/tag/v1.7.26). [docker/containerd-packaging#409](https://github.com/docker/containerd-packaging/pull/409)
|
||||
|
||||
## 28.0.2
|
||||
|
||||
{{< release-date date="2025-03-19" >}}
|
||||
|
|
|
@ -113,14 +113,14 @@ params:
|
|||
# Latest version of the Docker Engine API
|
||||
latest_engine_api_version: "1.48"
|
||||
# Latest version of Docker Engine
|
||||
docker_ce_version: "28.0.2"
|
||||
docker_ce_version: "28.0.3"
|
||||
# Previous version of the Docker Engine
|
||||
# (Used to show e.g., "latest" and "latest"-1 in engine install examples
|
||||
docker_ce_version_prev: "28.0.1"
|
||||
docker_ce_version_prev: "28.0.2"
|
||||
# Latest Docker Compose version
|
||||
compose_version: "v2.34.0"
|
||||
# Latest BuildKit version
|
||||
buildkit_version: "0.20.1"
|
||||
buildkit_version: "0.20.2"
|
||||
|
||||
# Example runtime/library/os versions
|
||||
example_go_version: "1.23"
|
||||
|
|
Loading…
Reference in New Issue