Astro: @astrojs/[email protected] Release

Release date:
July 2, 2026
Previous version:
@astrojs/[email protected] (released May 28, 2026)
Magnitude:
7,439 Diff Delta
Contributors:
15 total committers
Data confidence:
Commits:

157 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored June 9, 2026
Authored June 2, 2026
Authored June 9, 2026
Authored June 3, 2026
Authored June 8, 2026
Authored May 28, 2026
Authored June 9, 2026
Authored May 28, 2026
Authored June 9, 2026

Top Contributors in @astrojs/[email protected]

matthewp
astrobot-houston
ascorbic
florian-lefebvre
Princesseuh
iseraph-dev
adamchal
ocavue
fkatsuhiro
ljharb

Directory Browser for @astrojs/[email protected]

All files are compared to previous version, @astrojs/[email protected]. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Patch Changes

  • #17252 eb6f97e Thanks @matthewp! - Fixes trailing-slash handling for request paths that begin with a backslash

    With trailingSlash: 'always', the standalone Node server could append a trailing slash to a request path that begins with a backslash (for example /\example.com/foo) and echo that path back in the Location header of a 301 response. Because browsers resolve a leading \ the same way as /, the resulting Location could point off-site.

    Such paths are now recognized as internal paths, matching the existing handling for paths that begin with //, so they are no longer rewritten with a trailing slash.