Astro: @astrojs/svelte@2.2.0 Release

Release date:
May 18, 2023
Previous version:
@astrojs/svelte@2.1.1 (released May 1, 2023)
Magnitude:
10,281 Diff Delta
Contributors:
14 total committers
Data confidence:
Commits:

85 Commits in this Release

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

Authored May 3, 2023
Authored May 16, 2023
Authored May 17, 2023
Authored May 17, 2023
Authored May 16, 2023
Authored May 14, 2023
Authored May 18, 2023
Authored May 15, 2023
Authored May 17, 2023

Top Contributors in @astrojs/svelte@2.2.0

ematipico
bholmesdev
Princesseuh
johannes-spohr-d70f
craig-jennings-7452
atilafassina
JerryWu1234
SudoCat
sarah11918
timozander

Directory Browser for @astrojs/svelte@2.2.0

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Minor Changes

  • #7093 3d525efc9 Thanks @matthewp! - Prevent removal of nested slots within islands

    This change introduces a new flag that renderers can add called supportsAstroStaticSlot. What this does is let Astro know that the render is sending <astro-static-slot> as placeholder values for static (non-hydrated) slots which Astro will then remove.

    This change is completely backwards compatible, but fixes bugs caused by combining ssr-only and client-side framework components like so:

    <Component>
      <div>
        <Component client:load>
          <span>Nested</span>
        </Component>
      </div>
    </Component>
    

Patch Changes