Astro: @astrojs/[email protected] Release

Release date:
May 12, 2025
Previous version:
@astrojs/[email protected] (released April 23, 2025)
Magnitude:
4,645 Diff Delta
Contributors:
6 total committers
Data confidence:
Commits:

57 Commits in this Release

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

Authored April 28, 2025
Authored April 28, 2025
Authored April 30, 2025
Authored April 28, 2025
Authored May 6, 2025
Authored May 8, 2025
Authored May 10, 2025
Authored April 29, 2025
Authored April 28, 2025
Authored April 28, 2025
Authored April 28, 2025
Authored May 12, 2025
Authored April 28, 2025
Authored April 29, 2025
Authored May 10, 2025
Authored May 6, 2025
Authored April 28, 2025
Authored May 8, 2025
Authored April 28, 2025

Top Contributors in @astrojs/[email protected]

ematipico
mattyoho
renovate-bot
jsparkdev
sarah11918
HiDeoo

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

  • #13753 90293de Thanks @mattyoho! - Customize the filenames of sitemap XML files generated by the @astro/sitemap integration by setting filenameBase in the integration configuration settings. This may be useful when deploying an Astro site at a path on a domain with preexisting sitemap files.

    Generated sitemap files will appear at /sitemap-0.xml and /sitemap-index.xml by default, which may conflict with preexisting files. Set filenameBase to a custom value to avoid that if so:

    import { defineConfig } from 'astro/config';
    import sitemap from '@astrojs/sitemap';
    
    export default defineConfig({
      site: 'https://example.com',
      integrations: [
        sitemap({
          filenameBase: 'astronomy-sitemap',
        }),
      ],
    });
    

    This will yield sitemap and index files as https://example.com/astronomy-sitemap-0.xml and https://example.com/astronomy-sitemap-index.xml.