summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2024-08-14 01:14:23 -0700
committerGravatar GitHub <noreply@github.com> 2024-08-14 09:14:23 +0100
commit3d37122a26c8af7309f597293e792a3b10cbea79 (patch)
treeccfebb250b63e231991c4af9ff009602ba730b63
parentaf167221138786ef8fd40e548f0d250e3335e123 (diff)
downloadastro-3d37122a26c8af7309f597293e792a3b10cbea79.tar.gz
astro-3d37122a26c8af7309f597293e792a3b10cbea79.tar.zst
astro-3d37122a26c8af7309f597293e792a3b10cbea79.zip
[ci] release (#11686)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r--packages/integrations/node/CHANGELOG.md10
-rw-r--r--packages/integrations/node/package.json2
2 files changed, 11 insertions, 1 deletions
diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md
index 174554168..738cfc367 100644
--- a/packages/integrations/node/CHANGELOG.md
+++ b/packages/integrations/node/CHANGELOG.md
@@ -1,5 +1,15 @@
# @astrojs/node
+## 8.3.3
+
+### Patch Changes
+
+- [#11535](https://github.com/withastro/astro/pull/11535) [`932bd2e`](https://github.com/withastro/astro/commit/932bd2eb07f1d7cb2c91e7e7d31fe84c919e302b) Thanks [@matthewp](https://github.com/matthewp)! - Move polyfills up before awaiting the env module in the Node.js adapter.
+
+ Previously the env setting was happening before the polyfills were applied. This means that if the Astro env code (or any dependencies) depended on `crypto`, it would not be polyfilled in time.
+
+ Polyfills should be applied ASAP to prevent races. This moves it to the top of the Node adapter.
+
## 8.3.2
### Patch Changes
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index 8db504040..a87f26133 100644
--- a/packages/integrations/node/package.json
+++ b/packages/integrations/node/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/node",
"description": "Deploy your site to a Node.js server",
- "version": "8.3.2",
+ "version": "8.3.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",