4.77 RN#25229
Conversation
✅ Deploy Preview for docsdocker ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
docker-agent
left a comment
There was a problem hiding this comment.
Assessment: 🔴 CRITICAL
One high-severity issue (wrong installer version in shortcode) and four medium-severity issues found in the 4.77.0 release notes section.
docker-agent
left a comment
There was a problem hiding this comment.
Assessment: 🔴 CRITICAL
The build_path="//" shortcode parameter for 4.77.0 is a placeholder that was never filled in. All download links for Docker Desktop 4.77.0 will be broken until corrected.
|
|
||
| {{< release-date date="2026-06-08" >}} | ||
|
|
||
| {{< desktop-install-v2 all=true win_arm_release="Early Access" version="4.77.0" build_path="//" >}} |
There was a problem hiding this comment.
[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/" >}}
Description
Related issues or tickets
Reviews