4.82-RN#25499
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
This PR adds the Docker Desktop 4.82 release notes but has two critical errors and one note to verify before merging:
- Section heading mismatch — heading reads
## 4.81but should be## 4.82.0 - Broken build path —
build_path="//"is an unfilled placeholder that will generate broken installer download links - Future release date —
2026-07-13is 7 days ahead; verify this is intentional
|
|
||
| {{< release-date date="2026-07-13" >}} | ||
|
|
||
| {{< desktop-install-v2 all=true win_arm_release="Early Access" version="4.82.0" build_path="//" >}} |
There was a problem hiding this comment.
[HIGH] Placeholder build_path="//" will produce broken installer download links
The build_path parameter is set to "//", which appears to be an unfilled placeholder. Every other release entry uses a real numeric build path (e.g. build_path="/232925/", build_path="/232116/"). The shortcode uses this value to construct installer download URLs, so "//" will generate broken links for all four platform installers.
This needs to be filled in with the actual build number before merging.
|
|
||
| ## 4.81 | ||
|
|
||
| {{< release-date date="2026-07-13" >}} |
There was a problem hiding this comment.
[MEDIUM] Release date 2026-07-13 is one week in the future
The release date is set to 2026-07-13 while today is 2026-07-06. If this PR is merged before the release ships, the live docs will display a future date, which could mislead users who view the page between merge and the actual release.
If this is intentional pre-release prep and the PR will be merged on or after the release date, this is fine. If the date is wrong, update it to match the actual release date.
Description
Related issues or tickets
Reviews