Astro: @astrojs/[email protected] Release

Release date:
November 15, 2024
Previous version:
@astrojs/[email protected] (released November 6, 2024)
Magnitude:
2,022 Diff Delta
Contributors:
4 total committers
Data confidence:
Commits:

18 Commits in this Release

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

Authored November 14, 2024
Authored November 13, 2024
Authored November 15, 2024
Authored November 13, 2024
Authored November 14, 2024
Authored November 8, 2024
Authored November 13, 2024
Authored November 11, 2024
Authored November 14, 2024
Authored November 14, 2024
Authored November 7, 2024
Authored November 8, 2024
Authored November 11, 2024

Top Contributors in @astrojs/[email protected]

ematipico
jdtjenkins
bholmesdev
sarah11918

Directory Browser for @astrojs/[email protected]

All files are compared to previous version, @astrojs/[email protected]. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Major Changes

  • #12364 9fc2ab8 Thanks @jdtjenkins! - Adds support for Svelte 5. Svelte 3 and 4 are no longer supported.

    The integration will now also no longer add vitePreprocess() by default if a preprocessor is not set up in svelte.config.js. It is recommended to set up the Svelte config manually so that features like IDE completion and syntax highlighting work properly.

    If you're using SCSS, Stylus, etc in your Svelte component style tags, make sure that the preprocessor is also set up in svelte.config.js. For example:

    // svelte.config.js
    import { vitePreprocess } from '@astrojs/svelte';
    
    export default {
      preprocess: vitePreprocess(),
    };
    

    Refer to the Svelte 5 migration guide and @sveltejs/vite-plugin-svelte changelog for details of their respective breaking changes.