Astro: astro@7.1.6 Release

Release date:
July 29, 2026
Previous version:
astro@7.1.5 (released July 28, 2026)
Magnitude:
448 Diff Delta
Contributors:
3 total committers
Data confidence:
Commits:

Top Contributors in astro@7.1.6

ematipico
thelazylamaGit
dmgawel

Directory Browser for astro@7.1.6

All files are compared to previous version, astro@7.1.5. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Patch Changes

  • #17536 ff97b86 Thanks @dmgawel! - Fixes concurrent static builds failing to generate i18n rewrite fallbacks for dynamic routes

  • #17383 296e1b0 Thanks @thelazylamaGit! - Fixes stale dev CSS after editing component style blocks and CSS files in dev

  • #17543 bbc1ec9 Thanks @ematipico! - Adds a feature to experimental.collectionStorage that allows to change the size of chunks.

    For example, you can reduce the size of chunks to 1MB:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    
    export default defineConfig({
      experimental: {
        collectionStorage: {
          type: 'chunked',
          chunkSize: 1024 * 1024,
        },
      },
    });
    
  • #17545 5214663 Thanks @ematipico! - Bumps the Astro compiler to the latest version. Changelog.