Astro: [email protected] Release

Release date:
July 23, 2025
Previous version:
[email protected] (released May 29, 2025)
Magnitude:
11,844 Diff Delta
Contributors:
6 total committers
Data confidence:
Commits:

109 Commits in this Release

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

Authored June 4, 2025
Authored June 19, 2025
Authored June 27, 2025
Authored June 9, 2025
Authored June 17, 2025
Authored July 21, 2025
Authored July 3, 2025
Authored July 17, 2025
Authored July 22, 2025
Authored June 23, 2025
Authored July 23, 2025
Authored June 4, 2025
Authored July 16, 2025
Authored June 7, 2025
Authored July 1, 2025
Authored June 19, 2025
Authored June 13, 2025

Top Contributors in [email protected]

ematipico
alexanderniebuhr
louisescher
feelixe
sarah11918
pieh

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

Minor Changes

  • #14115 270e009 Thanks @ascorbic! - Removes "Open in x" badges from the README of the official Astro templates when a new project is created

  • #14115 270e009 Thanks @ascorbic! - Adds support for marking sections in template READMEs to be removed when the create astro command is used to create a new project

    Theme authors can now use magic comments in template READMEs to mark sections that should not be included when a user runs create-astro with the --template flag to create a new project.

    This allows templates to have content that is visible when viewed in the source repo but not when the template is copied for use in a new project. This is useful for content that is appropriate for a theme's own repository, but will not be useful to someone using the theme, such as an "Open this repository in StackBlitz" badge where the URL is hardcoded .

    Use the magic comments <!-- ASTRO:REMOVE:START --> and <!-- ASTRO:REMOVE:END --> to indicate content to be excluded from your README during the create astro process.

    <!-- ASTRO:REMOVE:START -->
    
    [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
    
    <!-- ASTRO:REMOVE:END -->
    

    Note that these comments only remove content when new projects are created using create astro. When your theme template is forked, your README will be copied in its entirety.