diff options
author | 2024-01-18 02:30:19 -0800 | |
---|---|---|
committer | 2024-01-18 10:30:19 +0000 | |
commit | 2292d0b580d405dd2d8500d43e25056cf4d58dec (patch) | |
tree | e74c838feba562416e3e409fb9f0b0a768403b76 /packages/integrations/node | |
parent | 7e1db8b4ce2da9e044ea0393e533c6db2561ac90 (diff) | |
download | astro-@astrojs/markdoc@0.8.3.tar.gz astro-@astrojs/markdoc@0.8.3.tar.zst astro-@astrojs/markdoc@0.8.3.zip |
[ci] release (#9709)astro@4.2.0@astrojs/vercel@7.0.0@astrojs/sitemap@3.0.5@astrojs/node@8.0.0@astrojs/mdx@2.0.5@astrojs/markdown-remark@4.1.0@astrojs/markdoc@0.8.3
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/node')
-rw-r--r-- | packages/integrations/node/CHANGELOG.md | 15 | ||||
-rw-r--r-- | packages/integrations/node/package.json | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md index 671048924..20fc634bf 100644 --- a/packages/integrations/node/CHANGELOG.md +++ b/packages/integrations/node/CHANGELOG.md @@ -1,5 +1,20 @@ # @astrojs/node +## 8.0.0 + +### Major Changes + +- [#9661](https://github.com/withastro/astro/pull/9661) [`d6edc7540864cf5d294d7b881eb886a3804f6d05`](https://github.com/withastro/astro/commit/d6edc7540864cf5d294d7b881eb886a3804f6d05) Thanks [@ematipico](https://github.com/ematipico)! - If host is unset in standalone mode, the server host will now fallback to `localhost` instead of `127.0.0.1`. When `localhost` is used, the operating system can decide to use either `::1` (ipv6) or `127.0.0.1` (ipv4) itself. This aligns with how the Astro dev and preview server works by default. + + If you relied on `127.0.0.1` (ipv4) before, you can set the `HOST` environment variable to `127.0.0.1` to explicitly use ipv4. For example, `HOST=127.0.0.1 node ./dist/server/entry.mjs`. + +- [#9661](https://github.com/withastro/astro/pull/9661) [`d6edc7540864cf5d294d7b881eb886a3804f6d05`](https://github.com/withastro/astro/commit/d6edc7540864cf5d294d7b881eb886a3804f6d05) Thanks [@ematipico](https://github.com/ematipico)! - **Breaking**: Minimum required Astro version is now 4.2.0. + Reorganizes internals to be more maintainable. + +### Patch Changes + +- [#9661](https://github.com/withastro/astro/pull/9661) [`d6edc7540864cf5d294d7b881eb886a3804f6d05`](https://github.com/withastro/astro/commit/d6edc7540864cf5d294d7b881eb886a3804f6d05) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where the preview server appeared to be ready to serve requests before binding to a port. + ## 7.0.4 ### Patch Changes diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json index 347eba0d6..d23d1f339 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": "7.0.4", + "version": "8.0.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", |