diff --git a/.changeset/all-loops-deny.md b/.changeset/all-loops-deny.md
deleted file mode 100644
index 96d0db76dbac..000000000000
--- a/.changeset/all-loops-deny.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-'astro': minor
----
-
-Updates the `NodeApp.match()` function in the Adapter API to accept a second, optional parameter to allow adapter authors to add headers to static, prerendered pages.
-
-`NodeApp.match(request)` currently checks whether there is a route that matches the given `Request`. If there is a prerendered route, the function returns `undefined`, because static routes are already rendered and their headers cannot be updated.
-
-When the new, optional boolean parameter is passed (e.g. `NodeApp.match(request, true)`), Astro will return the first matched route, even when it's a prerendered route. This allows your adapter to now access static routes and provides the opportunity to set headers for these pages, for example, to implement a Content Security Policy (CSP).
diff --git a/.changeset/cold-cooks-battle.md b/.changeset/cold-cooks-battle.md
deleted file mode 100644
index 451aa2bab09a..000000000000
--- a/.changeset/cold-cooks-battle.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-'@astrojs/node': minor
----
-
-Adds a new experimental configuration option `experimentalDisableStreaming` to allow you to opt out of Astro's default [HTML streaming](https://docs.astro.build/en/guides/on-demand-rendering/#html-streaming) for pages rendered on demand.
-
-HTML streaming helps with performance and generally provides a better visitor experience. In most cases, disabling streaming is not recommended.
-
-However, when you need to disable HTML streaming (e.g. your host only supports non-streamed HTML caching at the CDN level), you can now opt out of the default behavior:
-
-```diff
-import { defineConfig } from 'astro/config';
-import node from '@astrojs/node';
-
-export default defineConfig({
- adapter: node({
- mode: 'standalone',
-+ experimentalDisableStreaming: true,
- }),
-});
-```
diff --git a/.changeset/full-hoops-hear.md b/.changeset/full-hoops-hear.md
deleted file mode 100644
index 7535c5e1ab39..000000000000
--- a/.changeset/full-hoops-hear.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@astrojs/netlify': patch
-'@astrojs/vercel': patch
----
-
-Fixes the internal implementation of the new feature `experimentalStaticHeaders`, where dynamic routes
-were mapped to use always the same header.
diff --git a/.changeset/great-sloths-rule.md b/.changeset/great-sloths-rule.md
deleted file mode 100644
index 8a70e376c7b4..000000000000
--- a/.changeset/great-sloths-rule.md
+++ /dev/null
@@ -1,27 +0,0 @@
----
-'astro': patch
----
-
-Fixes a bug where server islands wouldn't be correctly rendered when they are rendered inside fragments.
-
-Now the following examples work as expected:
-
-```astro
----
-import { Cart } from "../components/Cart.astro";
----
-
-<>
-
->
-
-
-
-
-
- Not working
-
-
-
-
-```
diff --git a/.changeset/purple-spoons-jog.md b/.changeset/purple-spoons-jog.md
deleted file mode 100644
index 0e69da0ed12c..000000000000
--- a/.changeset/purple-spoons-jog.md
+++ /dev/null
@@ -1,22 +0,0 @@
----
-'@astrojs/node': minor
----
-
-Adds support for the [experimental static headers Astro feature](https://docs.astro.build/en/reference/adapter-reference/#experimentalstaticheaders).
-
-When the feature is enabled via the option `experimentalStaticHeaders`, and [experimental Content Security Policy](https://docs.astro.build/en/reference/experimental-flags/csp/) is enabled, the adapter will generate `Response` headers for static pages, which allows support for CSP directives that are not supported inside a `` tag (e.g. `frame-ancestors`).
-
-```js
-import { defineConfig } from "astro/config";
-import node from "@astrojs/node";
-
-export default defineConfig({
- adapter: node({
- mode: "standalone",
- experimentalStaticHeaders: true
- }),
- experimental: {
- cps: true
- }
-})
-```
diff --git a/.changeset/rare-spies-join.md b/.changeset/rare-spies-join.md
deleted file mode 100644
index 954cd1c95fea..000000000000
--- a/.changeset/rare-spies-join.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes a bug where i18n fallback rewrites didn't work in dynamic pages.
diff --git a/examples/basics/package.json b/examples/basics/package.json
index bff3147918f8..8ac20a054674 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.10.2"
+ "astro": "^5.11.0"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index f857fd346997..8bcbaa5edfd1 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -13,7 +13,7 @@
"@astrojs/mdx": "^4.3.0",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.4.1",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"sharp": "^0.34.2"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index 4f55a37db9b7..00cb810a4cc4 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.10.2"
+ "astro": "^5.11.0"
},
"peerDependencies": {
"astro": "^4.0.0 || ^5.0.0"
diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json
index e6d5a81ea4c7..bdb678029e62 100644
--- a/examples/container-with-vitest/package.json
+++ b/examples/container-with-vitest/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/react": "^4.3.0",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vitest": "^3.1.1"
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 054f94469c27..7c15876a1c80 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -13,6 +13,6 @@
"@astrojs/alpinejs": "^0.4.8",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.14.9",
- "astro": "^5.10.2"
+ "astro": "^5.11.0"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 7cebe2408563..d10861b2e904 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -17,7 +17,7 @@
"@astrojs/vue": "^5.1.0",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"preact": "^10.26.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 9f4b18e1e0a2..81defd14e84a 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.1.0",
"@preact/signals": "^2.0.3",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"preact": "^10.26.5"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index a50556ef103a..4401f4b443b1 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -13,7 +13,7 @@
"@astrojs/react": "^4.3.0",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 72023e92005d..391b7f916ea5 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/solid-js": "^5.1.0",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"solid-js": "^1.9.5"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index a495628fbc7b..5abdbc283b47 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/svelte": "^7.1.0",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"svelte": "^5.25.7"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 253f394d37a8..830d7b73cbc6 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/vue": "^5.1.0",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"vue": "^3.5.13"
}
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 65b0176b80dc..e8ef48a58d08 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/node": "^9.2.2",
- "astro": "^5.10.2"
+ "@astrojs/node": "^9.3.0",
+ "astro": "^5.11.0"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 348d7fec0f7a..9897d2cb4c32 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.10.2"
+ "astro": "^5.11.0"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 8b3cac4c6d1f..5fdb651497db 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.10.2"
+ "astro": "^5.11.0"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 3a14af31a28b..4cf6e675f96a 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.10.2"
+ "astro": "^5.11.0"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 472ee4a79ada..4176c6a548f7 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -11,9 +11,9 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "@astrojs/node": "^9.2.2",
+ "@astrojs/node": "^9.3.0",
"@astrojs/svelte": "^7.1.0",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"svelte": "^5.25.7"
}
}
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index 12c4e19f738c..37372e006a66 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -9,7 +9,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"sass": "^1.86.3",
"sharp": "^0.33.3"
}
diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json
index 475f81de58ac..7393f740117d 100644
--- a/examples/toolbar-app/package.json
+++ b/examples/toolbar-app/package.json
@@ -16,6 +16,6 @@
},
"devDependencies": {
"@types/node": "^18.17.8",
- "astro": "^5.10.2"
+ "astro": "^5.11.0"
}
}
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index f2a9f766011d..1f4daf6c3537 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/markdoc": "^0.15.0",
- "astro": "^5.10.2"
+ "astro": "^5.11.0"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 6ae0aecb2a6f..c869320703d5 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/mdx": "^4.3.0",
"@astrojs/preact": "^4.1.0",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"preact": "^10.26.5"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index d92bd41543a8..4730afa4c566 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.1.0",
"@nanostores/preact": "^0.5.2",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"nanostores": "^0.11.4",
"preact": "^10.26.5"
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 5493e2d0fbc3..30bf80b89562 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -13,7 +13,7 @@
"@astrojs/mdx": "^4.3.0",
"@tailwindcss/vite": "^4.1.3",
"@types/canvas-confetti": "^1.9.0",
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"canvas-confetti": "^1.9.3",
"tailwindcss": "^4.1.3"
}
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index 1787c6e9fd1f..654aeeea2d86 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -11,7 +11,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^5.10.2",
+ "astro": "^5.11.0",
"vitest": "^3.1.1"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 4c7ca051ad76..11172b4aa008 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,39 @@
# astro
+## 5.11.0
+
+### Minor Changes
+
+- [#13972](https://github.com/withastro/astro/pull/13972) [`db8f8be`](https://github.com/withastro/astro/commit/db8f8becc9508fa4f292d45c14af92ba59c414d1) Thanks [@ematipico](https://github.com/ematipico)! - Updates the `NodeApp.match()` function in the Adapter API to accept a second, optional parameter to allow adapter authors to add headers to static, prerendered pages.
+
+ `NodeApp.match(request)` currently checks whether there is a route that matches the given `Request`. If there is a prerendered route, the function returns `undefined`, because static routes are already rendered and their headers cannot be updated.
+
+ When the new, optional boolean parameter is passed (e.g. `NodeApp.match(request, true)`), Astro will return the first matched route, even when it's a prerendered route. This allows your adapter to now access static routes and provides the opportunity to set headers for these pages, for example, to implement a Content Security Policy (CSP).
+
+### Patch Changes
+
+- [#14029](https://github.com/withastro/astro/pull/14029) [`42562f9`](https://github.com/withastro/astro/commit/42562f9d7b0bef173aca631f9d59e1bf000133c5) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where server islands wouldn't be correctly rendered when they are rendered inside fragments.
+
+ Now the following examples work as expected:
+
+ ```astro
+ ---
+ import { Cart } from '../components/Cart.astro';
+ ---
+
+ <>
+
+ >
+
+
+
+ Not working
+
+
+ ```
+
+- [#14017](https://github.com/withastro/astro/pull/14017) [`8d238bc`](https://github.com/withastro/astro/commit/8d238bcb21f1d3863d4e86bf0064d98390936208) Thanks [@dmgawel](https://github.com/dmgawel)! - Fixes a bug where i18n fallback rewrites didn't work in dynamic pages.
+
## 5.10.2
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index c0daee10b727..71189d3bd11a 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "5.10.2",
+ "version": "5.11.0",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md
index 4d986f771cc5..6ffc8098d271 100644
--- a/packages/integrations/netlify/CHANGELOG.md
+++ b/packages/integrations/netlify/CHANGELOG.md
@@ -1,5 +1,14 @@
# @astrojs/netlify
+## 6.4.1
+
+### Patch Changes
+
+- [#13972](https://github.com/withastro/astro/pull/13972) [`db8f8be`](https://github.com/withastro/astro/commit/db8f8becc9508fa4f292d45c14af92ba59c414d1) Thanks [@ematipico](https://github.com/ematipico)! - Fixes the internal implementation of the new feature `experimentalStaticHeaders`, where dynamic routes
+ were mapped to use always the same header.
+- Updated dependencies []:
+ - @astrojs/underscore-redirects@1.0.0
+
## 6.4.0
### Minor Changes
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index b4f245e12b31..c3cb34f87fbd 100644
--- a/packages/integrations/netlify/package.json
+++ b/packages/integrations/netlify/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/netlify",
"description": "Deploy your site to Netlify",
- "version": "6.4.0",
+ "version": "6.4.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md
index 7a4bdad98638..2118781a2906 100644
--- a/packages/integrations/node/CHANGELOG.md
+++ b/packages/integrations/node/CHANGELOG.md
@@ -1,5 +1,46 @@
# @astrojs/node
+## 9.3.0
+
+### Minor Changes
+
+- [#14012](https://github.com/withastro/astro/pull/14012) [`a125a14`](https://github.com/withastro/astro/commit/a125a14c51c8f66fef0b582e5daf90ff02fce821) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds a new experimental configuration option `experimentalDisableStreaming` to allow you to opt out of Astro's default [HTML streaming](https://docs.astro.build/en/guides/on-demand-rendering/#html-streaming) for pages rendered on demand.
+
+ HTML streaming helps with performance and generally provides a better visitor experience. In most cases, disabling streaming is not recommended.
+
+ However, when you need to disable HTML streaming (e.g. your host only supports non-streamed HTML caching at the CDN level), you can now opt out of the default behavior:
+
+ ```diff
+ import { defineConfig } from 'astro/config';
+ import node from '@astrojs/node';
+
+ export default defineConfig({
+ adapter: node({
+ mode: 'standalone',
+ + experimentalDisableStreaming: true,
+ }),
+ });
+ ```
+
+- [#13972](https://github.com/withastro/astro/pull/13972) [`db8f8be`](https://github.com/withastro/astro/commit/db8f8becc9508fa4f292d45c14af92ba59c414d1) Thanks [@ematipico](https://github.com/ematipico)! - Adds support for the [experimental static headers Astro feature](https://docs.astro.build/en/reference/adapter-reference/#experimentalstaticheaders).
+
+ When the feature is enabled via the option `experimentalStaticHeaders`, and [experimental Content Security Policy](https://docs.astro.build/en/reference/experimental-flags/csp/) is enabled, the adapter will generate `Response` headers for static pages, which allows support for CSP directives that are not supported inside a `` tag (e.g. `frame-ancestors`).
+
+ ```js
+ import { defineConfig } from 'astro/config';
+ import node from '@astrojs/node';
+
+ export default defineConfig({
+ adapter: node({
+ mode: 'standalone',
+ experimentalStaticHeaders: true,
+ }),
+ experimental: {
+ cps: true,
+ },
+ });
+ ```
+
## 9.2.2
### Patch Changes
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index 2020307fd983..39a9934675c8 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": "9.2.2",
+ "version": "9.3.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md
index d3a5ee7847af..36ca63c36b8d 100644
--- a/packages/integrations/vercel/CHANGELOG.md
+++ b/packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,12 @@
# @astrojs/vercel
+## 8.2.1
+
+### Patch Changes
+
+- [#13972](https://github.com/withastro/astro/pull/13972) [`db8f8be`](https://github.com/withastro/astro/commit/db8f8becc9508fa4f292d45c14af92ba59c414d1) Thanks [@ematipico](https://github.com/ematipico)! - Fixes the internal implementation of the new feature `experimentalStaticHeaders`, where dynamic routes
+ were mapped to use always the same header.
+
## 8.2.0
### Minor Changes
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index d7e8d22abf0d..70cfef220bae 100644
--- a/packages/integrations/vercel/package.json
+++ b/packages/integrations/vercel/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
- "version": "8.2.0",
+ "version": "8.2.1",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a02e53cdd405..d2356d77389a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -145,7 +145,7 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
examples/blog:
@@ -160,7 +160,7 @@ importers:
specifier: ^3.4.1
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
sharp:
specifier: ^0.34.2
@@ -169,7 +169,7 @@ importers:
examples/component:
devDependencies:
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
examples/container-with-vitest:
@@ -178,7 +178,7 @@ importers:
specifier: ^4.3.0
version: link:../../packages/integrations/react
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -209,7 +209,7 @@ importers:
specifier: ^3.14.9
version: 3.14.9
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
examples/framework-multiple:
@@ -236,7 +236,7 @@ importers:
specifier: ^18.3.6
version: 18.3.7(@types/react@18.3.23)
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
preact:
specifier: ^10.26.5
@@ -266,7 +266,7 @@ importers:
specifier: ^2.0.3
version: 2.2.0(preact@10.26.9)
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
preact:
specifier: ^10.26.5
@@ -284,7 +284,7 @@ importers:
specifier: ^18.3.6
version: 18.3.7(@types/react@18.3.23)
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -299,7 +299,7 @@ importers:
specifier: ^5.1.0
version: link:../../packages/integrations/solid
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
solid-js:
specifier: ^1.9.5
@@ -311,7 +311,7 @@ importers:
specifier: ^7.1.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
svelte:
specifier: ^5.25.7
@@ -323,7 +323,7 @@ importers:
specifier: ^5.1.0
version: link:../../packages/integrations/vue
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
vue:
specifier: ^3.5.13
@@ -332,40 +332,40 @@ importers:
examples/hackernews:
dependencies:
'@astrojs/node':
- specifier: ^9.2.2
+ specifier: ^9.3.0
version: link:../../packages/integrations/node
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
examples/minimal:
dependencies:
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
examples/ssr:
dependencies:
'@astrojs/node':
- specifier: ^9.2.2
+ specifier: ^9.3.0
version: link:../../packages/integrations/node
'@astrojs/svelte':
specifier: ^7.1.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
svelte:
specifier: ^5.25.7
@@ -374,7 +374,7 @@ importers:
examples/starlog:
dependencies:
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
sass:
specifier: ^1.86.3
@@ -389,7 +389,7 @@ importers:
specifier: ^18.17.8
version: 18.19.50
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
examples/with-markdoc:
@@ -398,7 +398,7 @@ importers:
specifier: ^0.15.0
version: link:../../packages/integrations/markdoc
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
examples/with-mdx:
@@ -410,7 +410,7 @@ importers:
specifier: ^4.1.0
version: link:../../packages/integrations/preact
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
preact:
specifier: ^10.26.5
@@ -425,7 +425,7 @@ importers:
specifier: ^0.5.2
version: 0.5.2(nanostores@0.11.4)(preact@10.26.9)
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
nanostores:
specifier: ^0.11.4
@@ -446,7 +446,7 @@ importers:
specifier: ^1.9.0
version: 1.9.0
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
canvas-confetti:
specifier: ^1.9.3
@@ -458,7 +458,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^5.10.2
+ specifier: ^5.11.0
version: link:../../packages/astro
vitest:
specifier: ^3.1.1