Astro: [email protected] Release

Release date:
March 10, 2022
Previous version:
[email protected] (released March 10, 2022)
Magnitude:
0 Diff Delta
Contributors:
0 total committers
Data confidence:
Commits:

Top Contributors in [email protected]

Could not determine top contributors for this release.

Directory Browser for [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

Patch Changes

  • #2755 10843aba Thanks @natemoo-re! - Add user-configurable sitemapFilter option.

    This option can be used to ensure certain pages are excluded from your final sitemap.

    // astro.config.ts
    import type { AstroUserConfig } from 'astro'
    
    const config: AstroUserConfig = {
      sitemap: true,
      sitemapFilter: (page: string) => !page.includes('secret-page')
    }
    export default config
    
  • #2750 79fc3204 Thanks @FredKSchott! - update [email protected]

  • #2758 499fb6a3 Thanks @natemoo-re! - Add CLI warnings when running a prerelease or outdated version of Astro

  • #2743 a14075e2 Thanks @bholmesdev! - Fix - show 404 for bad static paths with console message, rather than a 500