Astro: @astrojs/[email protected] Release

Release date:
June 17, 2025
Previous version:
@astrojs/[email protected] (released April 23, 2025)
Magnitude:
11,007 Diff Delta
Contributors:
11 total committers
Data confidence:
Commits:

121 Commits in this Release

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

Authored April 28, 2025
Authored June 4, 2025
Authored April 28, 2025
Authored June 9, 2025
Authored May 22, 2025
Authored June 17, 2025
Authored May 21, 2025
Authored April 30, 2025
Authored May 29, 2025
Authored May 13, 2025
Authored June 4, 2025
Authored April 28, 2025
Authored May 6, 2025
Authored June 7, 2025
Authored May 8, 2025
Authored May 10, 2025
Authored April 29, 2025
Authored April 28, 2025
Authored April 28, 2025
Authored June 13, 2025
Authored April 28, 2025
Authored May 12, 2025

Top Contributors in @astrojs/[email protected]

ematipico
apatel369
mattyoho
sapphi-red
renovate-bot
jp-wienekus-c19c
nanarino
sarah11918
Haberkamp
ArmandPhilippot

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

Major Changes

  • #13952 de82ef2 Thanks @ematipico! - - The type Redirects has been renamed to HostRoutes.

    • RouteDefinition.target is now optional
    • RouteDefinition.weight is now optional
    • Redirects.print has been removed. Now you need to pass Redirects type to the print function
    - redirects.print()
    + import { printAsRedirects } from "@astrojs/underscore-redirects"
    + printAsRedirects(redirects)
    

Minor Changes

  • #13952 de82ef2 Thanks @ematipico! - Adds a new method called createHostedRouteDefinition, which returns a HostRoute type from a IntegrationResolvedRoute.

  • #13952 de82ef2 Thanks @ematipico! - Adds a new method called printAsRedirects to print HostRoutes as redirects for the _redirects file.