Astro: @astrojs/[email protected] Release

Release date:
May 18, 2023
Previous version:
@astrojs/[email protected] (released April 5, 2023)
Magnitude:
9,898 Diff Delta
Contributors:
23 total committers
Data confidence:
Commits:

148 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 April 27, 2023
Authored April 10, 2023
Authored April 12, 2023

Top Contributors in @astrojs/[email protected]

ematipico
Princesseuh
bholmesdev
philnash
johannes-spohr-d70f
JerryWu1234
craig-jennings-7452
atilafassina
SudoCat
andremralves

Directory Browser for @astrojs/[email protected]

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