Astro 7.2.10
Astro shipped version 7.2.10 on August 31, 2026, a patch release carrying eight fixes that touch SSR manifest generation, dev-mode caching, markdown rendering, and Windows development workflows. It is available now on npm.
What Changed
- SSR boot fix — The SSR manifest placeholder is no longer left un-replaced when the server build is minified, which previously caused a runtime
Invalid URLcrash at server startup. - Logger fix — The logger is now initialized correctly at runtime in dev mode, fixing a case where it was improperly started.
- Dev cache hinting — Browser heuristic caching now works correctly for cached responses that include
Last-ModifiedorETagvalidators. - Content collections on Windows — Editing a content collection entry during
astro devno longer serves stale content; the data store notifies the dev server directly after each write. - Markdown images — Content-collection markdown images no longer render an empty
srcsetattribute when no responsive candidates are generated. - Dependency pin —
@astrojs/markdown-remarkis no longer pinned to an exact version, and@astrojs/internal-helpersmoved to 0.11.0.
Why It Matters
Most notably, prerender conflict warnings now correctly identify the exact route that first produced a duplicate pathname instead of blaming an unrelated matching route. Alongside the SSR boot fix, this makes the 7.2 series significantly more reliable for production builds.
What's Next
Astro 7.2.10 is a point release with no breaking changes, so existing projects can upgrade with a straightforward package bump.
Update with npm install astro@latest.