Skip to content

@astrojs/vercel@8.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 03 Dec 11:03
· 14 commits to main since this release
7057f09

Major Changes

Minor Changes

  • #424 3351348 Thanks @ematipico! - Deprecates the entrypoints @astrojs/vercel/serverless and @astrojs/vercel/static. These will continue to work but are no longer documented and will be removed in a future version. We recommend updating to the @astrojs/vercel entrypoint as soon as you are able:

    -import vercel from "@astrojs/vercel/static"
    +import vercel from "@astrojs/vercel"
    -import vercel from "@astrojs/vercel/serverless"
    +import vercel from "@astrojs/vercel"
  • #447 7d9835f Thanks @laymonage! - Add support for Node 22 on Vercel serverless

  • #385 bb725b7 Thanks @florian-lefebvre! - Cleans up astro:env support

Patch Changes

  • #437 b725b49 Thanks @ematipico! - Fixes a regression where the @astrojs/vercel single entry point for the adapter was causing some regressions in users projects.