astrobot-houston
released this
18 Jan 10:32
·
1999 commits
to main
since this release
Major Changes
-
#9661
d6edc7540864cf5d294d7b881eb886a3804f6d05
Thanks @ematipico! - If host is unset in standalone mode, the server host will now fallback tolocalhost
instead of127.0.0.1
. Whenlocalhost
is used, the operating system can decide to use either::1
(ipv6) or127.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 theHOST
environment variable to127.0.0.1
to explicitly use ipv4. For example,HOST=127.0.0.1 node ./dist/server/entry.mjs
. -
#9661
d6edc7540864cf5d294d7b881eb886a3804f6d05
Thanks @ematipico! - Breaking: Minimum required Astro version is now 4.2.0.
Reorganizes internals to be more maintainable.
Patch Changes
- #9661
d6edc7540864cf5d294d7b881eb886a3804f6d05
Thanks @ematipico! - Fixes an issue where the preview server appeared to be ready to serve requests before binding to a port.