summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 2024-02-07 18:26:16 +0000
committerGravatar GitHub <noreply@github.com> 2024-02-07 18:26:16 +0000
commit1693ff2cc0b3a43554da4d63dc1ff907e65a4992 (patch)
tree825cd85d0bfc1fb48932bdd4eaad0039693cdb3c
parent03f1be0a6f4013c9a910912d08976d493942ba57 (diff)
downloadastro-1693ff2cc0b3a43554da4d63dc1ff907e65a4992.tar.gz
astro-1693ff2cc0b3a43554da4d63dc1ff907e65a4992.tar.zst
astro-1693ff2cc0b3a43554da4d63dc1ff907e65a4992.zip
[ci] release (#156)
-rw-r--r--packages/integrations/netlify/CHANGELOG.md8
-rw-r--r--packages/integrations/netlify/package.json2
2 files changed, 9 insertions, 1 deletions
diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md
index 6d410eeb2..ce27db817 100644
--- a/packages/integrations/netlify/CHANGELOG.md
+++ b/packages/integrations/netlify/CHANGELOG.md
@@ -1,5 +1,13 @@
# @astrojs/netlify
+## 5.1.0
+
+### Minor Changes
+
+- [#152](https://github.com/withastro/adapters/pull/152) [`816bdc42e0665904e418dd0137bd6a7c8c74307f`](https://github.com/withastro/adapters/commit/816bdc42e0665904e418dd0137bd6a7c8c74307f) Thanks [@lilnasy](https://github.com/lilnasy)! - Implements verification for edge middleware. This is a security measure to ensure that your serverless functions are only ever called by your edge middleware and not by a third party.
+
+ When `edgeMiddleware` is enabled, the serverless function will now respond with `403 Forbidden` for requests that are not verified to have come from the generated edge middleware. No user action is necessary.
+
## 5.0.1
### Patch Changes
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index b0d32f6bb..29b5acece 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": "5.0.1",
+ "version": "5.1.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",