Bump @astrojs/node from 9.1.3 to 9.4.1 in /client
Bumps @astrojs/node from 9.1.3 to 9.4.1.
Changelog
Sourced from @astrojs/node's changelog.
9.4.1
Patch Changes
5fc3c59Thanks@ematipico! - Fixes a routing bug in standalone mode withtrailingSlashset to"always".9.4.0
Minor Changes
#14188
e3422aaThanks@ascorbic! - Adds support for specifying a host to load prerendered error pagesBy default, if a user defines a custom error page that is prerendered, Astro will load it from the same host as the one that the request is made to. This change allows users to specify a different host for loading prerendered error pages. This can be useful in scenarios such as where the server is running behind a reverse proxy or when prerendered pages are hosted on a different domain.
To use this feature, set the
experimentalErrorPageHostadapter option in your Astro configuration to the desired host URL. For example, if your server is running on localhost and served via a proxy, you can ensure the prerendered error pages are fetched via the localhost URL:import { defineConfig } from 'astro/config'; import node from '@astrojs/node'; export default defineConfig({ adapter: node({ // If your server is running on localhost and served via a proxy, set the host like this to ensure prerendered error pages are fetched via the localhost URL experimentalErrorPageHost: 'http://localhost:4321', }), });For more information on enabling and using this experimental feature, see the
@astrojs/nodeadapter docs.9.3.3
Patch Changes
9.3.2
Patch Changes
9.3.1
Patch Changes
- #14148
e4d74baThanks@ColoredCarrot! - fix(node): emit set-cookie header from middlewares for not-found routes (#14136)9.3.0
... (truncated)
Commits
a186848[ci] release (#14217)d55b88a[ci] format5fc3c59Merge commit from forkdc9e35c[ci] release (#14189)56a05aa[ci] formate3422aafeat: add support for specifying a prerendered error page host (#14188)0f0a4c4[ci] release (#14172)5eaf524[ci] release (#14171)09b533b[ci] release (#14149)e4d74bafix(node): emit set-cookie header from middlewares for not-found routes (#141...- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.