Astro: astro@6.4.4 Release
Release date:
June 3, 2026
Magnitude:
389
Diff Delta
Contributors:
3 total committers
6 Commits
in this Release
Ordered by the degree to which they evolved the repo in this version.
Browse Other Releases
Latest Pending
Unreleased π
astro@7.0.0-alpha.2
Released June 8, 2026
15,466 Ξ
astro@7.0.0-alpha.1
Released May 9, 2026
7,568 Ξ
astro@7.0.0-alpha.0
Released April 30, 2026
0 Ξ
astro@6.4.6
Released June 10, 2026
263 Ξ
astro@6.4.5
Released June 9, 2026
512 Ξ
astro@6.4.4
Released June 3, 2026
389 Ξ
astro@6.4.3
Released June 2, 2026
1,201 Ξ
astro@6.4.2
Released May 28, 2026
359 Ξ
astro@6.4.0
Released May 28, 2026
2,765 Ξ
astro@6.3.8
Released May 26, 2026
1,687 Ξ
Top Contributors in astro@6.4.4
Release Notes Published
Patch Changes
#16926 1b39ae8 Thanks @narendraio! - Prevents App.match() from throwing on request paths that contain an invalid percent-sequence.
#16924 2c0bc94 Thanks @astrobot-houston! - Fixes an issue where editing a client-side component (e.g. with client:idle, client:load, etc.) caused an unnecessary full program reload of the backend during development.
#16958 2c1d50f Thanks @fkatsuhiro! - Fixes a bug where static file endpoints using getStaticPaths with .html in dynamic param values (e.g. { path: 'file.html' }) would fail with a NoMatchingStaticPathFound error during build. The .html suffix is no longer incorrectly stripped from endpoint route pathnames.
#16855 c610cda Thanks @astrobot-houston! - Fixes dynamic routes returning 500 "TypeError: Missing parameter" when using domain-based i18n routing in SSR.
#16946 606c37b Thanks @ematipico! - Fixes Astro.routePattern to preserve original casing of dynamic parameter names from filenames. Previously, a file at src/pages/blog/[postId].astro would return /blog/[postid] for Astro.routePattern due to an internal .toLowerCase() call. It now correctly returns /blog/[postId].
#16720 16d49b6 Thanks @thomas-callahan-collibra! - Fix an issue where dynamic routes would return the string [object Object] instead of the expected content, in certain runtimes.
#16703 17390a6 Thanks @henrybrewer00-dotcom! - Fixes styles being stripped when the project root is started with a path whose case differs from the actual filesystem case (e.g. running astro dev from d:\dev\app while the folder on disk is D:\dev\app).
#16855 c610cda Thanks @astrobot-houston! - Fixes Astro.currentLocale returning the default locale instead of the domain's locale on dynamic routes served from a mapped domain.