Astro: @astrojs/vue@7.0.0 Release

Release date:
June 22, 2026
Previous version:
@astrojs/vue@7.0.0-beta.2 (released June 18, 2026)
Magnitude:
742 Diff Delta
Contributors:
5 total committers
Data confidence:
Commits:

Top Contributors in @astrojs/vue@7.0.0

ascorbic
matthewp
adamchal
ArmandPhilippot
ematipico

Directory Browser for @astrojs/vue@7.0.0

All files are compared to previous version, @astrojs/vue@7.0.0-beta.2. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Major Changes

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.

Patch Changes