Astro: @astrojs/[email protected] Release

Release date:
July 1, 2026
Previous version:
@astrojs/[email protected] (released June 22, 2026)
Magnitude:
966 Diff Delta
Contributors:
4 total committers
Data confidence:
Commits:

37 Commits in this Release

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

Authored June 30, 2026
Authored July 1, 2026
Authored July 1, 2026
Authored July 1, 2026
Authored June 25, 2026
Authored June 29, 2026
Authored June 23, 2026
Authored June 26, 2026
Authored June 30, 2026

Top Contributors in @astrojs/[email protected]

matthewp
adamchal
florian-lefebvre
ocavue

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

  • #17245 f56d9e7 Thanks @astrobot-houston! - Adds edgeFunctions to the devFeatures adapter option, allowing users to disable Netlify Edge Function emulation during astro dev

    Some npm packages that access the filesystem at initialization (e.g. node-html-parser) fail inside the edge function sandbox with "Reading or writing files with Edge Functions is not supported yet." You can now disable edge function emulation to avoid this error:

    import netlify from '@astrojs/netlify';
    import { defineConfig } from 'astro/config';
    
    export default defineConfig({
      adapter: netlify({
        devFeatures: {
          edgeFunctions: false,
        },
      }),
    });
    

    Edge functions will still work in production builds and via netlify dev.

Patch Changes