Astro 7.2.9
The Astro team released version 7.2.9 on August 27, 2026, a patch release that fixes four issues spanning static asset imports, dynamic routing, SSR builds, and MDX escaping. The update is available now through the Astro package on npm.
What Changed
The release resolves a typing gap where importing .html files was not type-checked correctly outside of .astro files. It also fixes a crash that occurred when requesting /index.html against a dynamic page route such as [slug].astro.
Why It Matters
For server-side rendering, the manifest no longer carries stale entryModules references to prerender-only chunks that no longer exist in the final build output, preventing dangling bundle references in production. Additionally, set:text now escapes correctly inside MDX script and style elements, closing a correctness gap for MDX-generated pages.
What's Next
Astro 7.2.9 is a point release with no breaking changes, so existing projects can upgrade with a simple package bump. The team continues to iterate on the 7.2 series ahead of the next minor milestone.