Astro: @astrojs/[email protected] Release

Release date:
September 27, 2022
Previous version:
@astrojs/[email protected] (released September 20, 2022)
Magnitude:
0 Diff Delta
Contributors:
0 total committers
Data confidence:
Commits:

Top Contributors in @astrojs/[email protected]

Could not determine top contributors for this release.

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

  • #4738 fad3867ad Thanks @tony-sull! - Adds a new built-in image service based on web assembly libraries :drum: web container support!

    Migration: Happy with the previous image service based on sharp? No problem! Install sharp in your project and update your Astro config to match.

    npm install sharp
    

    ```astro title="astro.config.mjs"

    import image from '@astrojs/image';

    export default { // ... integrations: [ image({ serviceEntryPoint: '@astrojs/image/sharp', }), ],

    };

Patch Changes

  • #4797 944d24e9e Thanks @smeevil! - Do not pass width and height to the img element when wrapped in a picture element