Astro: [email protected] Release

Release date:
June 14, 2022
Previous version:
[email protected] (released June 11, 2022)
Magnitude:
0 Diff Delta
Contributors:
0 total committers
Data confidence:
Commits:

Top Contributors in [email protected]

Could not determine top contributors for this release.

Directory Browser for [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

Patch Changes

  • #3593 0e2314d8 Thanks @matthewp! - Fixes uses of inline hoisted scripts in SSR

  • #3590 d46f8fb1 Thanks @okikio! - Add support for optional integrations

    By making integration optional, Astro can now ignore null, undefined or other falsy "Integration" values instead of giving an internal error most devs can't and/or won't understand.

    This also enables conditional integrations, e.g.

    integration: [
      // Only run `compress` integration when in production environments, etc...
      import.meta.env.production ? compress() : null,
    ];