Astro: @astrojs/[email protected] Release

Release date:
February 26, 2026
Previous version:
@astrojs/[email protected] (released February 16, 2026)
Magnitude:
18,273 Diff Delta
Contributors:
4 total committers
Data confidence:
Commits:

62 Commits in this Release

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

Authored February 26, 2026
Authored February 24, 2026
Authored February 26, 2026
Authored February 23, 2026
Authored February 20, 2026
Authored February 24, 2026
Authored February 24, 2026
Authored February 18, 2026
Authored February 23, 2026
Authored February 16, 2026
Authored February 26, 2026
Authored February 17, 2026
Authored February 17, 2026
Authored February 23, 2026
Authored February 17, 2026
Authored February 26, 2026
Authored February 19, 2026
Authored February 26, 2026
Authored February 26, 2026
Authored February 20, 2026
Authored February 16, 2026

Top Contributors in @astrojs/[email protected]

ematipico
florian-lefebvre
rururux
Princesseuh

Directory Browser for @astrojs/[email protected]

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Minor Changes

  • #15495 5b99e90 Thanks @leekeh! - Adds new middlewareMode adapter feature and deprecates edgeMiddleware option

    The edgeMiddleware option is now deprecated and will be removed in a future release, so users should transition to using the new middlewareMode feature as soon as possible.

    export default defineConfig({
      adapter: vercel({
    -    edgeMiddleware: true
    +    middlewareMode: 'edge'
      })
    })