Astro: @astrojs/[email protected] Release

Release date:
October 23, 2025
Previous version:
@astrojs/[email protected] (released October 14, 2025)
Magnitude:
1,959 Diff Delta
Contributors:
2 total committers
Data confidence:
Commits:

20 Commits in this Release

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

Authored October 22, 2025
Authored October 22, 2025
Authored October 21, 2025
Authored October 16, 2025
Authored October 22, 2025
Authored October 14, 2025
Authored October 17, 2025
Authored October 20, 2025
Authored October 17, 2025
Authored October 16, 2025
Authored October 22, 2025

Top Contributors in @astrojs/[email protected]

ematipico
HiDeoo

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

Minor Changes

  • #14543 9b3241d Thanks @matthewp! - Enables Netlify's skew protection feature for Astro sites deployed on Netlify. Skew protection ensures that your site's client and server versions stay synchronized during deployments, preventing issues where users might load assets from a newer deployment while the server is still running the older version.

    When you deploy to Netlify, the deployment ID is now automatically included in both asset requests and API calls, allowing Netlify to serve the correct version to every user. These are set for built-in features (Actions, View Transitions, Server Islands, Prefetch). If you are making your own fetch requests to your site, you can include the header manually using the DEPLOY_ID environment variable:

    const response = await fetch('/api/endpoint', {
      headers: {
        'X-Netlify-Deploy-ID': import.meta.env.DEPLOY_ID,
      },
    });
    

Patch Changes