Bump vite, @astrojs/node, @astrojs/preact and astro #46

Open
dependabot[bot] wants to merge 1 commit from dependabot/npm_and_yarn/multi-9c0e0ef934 into master
dependabot[bot] commented 2026-06-30 12:47:49 +01:00 (Migrated from github.com)

Bumps vite to 8.1.1 and updates ancestor dependencies vite, @astrojs/node, @astrojs/preact and astro. These dependencies need to be updated together.

Updates vite from 6.4.2 to 8.1.1

Release notes

Sourced from vite's releases.

v8.1.1

Please refer to CHANGELOG.md for details.

create-vite@8.1.0

Please refer to CHANGELOG.md for details.

plugin-legacy@8.1.0

Please refer to CHANGELOG.md for details.

v8.1.0

Please refer to CHANGELOG.md for details.

plugin-legacy@8.1.0-beta.0

Please refer to CHANGELOG.md for details.

v8.1.0-beta.0

Please refer to CHANGELOG.md for details.

v8.0.16

Please refer to CHANGELOG.md for details.

v8.0.15

Please refer to CHANGELOG.md for details.

v8.0.14

Please refer to CHANGELOG.md for details.

v8.0.13

Please refer to CHANGELOG.md for details.

v8.0.12

Please refer to CHANGELOG.md for details.

v8.0.11

Please refer to CHANGELOG.md for details.

v8.0.10

Please refer to CHANGELOG.md for details.

v8.0.9

Please refer to CHANGELOG.md for details.

v8.0.8

Please refer to CHANGELOG.md for details.

v8.0.7

Please refer to CHANGELOG.md for details.

v8.0.6

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

8.1.1 (2026-06-30)

Features

  • update dynamic import warning to link to Vite docs (#22823) (62bd7af)

Bug Fixes

  • bundled-dev: avoid stack overflow on import.meta.hot.invalidate() (#22797) (709eb8e)
  • bundled-dev: serve assets emitted during HMR/lazy compile (#22745) (5876b2c)
  • bundledDev: skip plugin transform hooks for rolldown-lazy stub modules (#22778) (8f925e2)
  • css: preserve dollar signs in external @import urls with lightningcss (#22718) (9fa7ab4)
  • css: resolve tsconfig paths in CSS and Sass @​import (#22775) (ef0b891)
  • deps: update all non-major dependencies (#22734) (e635f49)
  • deps: update all non-major dependencies (#22804) (8837400)
  • deps: update rolldown-related dependencies (#22591) (2ce6677)
  • escape ids with multiple null bytes (#22687) (833fc30)
  • hide console window when running 'net use' on Windows (#22698) (92b63f2)
  • ignore bundled config temp dir (#22800) (043a810)
  • invert esbuild.jsxSideEffects when converting to oxc.jsx.pure (#22809) (33895ba)
  • optimize-deps: ignore ERR_CLOSED_SERVER in scanner (#22784) (085a0ab)
  • optimizer: scanner should resolve input from root (#22769) (9722b07)
  • resolve pnpm .modules.yaml from workspace root instead of cwd (#22757) (2531ac7)
  • return sourcemap field from some plugins that were lacking (#22782) (7e18bf8)
  • server: handle malformed URI in indexHtmlMiddleware (#22781) (84f5ccc)

Miscellaneous Chores

Code Refactoring

  • css: remove lightningcss null byte bug workaround (#22822) (2dafd3b)
  • use pre-defined environments variable to avoid duplicate Object.values calls (#22790) (1113acf)

Tests

  • enable "manual chunk path" test and remove "worker.format error" test (#22824) (c088511)

8.1.0 (2026-06-23)

Features

Bug Fixes

  • bundled-dev: errors should be kept when incremental build fails (#22617) (9a0dd48)
  • cache falsy values in perEnvironmentState (#22715) (0e91e79)
  • glob: respect caseSensitive option in hmr matcher (#22711) (65f525e)

... (truncated)

Commits
  • 4ae9e14 release: v8.1.1
  • 8f925e2 fix(bundledDev): skip plugin transform hooks for rolldown-lazy stub modules (...
  • c088511 test: enable "manual chunk path" test and remove "worker.format error" test (...
  • 62bd7af feat: update dynamic import warning to link to Vite docs (#22823)
  • 2dafd3b refactor(css): remove lightningcss null byte bug workaround (#22822)
  • 833fc30 fix: escape ids with multiple null bytes (#22687)
  • 9fa7ab4 fix(css): preserve dollar signs in external @import urls with lightningcss ...
  • 1113acf refactor: use pre-defined environments variable to avoid duplicate `Object.va...
  • 709eb8e fix(bundled-dev): avoid stack overflow on import.meta.hot.invalidate() (#22...
  • 043a810 fix: ignore bundled config temp dir (#22800)
  • Additional commits viewable in compare view

Updates @astrojs/node from 9.5.5 to 11.0.0

Release notes

Sourced from @​astrojs/node's releases.

@​astrojs/node@​11.0.0

Patch Changes

@​astrojs/node@​11.0.0-beta.2

Patch Changes

@​astrojs/node@​11.0.0-beta.1

Patch Changes

@​astrojs/node@​10.1.4

Patch Changes

  • #16985 4ecff32 Thanks @​maximslo! - Fixes the experimental.logger destination not being used for the "Server listening on..." startup message. The logger is now resolved before the server starts listening, and adapterLogger re-creates itself when the underlying logger changes so the startup message uses the correct destination.

@​astrojs/node@​10.1.3

Patch Changes

  • #16922 7dce185 Thanks @​astrobot-houston! - Fixes prerendered pages returning 404 when using build.format: 'file' or build.format: 'preserve' with the Node adapter in standalone mode.

    Previously, clean URLs like /about would fail to resolve to about.html on disk, because the static file handler only supported the default directory format (about/index.html). Now the handler correctly resolves clean URLs to .html files when the build format produces them.

@​astrojs/node@​10.1.2

Patch Changes

  • Updated dependencies [f732f3c]:
    • @​astrojs/internal-helpers@​0.10.0
Changelog

Sourced from @​astrojs/node's changelog.

11.0.0

Patch Changes

11.0.0-beta.2

Patch Changes

11.0.0-beta.1

Patch Changes

11.0.0-alpha.0

Patch Changes

10.1.4

Patch Changes

  • #16985 4ecff32 Thanks @​maximslo! - Fixes the experimental.logger destination not being used for the "Server listening on..." startup message. The logger is now resolved before the server starts listening, and adapterLogger re-creates itself when the underlying logger changes so the startup message uses the correct destination.

10.1.3

Patch Changes

  • #16922 7dce185 Thanks @​astrobot-houston! - Fixes prerendered pages returning 404 when using build.format: 'file' or build.format: 'preserve' with the Node adapter in standalone mode.

    Previously, clean URLs like /about would fail to resolve to about.html on disk, because the static file handler only supported the default directory format (about/index.html). Now the handler correctly resolves clean URLs to .html files when the build format produces them.

10.1.2

Patch Changes

  • Updated dependencies [f732f3c]:
    • @​astrojs/internal-helpers@​0.10.0

10.1.1

... (truncated)

Commits

Updates @astrojs/preact from 4.1.3 to 6.0.0

Release notes

Sourced from @​astrojs/preact's releases.

@​astrojs/preact@​6.0.0

Major Changes

Minor Changes

  • #17093 4585fe5 Thanks @​Princesseuh! - Replaces the import entrypoint of getContainerRenderer()

    A new container-renderer entrypoint exporting getContainerRenderer() has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.

    If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the getContainerRenderer() import for React:

    - import { getContainerRenderer } from '@astrojs/react';
    + import { getContainerRenderer } from '@astrojs/react/container-renderer';
    

    Importing getContainerRenderer() from the package root still works, but is now deprecated and logs a warning.

Patch Changes

@​astrojs/preact@​6.0.0-beta.2

Minor Changes

  • #17093 4585fe5 Thanks @​Princesseuh! - Replaces the import entrypoint of getContainerRenderer()

    A new container-renderer entrypoint exporting getContainerRenderer() has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.

    If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the getContainerRenderer() import for React:

    - import { getContainerRenderer } from '@astrojs/react';
    + import { getContainerRenderer } from '@astrojs/react/container-renderer';
    

    Importing getContainerRenderer() from the package root still works, but is now deprecated and logs a warning.

@​astrojs/preact@​6.0.0-beta.1

Patch Changes

@​astrojs/preact@​5.1.5

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/preact's changelog.

6.0.0

Major Changes

Minor Changes

  • #17093 4585fe5 Thanks @​Princesseuh! - Replaces the import entrypoint of getContainerRenderer()

    A new container-renderer entrypoint exporting getContainerRenderer() has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.

    If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the getContainerRenderer() import for React:

    - import { getContainerRenderer } from '@astrojs/react';
    + import { getContainerRenderer } from '@astrojs/react/container-renderer';
    

    Importing getContainerRenderer() from the package root still works, but is now deprecated and logs a warning.

Patch Changes

6.0.0-beta.2

Minor Changes

  • #17093 4585fe5 Thanks @​Princesseuh! - Replaces the import entrypoint of getContainerRenderer()

    A new container-renderer entrypoint exporting getContainerRenderer() has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.

    If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the getContainerRenderer() import for React:

    - import { getContainerRenderer } from '@astrojs/react';
    + import { getContainerRenderer } from '@astrojs/react/container-renderer';
    

    Importing getContainerRenderer() from the package root still works, but is now deprecated and logs a warning.

6.0.0-beta.1

Patch Changes

6.0.0-alpha.0

... (truncated)

Commits

Updates astro from 5.18.1 to 7.0.3

Release notes

Sourced from astro's releases.

astro@7.0.3

Patch Changes

  • #17189 24d2c9e Thanks @​astrobot-houston! - Fixes a bug where an error thrown inside one route's getStaticPaths() would prevent other valid routes from being matched in dev mode

  • #16932 8f4a3db Thanks @​fkatsuhiro! - Fixes HMR for action files during development. Editing files in src/actions/ now takes effect on the next request without requiring a dev server restart.

  • #17087 fb0ab02 Thanks @​jp-knj! - Fixes localized custom error pages in i18n projects so routes like /pt/404 are used for missing localized pages and return the correct status code

astro@7.0.2

Patch Changes

  • Updated dependencies [3b5e994]:
    • @​astrojs/markdown-satteri@​0.3.2

astro@7.0.1

Patch Changes

  • #17151 ccceda3 Thanks @​matthewp! - Fixes astro dev incorrectly starting in background mode for Warp terminal users. Hybrid environments like Warp are no longer treated as AI agents for auto-background detection.

  • #17158 164df87 Thanks @​ematipico! - Fixes astro dev --background --host not listing the network addresses. The background server start output and astro dev status now show every exposed network URL, matching the foreground dev server.

  • #17141 d785b9d Thanks @​astrobot-houston! - Fixes responsive image CSS overriding user styles defined inside CSS @layer blocks. The generated image styles are now wrapped in @layer astro.images, ensuring they have lower cascade priority than user-defined layers.

  • #17150 1a61386 Thanks @​matthewp! - Fixes astro dev --background failing on Windows with "Failed to spawn background dev server process"

astro@7.0.0

Major Changes

  • #15819 cafec4e Thanks @​delucis! - Upgrade to Vite v8

  • #16965 57ead0d Thanks @​Princesseuh! - Makes 'jsx' the default value for compressHTML

    Astro now strips whitespace from your HTML using JSX rules by default, the same way frameworks like React do. Whitespace and line breaks around elements are removed, but meaningful whitespace within a single line — like a space between two inline elements — is preserved. To keep a space that would otherwise be removed, write it explicitly in your source, for example with {" "}.

    This can change rendered output where whitespace between inline elements was previously meaningful. To keep Astro's earlier behavior, set compressHTML: true for HTML-aware compression, or compressHTML: false to preserve all whitespace.

  • #16610 c63e7e4 Thanks @​matthewp! - Adds background dev server management for AI coding agents.

    When an AI coding agent is detected, astro dev now automatically starts the dev server as a detached background process. This prevents the dev server from blocking the agent's terminal and allows it to continue working while the server runs.

    A lock file (.astro/dev.json) is written when the dev server starts, recording the server's URL, port, and PID. This prevents duplicate servers from being started for the same project.

    New flag and subcommands

    • astro dev --background — Start the dev server as a background process (this is what runs automatically when an agent is detected).
    • astro dev stop — Stop a running background dev server.
    • astro dev status — Check if a dev server is running and display its URL, PID, and uptime.
    • astro dev logs — View logs from a background dev server. Use --follow (-f) to stream new output as it's written.

... (truncated)

Changelog

Sourced from astro's changelog.

7.0.3

Patch Changes

  • #17189 24d2c9e Thanks @​astrobot-houston! - Fixes a bug where an error thrown inside one route's getStaticPaths() would prevent other valid routes from being matched in dev mode

  • #16932 8f4a3db Thanks @​fkatsuhiro! - Fixes HMR for action files during development. Editing files in src/actions/ now takes effect on the next request without requiring a dev server restart.

  • #17087 fb0ab02 Thanks @​jp-knj! - Fixes localized custom error pages in i18n projects so routes like /pt/404 are used for missing localized pages and return the correct status code

7.0.2

Patch Changes

  • Updated dependencies [3b5e994]:
    • @​astrojs/markdown-satteri@​0.3.2

7.0.1

Patch Changes

  • #17151 ccceda3 Thanks @​matthewp! - Fixes astro dev incorrectly starting in background mode for Warp terminal users. Hybrid environments like Warp are no longer treated as AI agents for auto-background detection.

  • #17158 164df87 Thanks @​ematipico! - Fixes astro dev --background --host not listing the network addresses. The background server start output and astro dev status now show every exposed network URL, matching the foreground dev server.

  • #17141 d785b9d Thanks @​astrobot-houston! - Fixes responsive image CSS overriding user styles defined inside CSS @layer blocks. The generated image styles are now wrapped in @layer astro.images, ensuring they have lower cascade priority than user-defined layers.

  • #17150 1a61386 Thanks @​matthewp! - Fixes astro dev --background failing on Windows with "Failed to spawn background dev server process"

7.0.0

Major Changes

  • #15819 cafec4e Thanks @​delucis! - Upgrade to Vite v8

  • #16965 57ead0d Thanks @​Princesseuh! - Makes 'jsx' the default value for compressHTML

    Astro now strips whitespace from your HTML using JSX rules by default, the same way frameworks like React do. Whitespace and line breaks around elements are removed, but meaningful whitespace within a single line — like a space between two inline elements — is preserved. To keep a space that would otherwise be removed, write it explicitly in your source, for example with {" "}.

    This can change rendered output where whitespace between inline elements was previously meaningful. To keep Astro's earlier behavior, set compressHTML: true for HTML-aware compression, or compressHTML: false to preserve all whitespace.

  • #16610 c63e7e4 Thanks @​matthewp! - Adds background dev server management for AI coding agents.

    When an AI coding agent is detected, astro dev now automatically starts the dev server as a detached background process. This prevents the dev server from blocking the agent's terminal and allows it to continue working while the server runs.

    A lock file (.astro/dev.json) is written when the dev server starts, recording the server's URL, port, and PID. This prevents duplicate servers from being started for the same project.

    New flag and subcommands

    • astro dev --background — Start the dev server as a background process (this is what runs automatically when an agent is detected).
    • astro dev stop — Stop a running background dev server.

... (truncated)

Commits

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will 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.
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) to 8.1.1 and updates ancestor dependencies [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite), [@astrojs/node](https://github.com/withastro/astro/tree/HEAD/packages/integrations/node), [@astrojs/preact](https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro). These dependencies need to be updated together. Updates `vite` from 6.4.2 to 8.1.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>v8.1.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.1.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@8.1.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@8.1.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-legacy@8.1.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/plugin-legacy@8.1.0/packages/plugin-legacy/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.1.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.1.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-legacy@8.1.0-beta.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/plugin-legacy@8.1.0-beta.0/packages/plugin-legacy/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.1.0-beta.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.1.0-beta.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.16</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.16/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.15</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.15/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.14</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.14/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.13</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.13/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.12</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.12/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.11</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.11/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.10</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.10/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.9</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.9/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.8</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.8/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.7</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.7/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.6</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.6/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted --><a href="https://github.com/vitejs/vite/compare/v8.1.0...v8.1.1">8.1.1</a> (2026-06-30)<!-- raw HTML omitted --></h2> <h3>Features</h3> <ul> <li>update dynamic import warning to link to Vite docs (<a href="https://redirect.github.com/vitejs/vite/issues/22823">#22823</a>) (<a href="https://github.com/vitejs/vite/commit/62bd7afd27ec0507bf528a135165dda3a44ebc21">62bd7af</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>bundled-dev:</strong> avoid stack overflow on <code>import.meta.hot.invalidate()</code> (<a href="https://redirect.github.com/vitejs/vite/issues/22797">#22797</a>) (<a href="https://github.com/vitejs/vite/commit/709eb8ee03d3c46269755334f59b7e9a353fc522">709eb8e</a>)</li> <li><strong>bundled-dev:</strong> serve assets emitted during HMR/lazy compile (<a href="https://redirect.github.com/vitejs/vite/issues/22745">#22745</a>) (<a href="https://github.com/vitejs/vite/commit/5876b2cc2e1a01df9363e1e3d1d19f474ba68285">5876b2c</a>)</li> <li><strong>bundledDev:</strong> skip plugin transform hooks for rolldown-lazy stub modules (<a href="https://redirect.github.com/vitejs/vite/issues/22778">#22778</a>) (<a href="https://github.com/vitejs/vite/commit/8f925e2e496f4d313d860acb53880245b07ce6f7">8f925e2</a>)</li> <li><strong>css:</strong> preserve dollar signs in external <code>@import</code> urls with lightningcss (<a href="https://redirect.github.com/vitejs/vite/issues/22718">#22718</a>) (<a href="https://github.com/vitejs/vite/commit/9fa7ab4990f4fe74597d0a37a16d84af1c1e3544">9fa7ab4</a>)</li> <li><strong>css:</strong> resolve tsconfig paths in CSS and Sass <a href="https://github.com/import"><code>@​import</code></a> (<a href="https://redirect.github.com/vitejs/vite/issues/22775">#22775</a>) (<a href="https://github.com/vitejs/vite/commit/ef0b8916160c4d2a677decc062f6faa48fbf1578">ef0b891</a>)</li> <li><strong>deps:</strong> update all non-major dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/22734">#22734</a>) (<a href="https://github.com/vitejs/vite/commit/e635f493faa24930ae637318d6564539bc668e89">e635f49</a>)</li> <li><strong>deps:</strong> update all non-major dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/22804">#22804</a>) (<a href="https://github.com/vitejs/vite/commit/8837400a676a633af1ad6d3746b584d13cf90ecc">8837400</a>)</li> <li><strong>deps:</strong> update rolldown-related dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/22591">#22591</a>) (<a href="https://github.com/vitejs/vite/commit/2ce6677a151c53a019baec32859b646267f9d320">2ce6677</a>)</li> <li>escape ids with multiple null bytes (<a href="https://redirect.github.com/vitejs/vite/issues/22687">#22687</a>) (<a href="https://github.com/vitejs/vite/commit/833fc302f3f4a5030f49207b5fbf10422f3247a2">833fc30</a>)</li> <li>hide console window when running 'net use' on Windows (<a href="https://redirect.github.com/vitejs/vite/issues/22698">#22698</a>) (<a href="https://github.com/vitejs/vite/commit/92b63f219f6c1872f35461aa75e9e9aec79bb01c">92b63f2</a>)</li> <li>ignore bundled config temp dir (<a href="https://redirect.github.com/vitejs/vite/issues/22800">#22800</a>) (<a href="https://github.com/vitejs/vite/commit/043a81096ddf8c6f9077c8e3e12362c83f9ed089">043a810</a>)</li> <li>invert <code>esbuild.jsxSideEffects</code> when converting to <code>oxc.jsx.pure</code> (<a href="https://redirect.github.com/vitejs/vite/issues/22809">#22809</a>) (<a href="https://github.com/vitejs/vite/commit/33895ba4faa0a46d5bd7b3eb53d02255113c8b5d">33895ba</a>)</li> <li><strong>optimize-deps:</strong> ignore <code>ERR_CLOSED_SERVER</code> in scanner (<a href="https://redirect.github.com/vitejs/vite/issues/22784">#22784</a>) (<a href="https://github.com/vitejs/vite/commit/085a0ab704bf1a698d459d625a5c955d27b73134">085a0ab</a>)</li> <li><strong>optimizer:</strong> scanner should resolve <code>input</code> from <code>root</code> (<a href="https://redirect.github.com/vitejs/vite/issues/22769">#22769</a>) (<a href="https://github.com/vitejs/vite/commit/9722b0795b68602597ddd53e3d3c7ed9f00cb831">9722b07</a>)</li> <li>resolve pnpm .modules.yaml from workspace root instead of cwd (<a href="https://redirect.github.com/vitejs/vite/issues/22757">#22757</a>) (<a href="https://github.com/vitejs/vite/commit/2531ac7ccd1d581df5febe4a3814226ba8939a20">2531ac7</a>)</li> <li>return sourcemap field from some plugins that were lacking (<a href="https://redirect.github.com/vitejs/vite/issues/22782">#22782</a>) (<a href="https://github.com/vitejs/vite/commit/7e18bf802bdde7a386eb3b407c87a67f89a895ca">7e18bf8</a>)</li> <li><strong>server:</strong> handle malformed URI in indexHtmlMiddleware (<a href="https://redirect.github.com/vitejs/vite/issues/22781">#22781</a>) (<a href="https://github.com/vitejs/vite/commit/84f5cccc7574c740c46f5cb2a09f29cde8380701">84f5ccc</a>)</li> </ul> <h3>Miscellaneous Chores</h3> <ul> <li>improve dependency optimizer messages (<a href="https://redirect.github.com/vitejs/vite/issues/22549">#22549</a>) (<a href="https://github.com/vitejs/vite/commit/092cb3b4247a06ba176c094a9a743d335adc6574">092cb3b</a>)</li> </ul> <h3>Code Refactoring</h3> <ul> <li><strong>css:</strong> remove lightningcss null byte bug workaround (<a href="https://redirect.github.com/vitejs/vite/issues/22822">#22822</a>) (<a href="https://github.com/vitejs/vite/commit/2dafd3bb7f8b265037e216f50afaa890ae2e2875">2dafd3b</a>)</li> <li>use pre-defined environments variable to avoid duplicate <code>Object.values</code> calls (<a href="https://redirect.github.com/vitejs/vite/issues/22790">#22790</a>) (<a href="https://github.com/vitejs/vite/commit/1113acf6cff711196b3443f7126804847c1d4e1e">1113acf</a>)</li> </ul> <h3>Tests</h3> <ul> <li>enable &quot;manual chunk path&quot; test and remove &quot;worker.format error&quot; test (<a href="https://redirect.github.com/vitejs/vite/issues/22824">#22824</a>) (<a href="https://github.com/vitejs/vite/commit/c088511f34a01f13e21498a492df8554bf332cdf">c088511</a>)</li> </ul> <h2><a href="https://github.com/vitejs/vite/compare/v8.1.0-beta.0...v8.1.0">8.1.0</a> (2026-06-23)</h2> <h3>Features</h3> <ul> <li>extend <code>server.fs.deny</code> list with common files (<a href="https://redirect.github.com/vitejs/vite/issues/22707">#22707</a>) (<a href="https://github.com/vitejs/vite/commit/61ba8fdc6500e8aa668021833ae5e6ebd200466d">61ba8fd</a>)</li> <li>update rolldown to 1.1.2 (<a href="https://redirect.github.com/vitejs/vite/issues/22695">#22695</a>) (<a href="https://github.com/vitejs/vite/commit/4f008a6213014fe5e898f42561bdc621e103903e">4f008a6</a>)</li> <li>use <code>~</code> for Rolldown (<a href="https://redirect.github.com/vitejs/vite/issues/22693">#22693</a>) (<a href="https://github.com/vitejs/vite/commit/9928722f7d08de27907c48b65ddc071244166e05">9928722</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>bundled-dev:</strong> errors should be kept when incremental build fails (<a href="https://redirect.github.com/vitejs/vite/issues/22617">#22617</a>) (<a href="https://github.com/vitejs/vite/commit/9a0dd481ac2160078b8173879e0fa86e5e6af05d">9a0dd48</a>)</li> <li>cache falsy values in perEnvironmentState (<a href="https://redirect.github.com/vitejs/vite/issues/22715">#22715</a>) (<a href="https://github.com/vitejs/vite/commit/0e91e79841b501d29dc86a6b7c0313660781196a">0e91e79</a>)</li> <li><strong>glob:</strong> respect caseSensitive option in hmr matcher (<a href="https://redirect.github.com/vitejs/vite/issues/22711">#22711</a>) (<a href="https://github.com/vitejs/vite/commit/65f525e643ba31faeaeafbc5d888b61465e6b48d">65f525e</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/4ae9e14f2c4db0706b2e9d815656e050accbd2bf"><code>4ae9e14</code></a> release: v8.1.1</li> <li><a href="https://github.com/vitejs/vite/commit/8f925e2e496f4d313d860acb53880245b07ce6f7"><code>8f925e2</code></a> fix(bundledDev): skip plugin transform hooks for rolldown-lazy stub modules (...</li> <li><a href="https://github.com/vitejs/vite/commit/c088511f34a01f13e21498a492df8554bf332cdf"><code>c088511</code></a> test: enable &quot;manual chunk path&quot; test and remove &quot;worker.format error&quot; test (...</li> <li><a href="https://github.com/vitejs/vite/commit/62bd7afd27ec0507bf528a135165dda3a44ebc21"><code>62bd7af</code></a> feat: update dynamic import warning to link to Vite docs (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22823">#22823</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/2dafd3bb7f8b265037e216f50afaa890ae2e2875"><code>2dafd3b</code></a> refactor(css): remove lightningcss null byte bug workaround (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22822">#22822</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/833fc302f3f4a5030f49207b5fbf10422f3247a2"><code>833fc30</code></a> fix: escape ids with multiple null bytes (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22687">#22687</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/9fa7ab4990f4fe74597d0a37a16d84af1c1e3544"><code>9fa7ab4</code></a> fix(css): preserve dollar signs in external <code>@import</code> urls with lightningcss ...</li> <li><a href="https://github.com/vitejs/vite/commit/1113acf6cff711196b3443f7126804847c1d4e1e"><code>1113acf</code></a> refactor: use pre-defined environments variable to avoid duplicate `Object.va...</li> <li><a href="https://github.com/vitejs/vite/commit/709eb8ee03d3c46269755334f59b7e9a353fc522"><code>709eb8e</code></a> fix(bundled-dev): avoid stack overflow on <code>import.meta.hot.invalidate()</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22">#22</a>...</li> <li><a href="https://github.com/vitejs/vite/commit/043a81096ddf8c6f9077c8e3e12362c83f9ed089"><code>043a810</code></a> fix: ignore bundled config temp dir (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22800">#22800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/v8.1.1/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `@astrojs/node` from 9.5.5 to 11.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/releases">@​astrojs/node's releases</a>.</em></p> <blockquote> <h2><code>@​astrojs/node</code><a href="https://github.com/11"><code>@​11</code></a>.0.0</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17054">#17054</a> <a href="https://github.com/withastro/astro/commit/d426b67b1239a82bf001d23ac8e418fea6861be1"><code>d426b67</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes an issue where Astro files with non-ASCII characters in their name weren't correctly served after the build.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17027">#17027</a> <a href="https://github.com/withastro/astro/commit/241250bf126f39c86a8aedd38df106e533301752"><code>241250b</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Triggers beta prereleases for packages that are still on alpha</p> </li> </ul> <h2><code>@​astrojs/node</code><a href="https://github.com/11"><code>@​11</code></a>.0.0-beta.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/17054">#17054</a> <a href="https://github.com/withastro/astro/commit/d426b67b1239a82bf001d23ac8e418fea6861be1"><code>d426b67</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes an issue where Astro files with non-ASCII characters in their name weren't correctly served after the build.</li> </ul> <h2><code>@​astrojs/node</code><a href="https://github.com/11"><code>@​11</code></a>.0.0-beta.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/17027">#17027</a> <a href="https://github.com/withastro/astro/commit/241250bf126f39c86a8aedd38df106e533301752"><code>241250b</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Triggers beta prereleases for packages that are still on alpha</li> </ul> <h2><code>@​astrojs/node</code><a href="https://github.com/10"><code>@​10</code></a>.1.4</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/16985">#16985</a> <a href="https://github.com/withastro/astro/commit/4ecff3268acb6ee3db719c4b38bbaead703ff4de"><code>4ecff32</code></a> Thanks <a href="https://github.com/maximslo"><code>@​maximslo</code></a>! - Fixes the <code>experimental.logger</code> destination not being used for the &quot;Server listening on...&quot; startup message. The logger is now resolved before the server starts listening, and <code>adapterLogger</code> re-creates itself when the underlying logger changes so the startup message uses the correct destination.</li> </ul> <h2><code>@​astrojs/node</code><a href="https://github.com/10"><code>@​10</code></a>.1.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16922">#16922</a> <a href="https://github.com/withastro/astro/commit/7dce1852a4f185fb44f885030f48c1883e9b17ff"><code>7dce185</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes prerendered pages returning 404 when using <code>build.format: 'file'</code> or <code>build.format: 'preserve'</code> with the Node adapter in standalone mode.</p> <p>Previously, clean URLs like <code>/about</code> would fail to resolve to <code>about.html</code> on disk, because the static file handler only supported the default <code>directory</code> format (<code>about/index.html</code>). Now the handler correctly resolves clean URLs to <code>.html</code> files when the build format produces them.</p> </li> </ul> <h2><code>@​astrojs/node</code><a href="https://github.com/10"><code>@​10</code></a>.1.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/withastro/astro/commit/f732f3cc716342a63e5b03815243ba10964b89dc"><code>f732f3c</code></a>]: <ul> <li><code>@​astrojs/internal-helpers</code><a href="https://github.com/0"><code>@​0</code></a>.10.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/integrations/node/CHANGELOG.md">@​astrojs/node's changelog</a>.</em></p> <blockquote> <h2>11.0.0</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17054">#17054</a> <a href="https://github.com/withastro/astro/commit/d426b67b1239a82bf001d23ac8e418fea6861be1"><code>d426b67</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes an issue where Astro files with non-ASCII characters in their name weren't correctly served after the build.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17027">#17027</a> <a href="https://github.com/withastro/astro/commit/241250bf126f39c86a8aedd38df106e533301752"><code>241250b</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Triggers beta prereleases for packages that are still on alpha</p> </li> </ul> <h2>11.0.0-beta.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/17054">#17054</a> <a href="https://github.com/withastro/astro/commit/d426b67b1239a82bf001d23ac8e418fea6861be1"><code>d426b67</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes an issue where Astro files with non-ASCII characters in their name weren't correctly served after the build.</li> </ul> <h2>11.0.0-beta.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/17027">#17027</a> <a href="https://github.com/withastro/astro/commit/241250bf126f39c86a8aedd38df106e533301752"><code>241250b</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Triggers beta prereleases for packages that are still on alpha</li> </ul> <h2>11.0.0-alpha.0</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/withastro/astro/commit/cafec4e23365061491103dfce2e889a15cf86f27"><code>cafec4e</code></a>, <a href="https://github.com/withastro/astro/commit/cafec4e23365061491103dfce2e889a15cf86f27"><code>cafec4e</code></a>, <a href="https://github.com/withastro/astro/commit/c30a7789a477e44826c54c8560587d09dc46a229"><code>c30a778</code></a>, <a href="https://github.com/withastro/astro/commit/ee079d4c7f143076b84d663c832911009a077c7f"><code>ee079d4</code></a>]: <ul> <li>astro@7.0.0-alpha.0</li> </ul> </li> </ul> <h2>10.1.4</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/16985">#16985</a> <a href="https://github.com/withastro/astro/commit/4ecff3268acb6ee3db719c4b38bbaead703ff4de"><code>4ecff32</code></a> Thanks <a href="https://github.com/maximslo"><code>@​maximslo</code></a>! - Fixes the <code>experimental.logger</code> destination not being used for the &quot;Server listening on...&quot; startup message. The logger is now resolved before the server starts listening, and <code>adapterLogger</code> re-creates itself when the underlying logger changes so the startup message uses the correct destination.</li> </ul> <h2>10.1.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16922">#16922</a> <a href="https://github.com/withastro/astro/commit/7dce1852a4f185fb44f885030f48c1883e9b17ff"><code>7dce185</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes prerendered pages returning 404 when using <code>build.format: 'file'</code> or <code>build.format: 'preserve'</code> with the Node adapter in standalone mode.</p> <p>Previously, clean URLs like <code>/about</code> would fail to resolve to <code>about.html</code> on disk, because the static file handler only supported the default <code>directory</code> format (<code>about/index.html</code>). Now the handler correctly resolves clean URLs to <code>.html</code> files when the build format produces them.</p> </li> </ul> <h2>10.1.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/withastro/astro/commit/f732f3cc716342a63e5b03815243ba10964b89dc"><code>f732f3c</code></a>]: <ul> <li><code>@​astrojs/internal-helpers</code><a href="https://github.com/0"><code>@​0</code></a>.10.0</li> </ul> </li> </ul> <h2>10.1.1</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/astro/commit/f55ba4caca7c587555da86e3211ae1f1b3407c5f"><code>f55ba4c</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/node/issues/17132">#17132</a>)</li> <li><a href="https://github.com/withastro/astro/commit/0d862d5a22c9430ae52b6bc289029c7640c2a1ab"><code>0d862d5</code></a> [ci] release (beta) (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/node/issues/17082">#17082</a>)</li> <li><a href="https://github.com/withastro/astro/commit/c188e855164c068b20cb47530e7ba5dad951b0b5"><code>c188e85</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/d426b67b1239a82bf001d23ac8e418fea6861be1"><code>d426b67</code></a> Fix non-ASCII prerendered routes ignoring trailingSlash: never in <code>@​astrojs/no</code>...</li> <li><a href="https://github.com/withastro/astro/commit/08b84d60af591206aebf0390bca81a2da6356567"><code>08b84d6</code></a> [ci] release (beta) (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/node/issues/17045">#17045</a>)</li> <li><a href="https://github.com/withastro/astro/commit/d0d029640e23f207f1ccf63fc841ca234d24563b"><code>d0d0296</code></a> chore: fix prerelease peer dep versions (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/node/issues/17009">#17009</a>)</li> <li><a href="https://github.com/withastro/astro/commit/138bc0820ce5bd9a273ddd363ac34bbc41d066d0"><code>138bc08</code></a> Merge branch 'main' into merge-main-next-june-9</li> <li><a href="https://github.com/withastro/astro/commit/0b879fbbaa0c8494835dab6f5c781b1c0cb36eac"><code>0b879fb</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/node/issues/16972">#16972</a>)</li> <li><a href="https://github.com/withastro/astro/commit/e61df53bc7ea9cf65e802607bc9bfd460f465f2b"><code>e61df53</code></a> Merge remote-tracking branch 'origin/main' into chore/merge-main-into-next</li> <li><a href="https://github.com/withastro/astro/commit/4ecff3268acb6ee3db719c4b38bbaead703ff4de"><code>4ecff32</code></a> fix(node): resolve experimental logger before logging server startup … (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/node/issues/16985">#16985</a>)</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/@astrojs/node@11.0.0/packages/integrations/node">compare view</a></li> </ul> </details> <br /> Updates `@astrojs/preact` from 4.1.3 to 6.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/releases">@​astrojs/preact's releases</a>.</em></p> <blockquote> <h2><code>@​astrojs/preact</code><a href="https://github.com/6"><code>@​6</code></a>.0.0</h2> <h3>Major Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/15819">#15819</a> <a href="https://github.com/withastro/astro/commit/cafec4e23365061491103dfce2e889a15cf86f27"><code>cafec4e</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Upgrade to Vite v8</li> </ul> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17093">#17093</a> <a href="https://github.com/withastro/astro/commit/4585fe57dda06226058118f90a809f9e33d4b2af"><code>4585fe5</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Replaces the import entrypoint of <code>getContainerRenderer()</code></p> <p>A new <code>container-renderer</code> entrypoint exporting <code>getContainerRenderer()</code> has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.</p> <p>If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the <code>getContainerRenderer()</code> import for React:</p> <pre lang="diff"><code>- import { getContainerRenderer } from '@astrojs/react'; + import { getContainerRenderer } from '@astrojs/react/container-renderer'; </code></pre> <p>Importing <code>getContainerRenderer()</code> from the package root still works, but is now deprecated and logs a warning.</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/17027">#17027</a> <a href="https://github.com/withastro/astro/commit/241250bf126f39c86a8aedd38df106e533301752"><code>241250b</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Triggers beta prereleases for packages that are still on alpha</li> </ul> <h2><code>@​astrojs/preact</code><a href="https://github.com/6"><code>@​6</code></a>.0.0-beta.2</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17093">#17093</a> <a href="https://github.com/withastro/astro/commit/4585fe57dda06226058118f90a809f9e33d4b2af"><code>4585fe5</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Replaces the import entrypoint of <code>getContainerRenderer()</code></p> <p>A new <code>container-renderer</code> entrypoint exporting <code>getContainerRenderer()</code> has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.</p> <p>If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the <code>getContainerRenderer()</code> import for React:</p> <pre lang="diff"><code>- import { getContainerRenderer } from '@astrojs/react'; + import { getContainerRenderer } from '@astrojs/react/container-renderer'; </code></pre> <p>Importing <code>getContainerRenderer()</code> from the package root still works, but is now deprecated and logs a warning.</p> </li> </ul> <h2><code>@​astrojs/preact</code><a href="https://github.com/6"><code>@​6</code></a>.0.0-beta.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/17027">#17027</a> <a href="https://github.com/withastro/astro/commit/241250bf126f39c86a8aedd38df106e533301752"><code>241250b</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Triggers beta prereleases for packages that are still on alpha</li> </ul> <h2><code>@​astrojs/preact</code><a href="https://github.com/5"><code>@​5</code></a>.1.5</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/16900">#16900</a> <a href="https://github.com/withastro/astro/commit/17a0fbd34d11db765e79caf269bfd5f43ef51da8"><code>17a0fbd</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Bumps <code>devalue</code> dependency to v5.8.1</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/integrations/preact/CHANGELOG.md">@​astrojs/preact's changelog</a>.</em></p> <blockquote> <h2>6.0.0</h2> <h3>Major Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/15819">#15819</a> <a href="https://github.com/withastro/astro/commit/cafec4e23365061491103dfce2e889a15cf86f27"><code>cafec4e</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Upgrade to Vite v8</li> </ul> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17093">#17093</a> <a href="https://github.com/withastro/astro/commit/4585fe57dda06226058118f90a809f9e33d4b2af"><code>4585fe5</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Replaces the import entrypoint of <code>getContainerRenderer()</code></p> <p>A new <code>container-renderer</code> entrypoint exporting <code>getContainerRenderer()</code> has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.</p> <p>If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the <code>getContainerRenderer()</code> import for React:</p> <pre lang="diff"><code>- import { getContainerRenderer } from '@astrojs/react'; + import { getContainerRenderer } from '@astrojs/react/container-renderer'; </code></pre> <p>Importing <code>getContainerRenderer()</code> from the package root still works, but is now deprecated and logs a warning.</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/17027">#17027</a> <a href="https://github.com/withastro/astro/commit/241250bf126f39c86a8aedd38df106e533301752"><code>241250b</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Triggers beta prereleases for packages that are still on alpha</li> </ul> <h2>6.0.0-beta.2</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17093">#17093</a> <a href="https://github.com/withastro/astro/commit/4585fe57dda06226058118f90a809f9e33d4b2af"><code>4585fe5</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Replaces the import entrypoint of <code>getContainerRenderer()</code></p> <p>A new <code>container-renderer</code> entrypoint exporting <code>getContainerRenderer()</code> has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.</p> <p>If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the <code>getContainerRenderer()</code> import for React:</p> <pre lang="diff"><code>- import { getContainerRenderer } from '@astrojs/react'; + import { getContainerRenderer } from '@astrojs/react/container-renderer'; </code></pre> <p>Importing <code>getContainerRenderer()</code> from the package root still works, but is now deprecated and logs a warning.</p> </li> </ul> <h2>6.0.0-beta.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/17027">#17027</a> <a href="https://github.com/withastro/astro/commit/241250bf126f39c86a8aedd38df106e533301752"><code>241250b</code></a> Thanks <a href="https://github.com/ocavue"><code>@​ocavue</code></a>! - Triggers beta prereleases for packages that are still on alpha</li> </ul> <h2>6.0.0-alpha.0</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/astro/commit/f55ba4caca7c587555da86e3211ae1f1b3407c5f"><code>f55ba4c</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact/issues/17132">#17132</a>)</li> <li><a href="https://github.com/withastro/astro/commit/0da0678ab03cf225961f19eb73f594f3688e0e5b"><code>0da0678</code></a> [ci] release (beta) (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact/issues/17089">#17089</a>)</li> <li><a href="https://github.com/withastro/astro/commit/4585fe57dda06226058118f90a809f9e33d4b2af"><code>4585fe5</code></a> fix(integrations): Export container renderers from a dedicated export path to...</li> <li><a href="https://github.com/withastro/astro/commit/08b84d60af591206aebf0390bca81a2da6356567"><code>08b84d6</code></a> [ci] release (beta) (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact/issues/17045">#17045</a>)</li> <li><a href="https://github.com/withastro/astro/commit/75cfa528fa04a4b80155a61666cf624b28ecc9f7"><code>75cfa52</code></a> chore: merge main into next</li> <li><a href="https://github.com/withastro/astro/commit/75ae5df550edf907f771010ab33646f7f90a6b10"><code>75ae5df</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact/issues/16912">#16912</a>)</li> <li><a href="https://github.com/withastro/astro/commit/9c2b95bd138fa4d1a070f1e796537453d6c9e525"><code>9c2b95b</code></a> Merge remote-tracking branch 'origin/main' into chore/merge-main-into-next</li> <li><a href="https://github.com/withastro/astro/commit/17a0fbd34d11db765e79caf269bfd5f43ef51da8"><code>17a0fbd</code></a> chore(deps): update devalue (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact/issues/16900">#16900</a>)</li> <li><a href="https://github.com/withastro/astro/commit/3652d1cff899be55fc2441c2e0d39f4756d8d960"><code>3652d1c</code></a> chore: merge main into next</li> <li><a href="https://github.com/withastro/astro/commit/c7157e69774a1c9eb685285ca21f1cf78f3551c2"><code>c7157e6</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact/issues/16870">#16870</a>)</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/@astrojs/preact@6.0.0/packages/integrations/preact">compare view</a></li> </ul> </details> <br /> Updates `astro` from 5.18.1 to 7.0.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/releases">astro's releases</a>.</em></p> <blockquote> <h2>astro@7.0.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17189">#17189</a> <a href="https://github.com/withastro/astro/commit/24d2c9ec71ffcceb853762bb1295e1d893bdd4d6"><code>24d2c9e</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes a bug where an error thrown inside one route's <code>getStaticPaths()</code> would prevent other valid routes from being matched in dev mode</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16932">#16932</a> <a href="https://github.com/withastro/astro/commit/8f4a3db415f227b5c742c16ad18f764e952f91bd"><code>8f4a3db</code></a> Thanks <a href="https://github.com/fkatsuhiro"><code>@​fkatsuhiro</code></a>! - Fixes HMR for action files during development. Editing files in <code>src/actions/</code> now takes effect on the next request without requiring a dev server restart.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17087">#17087</a> <a href="https://github.com/withastro/astro/commit/fb0ab02f019efd222e6976d72bcd618fd915bc1d"><code>fb0ab02</code></a> Thanks <a href="https://github.com/jp-knj"><code>@​jp-knj</code></a>! - Fixes localized custom error pages in i18n projects so routes like <code>/pt/404</code> are used for missing localized pages and return the correct status code</p> </li> </ul> <h2>astro@7.0.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/withastro/astro/commit/3b5e994738cf58c9eed0774ce779b685c31a3a5c"><code>3b5e994</code></a>]: <ul> <li><code>@​astrojs/markdown-satteri</code><a href="https://github.com/0"><code>@​0</code></a>.3.2</li> </ul> </li> </ul> <h2>astro@7.0.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17151">#17151</a> <a href="https://github.com/withastro/astro/commit/ccceda31550668dc8422e027475a3d0729c18d33"><code>ccceda3</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Fixes <code>astro dev</code> incorrectly starting in background mode for Warp terminal users. Hybrid environments like Warp are no longer treated as AI agents for auto-background detection.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17158">#17158</a> <a href="https://github.com/withastro/astro/commit/164df87aee81c1ca5cd38514301673a40e9975c7"><code>164df87</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes <code>astro dev --background --host</code> not listing the network addresses. The background server start output and <code>astro dev status</code> now show every exposed network URL, matching the foreground dev server.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17141">#17141</a> <a href="https://github.com/withastro/astro/commit/d785b9d6d2f014995ec8cb09ed5b50c49d9054d3"><code>d785b9d</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes responsive image CSS overriding user styles defined inside CSS <code>@layer</code> blocks. The generated image styles are now wrapped in <code>@layer astro.images</code>, ensuring they have lower cascade priority than user-defined layers.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17150">#17150</a> <a href="https://github.com/withastro/astro/commit/1a613868c2dca8d8dd8cef99fd8e4b5cde0ba1e7"><code>1a61386</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Fixes <code>astro dev --background</code> failing on Windows with &quot;Failed to spawn background dev server process&quot;</p> </li> </ul> <h2>astro@7.0.0</h2> <h3>Major Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/15819">#15819</a> <a href="https://github.com/withastro/astro/commit/cafec4e23365061491103dfce2e889a15cf86f27"><code>cafec4e</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Upgrade to Vite v8</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16965">#16965</a> <a href="https://github.com/withastro/astro/commit/57ead0d5938e5988e3f896f3d6f8ef4516c4923f"><code>57ead0d</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Makes <code>'jsx'</code> the default value for <code>compressHTML</code></p> <p>Astro now strips whitespace from your HTML using JSX rules by default, the same way frameworks like React do. Whitespace and line breaks around elements are removed, but meaningful whitespace within a single line — like a space between two inline elements — is preserved. To keep a space that would otherwise be removed, write it explicitly in your source, for example with <code>{&quot; &quot;}</code>.</p> <p>This can change rendered output where whitespace between inline elements was previously meaningful. To keep Astro's earlier behavior, set <code>compressHTML: true</code> for HTML-aware compression, or <code>compressHTML: false</code> to preserve all whitespace.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16610">#16610</a> <a href="https://github.com/withastro/astro/commit/c63e7e4411db8fc652c84ce82b45f53e951eb6fa"><code>c63e7e4</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Adds background dev server management for AI coding agents.</p> <p>When an AI coding agent is detected, <code>astro dev</code> now automatically starts the dev server as a detached background process. This prevents the dev server from blocking the agent's terminal and allows it to continue working while the server runs.</p> <p>A lock file (<code>.astro/dev.json</code>) is written when the dev server starts, recording the server's URL, port, and PID. This prevents duplicate servers from being started for the same project.</p> <h4>New flag and subcommands</h4> <ul> <li><code>astro dev --background</code> — Start the dev server as a background process (this is what runs automatically when an agent is detected).</li> <li><code>astro dev stop</code> — Stop a running background dev server.</li> <li><code>astro dev status</code> — Check if a dev server is running and display its URL, PID, and uptime.</li> <li><code>astro dev logs</code> — View logs from a background dev server. Use <code>--follow</code> (<code>-f</code>) to stream new output as it's written.</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md">astro's changelog</a>.</em></p> <blockquote> <h2>7.0.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17189">#17189</a> <a href="https://github.com/withastro/astro/commit/24d2c9ec71ffcceb853762bb1295e1d893bdd4d6"><code>24d2c9e</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes a bug where an error thrown inside one route's <code>getStaticPaths()</code> would prevent other valid routes from being matched in dev mode</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16932">#16932</a> <a href="https://github.com/withastro/astro/commit/8f4a3db415f227b5c742c16ad18f764e952f91bd"><code>8f4a3db</code></a> Thanks <a href="https://github.com/fkatsuhiro"><code>@​fkatsuhiro</code></a>! - Fixes HMR for action files during development. Editing files in <code>src/actions/</code> now takes effect on the next request without requiring a dev server restart.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17087">#17087</a> <a href="https://github.com/withastro/astro/commit/fb0ab02f019efd222e6976d72bcd618fd915bc1d"><code>fb0ab02</code></a> Thanks <a href="https://github.com/jp-knj"><code>@​jp-knj</code></a>! - Fixes localized custom error pages in i18n projects so routes like <code>/pt/404</code> are used for missing localized pages and return the correct status code</p> </li> </ul> <h2>7.0.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/withastro/astro/commit/3b5e994738cf58c9eed0774ce779b685c31a3a5c"><code>3b5e994</code></a>]: <ul> <li><code>@​astrojs/markdown-satteri</code><a href="https://github.com/0"><code>@​0</code></a>.3.2</li> </ul> </li> </ul> <h2>7.0.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17151">#17151</a> <a href="https://github.com/withastro/astro/commit/ccceda31550668dc8422e027475a3d0729c18d33"><code>ccceda3</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Fixes <code>astro dev</code> incorrectly starting in background mode for Warp terminal users. Hybrid environments like Warp are no longer treated as AI agents for auto-background detection.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17158">#17158</a> <a href="https://github.com/withastro/astro/commit/164df87aee81c1ca5cd38514301673a40e9975c7"><code>164df87</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes <code>astro dev --background --host</code> not listing the network addresses. The background server start output and <code>astro dev status</code> now show every exposed network URL, matching the foreground dev server.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17141">#17141</a> <a href="https://github.com/withastro/astro/commit/d785b9d6d2f014995ec8cb09ed5b50c49d9054d3"><code>d785b9d</code></a> Thanks <a href="https://github.com/astrobot-houston"><code>@​astrobot-houston</code></a>! - Fixes responsive image CSS overriding user styles defined inside CSS <code>@layer</code> blocks. The generated image styles are now wrapped in <code>@layer astro.images</code>, ensuring they have lower cascade priority than user-defined layers.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/17150">#17150</a> <a href="https://github.com/withastro/astro/commit/1a613868c2dca8d8dd8cef99fd8e4b5cde0ba1e7"><code>1a61386</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Fixes <code>astro dev --background</code> failing on Windows with &quot;Failed to spawn background dev server process&quot;</p> </li> </ul> <h2>7.0.0</h2> <h3>Major Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/15819">#15819</a> <a href="https://github.com/withastro/astro/commit/cafec4e23365061491103dfce2e889a15cf86f27"><code>cafec4e</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Upgrade to Vite v8</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16965">#16965</a> <a href="https://github.com/withastro/astro/commit/57ead0d5938e5988e3f896f3d6f8ef4516c4923f"><code>57ead0d</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Makes <code>'jsx'</code> the default value for <code>compressHTML</code></p> <p>Astro now strips whitespace from your HTML using JSX rules by default, the same way frameworks like React do. Whitespace and line breaks around elements are removed, but meaningful whitespace within a single line — like a space between two inline elements — is preserved. To keep a space that would otherwise be removed, write it explicitly in your source, for example with <code>{&quot; &quot;}</code>.</p> <p>This can change rendered output where whitespace between inline elements was previously meaningful. To keep Astro's earlier behavior, set <code>compressHTML: true</code> for HTML-aware compression, or <code>compressHTML: false</code> to preserve all whitespace.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/16610">#16610</a> <a href="https://github.com/withastro/astro/commit/c63e7e4411db8fc652c84ce82b45f53e951eb6fa"><code>c63e7e4</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Adds background dev server management for AI coding agents.</p> <p>When an AI coding agent is detected, <code>astro dev</code> now automatically starts the dev server as a detached background process. This prevents the dev server from blocking the agent's terminal and allows it to continue working while the server runs.</p> <p>A lock file (<code>.astro/dev.json</code>) is written when the dev server starts, recording the server's URL, port, and PID. This prevents duplicate servers from being started for the same project.</p> <h4>New flag and subcommands</h4> <ul> <li><code>astro dev --background</code> — Start the dev server as a background process (this is what runs automatically when an agent is detected).</li> <li><code>astro dev stop</code> — Stop a running background dev server.</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/astro/commit/f7283e07c8c4f3ffca28e5e0621e126c7ff31eb9"><code>f7283e0</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/17180">#17180</a>)</li> <li><a href="https://github.com/withastro/astro/commit/24d2c9ec71ffcceb853762bb1295e1d893bdd4d6"><code>24d2c9e</code></a> Fix getStaticPaths error in one route blocking other matching routes in dev (...</li> <li><a href="https://github.com/withastro/astro/commit/efdd4d17814c90b51a1e99952138e67227d58b1b"><code>efdd4d1</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/fb0ab02f019efd222e6976d72bcd618fd915bc1d"><code>fb0ab02</code></a> fix: localized error route status handling (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/17087">#17087</a>)</li> <li><a href="https://github.com/withastro/astro/commit/8f4a3db415f227b5c742c16ad18f764e952f91bd"><code>8f4a3db</code></a> Fix HMR for action files during development (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/16932">#16932</a>)</li> <li><a href="https://github.com/withastro/astro/commit/fa6428a5aa56c24d9310453c2b3af06de8b55cbf"><code>fa6428a</code></a> fix(dev): wire AbortController to socket close so request.signal reflects cli...</li> <li><a href="https://github.com/withastro/astro/commit/ccd1e37e62903592f0c4f622fe3773b69e681866"><code>ccd1e37</code></a> chore(head): remove meta title tag in favor of standard title tag (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/17178">#17178</a>)</li> <li><a href="https://github.com/withastro/astro/commit/dc260dae5a6d4bff23f30945e984ae4b2b377d96"><code>dc260da</code></a> Remove legacy &quot;X-UA-Compatible&quot; meta tags (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/17162">#17162</a>)</li> <li><a href="https://github.com/withastro/astro/commit/74f5f24c4c3803b1409ec7ff9c775c21158ebf24"><code>74f5f24</code></a> chore: update Vite to 8.1 (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/17160">#17160</a>)</li> <li><a href="https://github.com/withastro/astro/commit/a39b7a876648ff3b2caeaa4d518ac3cf7f38454a"><code>a39b7a8</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/17167">#17167</a>)</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@7.0.3/packages/astro">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will 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 version` will 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 dependency` will 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](https://github.com/TimCane/amandasemporium.co.uk/network/alerts). </details>
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin dependabot/npm_and_yarn/multi-9c0e0ef934:dependabot/npm_and_yarn/multi-9c0e0ef934
git switch dependabot/npm_and_yarn/multi-9c0e0ef934

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff dependabot/npm_and_yarn/multi-9c0e0ef934
git switch dependabot/npm_and_yarn/multi-9c0e0ef934
git rebase master
git switch master
git merge --ff-only dependabot/npm_and_yarn/multi-9c0e0ef934
git switch dependabot/npm_and_yarn/multi-9c0e0ef934
git rebase master
git switch master
git merge --no-ff dependabot/npm_and_yarn/multi-9c0e0ef934
git switch master
git merge --squash dependabot/npm_and_yarn/multi-9c0e0ef934
git switch master
git merge --ff-only dependabot/npm_and_yarn/multi-9c0e0ef934
git switch master
git merge dependabot/npm_and_yarn/multi-9c0e0ef934
git push origin master
Sign in to join this conversation.
No description provided.