diff options
author | 2024-08-20 07:35:33 -0700 | |
---|---|---|
committer | 2024-08-20 16:35:33 +0200 | |
commit | 9a798eabe10c12b6af5c98e23913f23d5896c318 (patch) | |
tree | e90fb4cf4c339f6313a04ee277382dacd8b3de3a | |
parent | 7e8b188f4f74ca72401de1c97a8f275a3aa6dbe0 (diff) | |
download | astro-9a798eabe10c12b6af5c98e23913f23d5896c318.tar.gz astro-9a798eabe10c12b6af5c98e23913f23d5896c318.tar.zst astro-9a798eabe10c12b6af5c98e23913f23d5896c318.zip |
[ci] release (#11739)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r-- | packages/integrations/vercel/CHANGELOG.md | 27 | ||||
-rw-r--r-- | packages/integrations/vercel/package.json | 2 |
2 files changed, 28 insertions, 1 deletions
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md index 2fda03d95..4a8d6343a 100644 --- a/packages/integrations/vercel/CHANGELOG.md +++ b/packages/integrations/vercel/CHANGELOG.md @@ -1,5 +1,32 @@ # @astrojs/vercel +## 7.8.0 + +### Minor Changes + +- [#11728](https://github.com/withastro/astro/pull/11728) [`5ea02b1`](https://github.com/withastro/astro/commit/5ea02b12fdb9b8ca45b1229bb9d04bc3d1270e0f) Thanks [@matthewp](https://github.com/matthewp)! - Deprecates the `functionPerRoute` option + + This option is now deprecated, and will be removed entirely in Astro v5.0. We suggest removing this option from your configuration as soon as you are able to: + + ```diff + import { defineConfig } from 'astro/config'; + import vercel from '@astrojs/vercel/serverless'; + + export default defineConfig({ + // ... + output: 'server', + adapter: vercel({ + - functionPerRoute: true, + }), + }); + ``` + +### Patch Changes + +- [#11783](https://github.com/withastro/astro/pull/11783) [`fc81b01`](https://github.com/withastro/astro/commit/fc81b01bcdd43646bcc615b16bf0400a646445c8) Thanks [@matthewp](https://github.com/matthewp)! - Prevent race condition with Node 18 + + Using Node 18 there can be a race condition where polyfill for the `crypto` global is not applied in time. This change ensures the polyfills run first. + ## 7.7.2 ### Patch Changes diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json index 70fe485b2..75563e918 100644 --- a/packages/integrations/vercel/package.json +++ b/packages/integrations/vercel/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/vercel", "description": "Deploy your site to Vercel", - "version": "7.7.2", + "version": "7.8.0", "type": "module", "author": "withastro", "license": "MIT", |