summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify
diff options
context:
space:
mode:
authorGravatar Fred K. Bot <108291165+fredkbot@users.noreply.github.com> 2022-12-16 12:54:19 -0800
committerGravatar GitHub <noreply@github.com> 2022-12-16 15:54:19 -0500
commitfc46ca53d19649401e2738055bf1b860320177d7 (patch)
tree99a748247c86db9f9f0f3fa368a24890813d701d /packages/integrations/netlify
parent61302ab7a09cc4c298c903d725e35355eb069497 (diff)
downloadastro-fc46ca53d19649401e2738055bf1b860320177d7.tar.gz
astro-fc46ca53d19649401e2738055bf1b860320177d7.tar.zst
astro-fc46ca53d19649401e2738055bf1b860320177d7.zip
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.md17
-rw-r--r--packages/integrations/netlify/package.json2
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",