Astro: @astrojs/[email protected] Release

Release date:
June 17, 2025
Previous version:
@astrojs/[email protected] (released May 21, 2025)
Magnitude:
5,388 Diff Delta
Contributors:
4 total committers
Data confidence:
Commits:

42 Commits in this Release

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

Authored June 4, 2025
Authored June 9, 2025
Authored May 22, 2025
Authored June 17, 2025
Authored May 29, 2025
Authored June 4, 2025
Authored June 7, 2025
Authored June 13, 2025
Authored June 9, 2025
Authored June 13, 2025
Authored June 11, 2025
Authored May 27, 2025
Authored June 12, 2025
Authored June 7, 2025
Authored May 29, 2025
Authored June 17, 2025
Authored May 29, 2025
Authored June 3, 2025
Authored June 9, 2025
Authored June 4, 2025
Authored May 26, 2025
Authored June 4, 2025

Top Contributors in @astrojs/[email protected]

ematipico
apatel369
florian-lefebvre
nanarino

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

  • #13952 de82ef2 Thanks @ematipico! - Adds support for the experimental static headers Astro feature.

    When the feature is enabled via option experimentalStaticHeaders, and experimental Content Security Policy is enabled, the adapter will generate Response headers for static pages, which allows support for CSP directives that are not supported inside a <meta> tag (e.g. frame-ancestors).

    import { defineConfig } from 'astro/config';
    import netlify from '@astrojs/netlify';
    
    export default defineConfig({
      adapter: netlify({
        experimentalStaticHeaders: true,
      }),
      experimental: {
        cps: true,
      },
    });
    

Patch Changes