Astro: @astrojs/[email protected] Release

Release date:
June 18, 2026
Previous version:
@astrojs/[email protected] (released June 13, 2026)
Magnitude:
1,128 Diff Delta
Contributors:
8 total committers
Data confidence:
Commits:

37 Commits in this Release

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

Authored June 15, 2026
Authored June 10, 2026
Authored June 15, 2026
Authored June 15, 2026
Authored June 11, 2026
Authored June 15, 2026
Authored June 10, 2026
Authored June 10, 2026
Authored June 10, 2026
Authored June 17, 2026
Authored June 10, 2026
Authored June 12, 2026

Top Contributors in @astrojs/[email protected]

matthewp
iseraph-dev
ematipico
Princesseuh
astrobot-houston
ljharb
alexanderdombroski
deining

Directory Browser for @astrojs/[email protected]

All files are compared to previous version, @astrojs/[email protected]. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Minor Changes

  • #17093 4585fe5 Thanks @Princesseuh! - Replaces the import entrypoint of getContainerRenderer()

    A new container-renderer entrypoint exporting getContainerRenderer() has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.

    If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the getContainerRenderer() import for React:

    - import { getContainerRenderer } from '@astrojs/react';
    + import { getContainerRenderer } from '@astrojs/react/container-renderer';
    

    Importing getContainerRenderer() from the package root still works, but is now deprecated and logs a warning.