github withastro/astro astro@1.4.7

latest releases: astro@4.15.8, @astrojs/mdx@3.1.7, astro@4.15.7...
23 months ago

Patch Changes

  • #5035 d7bfb144b Thanks @AirBorne04! - preventing multiple doctype injection into html documents

  • #5015 b1964e9e1 Thanks @matthewp! - Shared state in Preact components with signals

    This makes it possible to share client state between Preact islands via signals.

    For example, you can create a signals in an Astro component and then pass it to multiple islands:

    ---
    // Component Imports
    import Counter from '../components/Counter';
    import { signal } from '@preact/signals';
    const count = signal(0);
    ---
    
    <Count count={count} />
    <Count count={count} />
  • #5036 38fdb4ca6 Thanks @matthewp! - New algorithm for shorter CSS bundle names

Don't miss a new astro release

NewReleases is sending notifications on new releases.