diff options
author | 2022-12-16 12:54:19 -0800 | |
---|---|---|
committer | 2022-12-16 15:54:19 -0500 | |
commit | fc46ca53d19649401e2738055bf1b860320177d7 (patch) | |
tree | 99a748247c86db9f9f0f3fa368a24890813d701d /packages/integrations/netlify | |
parent | 61302ab7a09cc4c298c903d725e35355eb069497 (diff) | |
download | astro-fc46ca53d19649401e2738055bf1b860320177d7.tar.gz astro-fc46ca53d19649401e2738055bf1b860320177d7.tar.zst astro-fc46ca53d19649401e2738055bf1b860320177d7.zip |
[ci] release (#5607)create-astro@1.2.4astro@1.7.0@astrojs/node@4.0.0@astrojs/netlify@1.3.0@astrojs/mdx@0.13.0@astrojs/deno@3.0.0@astrojs/cloudflare@5.0.0
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/netlify')
-rw-r--r-- | packages/integrations/netlify/CHANGELOG.md | 17 | ||||
-rw-r--r-- | packages/integrations/netlify/package.json | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md index fc7e33f4a..e75586d11 100644 --- a/packages/integrations/netlify/CHANGELOG.md +++ b/packages/integrations/netlify/CHANGELOG.md @@ -1,5 +1,22 @@ # @astrojs/netlify +## 1.3.0 + +### Minor Changes + +- [#5297](https://github.com/withastro/astro/pull/5297) [`d2960984c`](https://github.com/withastro/astro/commit/d2960984c59af7b60a3ea472c6c58fb00534a8e6) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Introduces the **experimental** Prerender API. + + > **Note** + > This API is not yet stable and is subject to possible breaking changes! + + - Deploy an Astro server without sacrificing the speed or cacheability of static HTML. + - The Prerender API allows you to statically prerender specific `pages/` at build time. + + **Usage** + + - First, run `astro build --experimental-prerender` or enable `experimental: { prerender: true }` in your `astro.config.mjs` file. + - Then, include `export const prerender = true` in any file in the `pages/` directory that you wish to prerender. + ## 1.2.2 ### Patch Changes diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json index 43413247f..eec8cdd5a 100644 --- a/packages/integrations/netlify/package.json +++ b/packages/integrations/netlify/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/netlify", "description": "Deploy your site to Netlify", - "version": "1.2.2", + "version": "1.3.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", |