Skip to content
Draft

4.77 RN #25229

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions content/manuals/desktop/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,47 @@ Docker Desktop versions older than 6 months from the latest release are not avai

For more frequently asked questions, see the [FAQs](/manuals/desktop/troubleshoot-and-support/faqs/releases.md).

## 4.77.0

{{< release-date date="2026-06-08" >}}

{{< desktop-install-v2 all=true win_arm_release="Early Access" version="4.77.0" build_path="//" >}}
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[HIGH] build_path="//" — missing numeric build ID causes broken download links

The desktop-install-v2 shortcode uses build_path to construct download URLs for Docker Desktop installers. Every other release entry uses a numeric build path (e.g., /228118/ for 4.76.0, /227598/ for 4.75.0). The value "//" is a placeholder that was never replaced with the actual build ID.

This will produce malformed download links for all Docker Desktop 4.77.0 installers on the release notes page.

Replace build_path="//" with the correct numeric build path, for example:

{{< desktop-install-v2 all=true win_arm_release="Early Access" version="4.77.0" build_path="/228456/" >}}


### New

- You can now export log data from the **Logs** view.

### Updates

- Docker Offload v0.6.0
- [Docker Buildx v0.34.1](https://github.com/docker/buildx/releases/tag/v0.34.1)
- [Docker Agent v1.70.0](https://github.com/docker/docker-agent/releases/tag/v1.70.0)
- [Docker MCP gateway v0.42.2](https://github.com/docker/mcp-gateway/releases/tag/v0.42.2)
- `docker pass` v0.1.2
- [containerd v2.2.4](https://github.com/containerd/containerd/releases/tag/v2.2.4)
- [Docker DHI (dhictl) v0.0.4 release notes](https://github.com/docker-hardened-images/dhictl/releases/tag/v0.0.4)

### Bug fixes and enhancements

#### For all platforms

- Marketplace extensions are now installed and updated by pinned manifest digest, instead of by tag, protecting against tag mutation after publication.
- Added Buildx version information to the About window.
- Added a case-sensitivity toggle to the **Logs** search bar which lets you switch between case-insensitive (default) and case-sensitive log filtering.
- Fixed a bug where the mouse wheel scroll was not working in the **Logs** view grid.
- Fixed an issue where the backend incorrectly exited with error code 150 on clean shutdown via SIGINT or SIGTERM, causing false failure signals.
- Removed the bundled `hub-tool` binary from Docker Desktop.
- Added working **Authenticate** and **Cancel** buttons to the MCP OAuth authorization chat bubble in Gordon, letting you complete or decline OAuth sign-in flows from MCP servers.
- Added two new commands to `docker pass`:
- Use `docker pass run` to inject secrets into host commands.
- Use `docker pass plugins` for dynamic plugin management.

#### For Windows

- Fixed an issue on Windows where Docker Desktop would get stuck on **Starting the Docker Engine...** after a failed WSL distro registration left a VHDX on disk.
- Fixed a backend shutdown hang in Windows Containers mode that caused Docker Desktop to take a long time or fail to exit cleanly.
- Fixed unbounded growth of the WSL2 ISO cache. Old `docker-desktop.iso` and `docker-wsl-cli.iso` entries are now removed when a new version is installed. Fixes [docker/desktop-feedback#419](https://github.com/docker/desktop-feedback/issues/419).

## 4.76.0

{{< release-date date="2026-06-01" >}}
Expand Down