diff options
author | 2024-03-28 11:20:53 -0700 | |
---|---|---|
committer | 2024-03-28 14:20:53 -0400 | |
commit | 0ff5d72c7841e10065d37b43322358f4a48b7e95 (patch) | |
tree | 5a0589f8f7612bb3ae98a31d3fed9482ee4866ba /packages/integrations | |
parent | 5d7449bd73b5730faf808e8c9911ca1d97547b3c (diff) | |
download | astro-@astrojs/vercel@7.5.0.tar.gz astro-@astrojs/vercel@7.5.0.tar.zst astro-@astrojs/vercel@7.5.0.zip |
[ci] release (#10598)astro@4.5.12@astrojs/vercel@7.5.0@astrojs/markdoc@0.9.3@astrojs/internal-helpers@0.4.0@astrojs/db@0.9.8
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations')
-rw-r--r-- | packages/integrations/vercel/CHANGELOG.md | 18 | ||||
-rw-r--r-- | packages/integrations/vercel/package.json | 2 |
2 files changed, 19 insertions, 1 deletions
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md index 1adbfbe62..4bec34fa2 100644 --- a/packages/integrations/vercel/CHANGELOG.md +++ b/packages/integrations/vercel/CHANGELOG.md @@ -1,5 +1,23 @@ # @astrojs/vercel +## 7.5.0 + +### Minor Changes + +- [#10513](https://github.com/withastro/astro/pull/10513) [`a573cc199a00d35410197ba4117c97764a984dc0`](https://github.com/withastro/astro/commit/a573cc199a00d35410197ba4117c97764a984dc0) Thanks [@tk04](https://github.com/tk04)! - The `isr.exclude` configuration can now include routes with dynamic and spread parameters. + ```ts + export default defineConfig({ + adapter: vercel({ + isr: { + exclude: [ + "/blog/[title]" + "/api/[...slug]", + ] + } + }) + }) + ``` + ## 7.4.1 ### Patch Changes diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json index 1407a79e9..c97852f0d 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.4.1", + "version": "7.5.0", "type": "module", "author": "withastro", "license": "MIT", |