Astro: @astrojs/sitemap@3.5.0 Release

Release date:
August 14, 2025
Previous version:
@astrojs/sitemap@3.4.2 (released July 28, 2025)
Magnitude:
2,536 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 August 8, 2025
Authored August 14, 2025
Authored July 31, 2025
Authored August 8, 2025
Authored August 14, 2025
Authored July 28, 2025
Authored July 31, 2025
Authored August 13, 2025
Authored August 1, 2025
Authored August 1, 2025
Authored August 14, 2025
Authored August 7, 2025
Authored August 10, 2025
Authored August 13, 2025
Authored August 8, 2025
Authored July 30, 2025
Authored August 8, 2025

Top Contributors in @astrojs/sitemap@3.5.0

ematipico
alexanderniebuhr
sarah11918
bjohansebas

Directory Browser for @astrojs/sitemap@3.5.0

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

  • #13682 5824b32 Thanks @gouravkhunger! - Adds a customSitemaps option to include extra sitemaps in the sitemap-index.xml file generated by Astro.

    This is useful for multi-framework setups on the same domain as your Astro site (example.com), such as a blog at example.com/blog whose sitemap is generated by another framework.

    The following example shows configuring your Astro site to include sitemaps for an externally-generated blog and help center along with the generated sitemap entries in sitemap-index.xml:

    Example:

    import { defineConfig } from 'astro/config';
    import sitemap from '@astrojs/sitemap';
    
    export default defineConfig({
      site: 'https://example.com',
      integrations: [
        sitemap({
          customSitemaps: [
            'https://example.com/blog/sitemap.xml',
            'https://example.com/helpcenter/sitemap.xml',
          ],
        }),
      ],
    });
    

    Learn more in the @astrojs/sitemap configuration documentation.