diff options
author | 2023-10-24 09:26:45 -0700 | |
---|---|---|
committer | 2023-10-24 12:26:45 -0400 | |
commit | a86b41c852ce5c05e9bda8d29a8ba29a0502e3b0 (patch) | |
tree | dd24289fd7a34ca0951cff3aec550a7e14cbed67 /packages/integrations/vercel | |
parent | f2dd895d71e0fccfbc1b98890ceefb69f32524d5 (diff) | |
download | astro-a86b41c852ce5c05e9bda8d29a8ba29a0502e3b0.tar.gz astro-a86b41c852ce5c05e9bda8d29a8ba29a0502e3b0.tar.zst astro-a86b41c852ce5c05e9bda8d29a8ba29a0502e3b0.zip |
[ci] release (#8895)create-astro@4.4.0astro@3.3.4@astrojs/vercel@5.1.0@astrojs/telemetry@3.0.4@astrojs/react@3.0.4@astrojs/mdx@1.1.3@astrojs/markdoc@0.7.0
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/vercel')
-rw-r--r-- | packages/integrations/vercel/CHANGELOG.md | 22 | ||||
-rw-r--r-- | packages/integrations/vercel/package.json | 4 |
2 files changed, 24 insertions, 2 deletions
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md index 9411901b1..c797dcca0 100644 --- a/packages/integrations/vercel/CHANGELOG.md +++ b/packages/integrations/vercel/CHANGELOG.md @@ -1,5 +1,27 @@ # @astrojs/vercel +## 5.1.0 + +### Minor Changes + +- [#8867](https://github.com/withastro/astro/pull/8867) [`b209e5335`](https://github.com/withastro/astro/commit/b209e533584521c55f88b929f28ea9d5189045f9) Thanks [@lilnasy](https://github.com/lilnasy)! - You can now configure how long your functions can run before timing out. + + ```diff + export default defineConfig({ + output: "server", + adapter: vercel({ + + maxDuration: 60 + }), + }); + ``` + +### Patch Changes + +- [#8896](https://github.com/withastro/astro/pull/8896) [`5dd1ed50b`](https://github.com/withastro/astro/commit/5dd1ed50b2f9428946b0b273e0ce8f13c19aa3b5) Thanks [@bluwy](https://github.com/bluwy)! - Prevents the Vercel serverless adapter from generating static redirect pages in hybrid mode + +- Updated dependencies [[`26b77b8fe`](https://github.com/withastro/astro/commit/26b77b8fef0e03bfc5550aecaa1f56a4fc1cd297)]: + - astro@3.3.4 + ## 5.0.2 ### Patch Changes diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json index 92fe36702..623ddf861 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": "5.0.2", + "version": "5.1.0", "type": "module", "author": "withastro", "license": "MIT", @@ -61,7 +61,7 @@ "web-vitals": "^3.4.0" }, "peerDependencies": { - "astro": "workspace:^3.3.3" + "astro": "workspace:^3.3.4" }, "devDependencies": { "@types/set-cookie-parser": "^2.4.3", |