Astro: [email protected] Release

Release date:
June 15, 2026
Previous version:
[email protected] (released June 9, 2026)
Magnitude:
476 Diff Delta
Contributors:
9 total committers
Data confidence:
Commits:

31 Commits in this Release

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

Authored June 15, 2026
Authored June 10, 2026
Authored June 15, 2026
Authored June 15, 2026
Authored June 11, 2026
Authored June 15, 2026
Authored June 10, 2026
Authored June 10, 2026
Authored June 12, 2026
Authored June 10, 2026
Authored June 10, 2026

Top Contributors in [email protected]

matthewp
Princesseuh
ematipico
astrobot-houston
alexanderdombroski
ljharb
ArmandPhilippot
ocavue
deining

Directory Browser for [email protected]

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

Loading File Browser...

Release Notes Published

Major Changes

  • #16966 6650ec2 Thanks @Princesseuh! - Makes Sรคtteri the default Markdown processor

    Astro now renders .md files with satteri() from @astrojs/markdown-satteri, its native Markdown pipeline, instead of the remark/rehype pipeline. @astrojs/markdown-remark is no longer installed by default.

    To keep using the remark/rehype pipeline, install @astrojs/markdown-remark and set it as your processor:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { unified } from '@astrojs/markdown-remark';
    
    export default defineConfig({
      markdown: {
        processor: unified(),
      },
    });
    

    The deprecated markdown.remarkPlugins, markdown.rehypePlugins, and markdown.remarkRehype options still work, but now require @astrojs/markdown-remark to be used.

Patch Changes

  • #17078 04547ec Thanks @astrobot-houston! - Fixes a spurious Astro.request.headers warning on prerendered pages when security.allowedDomains is configured. The internal allowedDomains header validation now skips prerendered routes, since they use synthetic requests with no real headers.