Astro: @astrojs/preact@5.1.0 Release

Release date:
March 26, 2026
Previous version:
@astrojs/preact@5.0.2 (released March 18, 2026)
Magnitude:
7,420 Diff Delta
Contributors:
14 total committers
Data confidence:
Commits:

62 Commits in this Release

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

Authored March 19, 2026
Authored March 25, 2026
Authored March 24, 2026
Authored March 23, 2026
Authored March 25, 2026

Top Contributors in @astrojs/preact@5.1.0

ematipico
seroperson
renovate-bot
trueberryless
merlinnot
crutchcorn
pierreeurope
kylemclean
oliverlynch
alexanderniebuhr

Directory Browser for @astrojs/preact@5.1.0

All files are compared to previous version, @astrojs/preact@5.0.2. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Minor Changes

  • #15862 06fba3a Thanks @crutchcorn! - Adds support for passing a Babel config to the Preact Vite Plugin:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import preact from '@astrojs/preact';
    
    export default defineConfig({
      integrations: [
        preact({
          babel: {
            generatorOpts: {
              importAttributesKeyword: 'with',
            },
          },
        }),
      ],
    });