docs: expand 7.2.5 base distro updates#459
Conversation
Purpose of the change - Add the detailed Base distro package updates for the Unraid OS 7.2.5 release note. How behavior was before - The Base distro section only listed Docker as version 29. Why that was a problem - The release note did not show the exact package version transitions or related CVEs for Docker, libpng, and PHP. What the new change accomplishes - Documents Docker 27.5.1 to 29.3.1 with the provided CVE list. - Adds libpng 1.6.50 to 1.6.57 with its CVE. - Adds PHP 8.3.26 to 8.3.29 with its CVEs. How it works - Replaces the placeholder Base distro bullet in docs/unraid-os/release-notes/7.2.5.md with the detailed package bullets.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughExpanded release-notes Docker entry to an explicit upgrade range and added libpng and PHP base component upgrade lines with CVEs; adjusted MDX anchor syntax for two setup docs (changed plain heading IDs to JSX-comment-wrapped forms). No functional code changes. (34 words) Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
unraid-docs | f7f68a5 | Commit Preview URL Branch Preview URL |
Apr 18 2026, 12:52 PM |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@docs/unraid-os/release-notes/7.2.5.md`:
- Line 46: Update the CVE list in the docker version line so the separators are
consistent: replace the single comma before CVE-2024-45336 with the same
delimiter used elsewhere (use commas between all CVEs or spaces between all
CVEs); locate the line containing "docker: version 27.5.1 -> 29.3.1
(CVE-2026-34040 ... CVE-2024-45336 CVE-2025-27144)" and normalize the separators
so every CVE is separated the same way (e.g., "CVE-2026-34040, CVE-2026-33997,
... , CVE-2024-45336, CVE-2025-27144").
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository UI
Review profile: CHILL
Plan: Pro
Run ID: 330450f2-5f32-4fc3-b65e-9a12048ab419
📒 Files selected for processing (1)
docs/unraid-os/release-notes/7.2.5.md
Purpose of the change - Normalize the Docker CVE separators in the Unraid OS 7.2.5 release note. How behavior was before - The Docker Base distro bullet mixed space-separated CVEs with one comma-separated pair. Why that was a problem - The inconsistent separators made the CVE list harder to scan and triggered review feedback. What the new change accomplishes - Uses comma separators consistently across every Docker CVE entry. How it works - Updates the Docker package bullet in docs/unraid-os/release-notes/7.2.5.md only.
Purpose of the change:
- Fix MDX parsing failures in setup documentation caused by classic heading ID syntax.
How behavior was before:
- The affected translated/setup MDX headings used Docusaurus-compatible classic anchors like {#anchor}.
- remark's MDX parser treated those braces as JavaScript expressions and failed before lint could complete.
Why that was a problem:
- pnpm lint stopped on two Cannot process file errors, blocking CI for docs changes.
What the new change accomplishes:
- Converts the two heading anchors to Docusaurus's MDX-safe comment-anchor syntax while preserving stable link targets.
How it works:
- Replaces classic {#...} heading IDs with {/* #... */} comments inline with the same headings.
Summary
7.2.5Base distro updates section.27.5.1 -> 29.3.1update and CVE list.1.6.50 -> 1.6.57and PHP8.3.26 -> 8.3.29update bullets with CVEs.Validation
pnpm exec remark docs/unraid-os/release-notes/7.2.5.md --quiet --frailAGENTS.mdguidance for this repo.Checklist
Before Submitting This PR, Please Ensure You Have Completed The Following:
Summary by CodeRabbit