Astro: astro@0.24.0-next.2 Release

Release date:
March 10, 2022
Previous version:
astro@0.24.0-next.1 (released March 10, 2022)
Magnitude:
0 Diff Delta
Contributors:
0 total committers
Data confidence:
Commits:

Top Contributors in astro@0.24.0-next.2

Could not determine top contributors for this release.

Directory Browser for astro@0.24.0-next.2

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 esbuild@0.14.25

  • #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