From 0123bff38a319db2a67125cd916f229b81f6438f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 12:12:58 +0000 Subject: [PATCH] [ci] release --- .changeset/silver-radios-smile.md | 5 -- .changeset/twilight-shadows-dance.md | 12 ---- examples/basics/package.json | 2 +- examples/blog/package.json | 4 +- examples/component/package.json | 2 +- examples/container-with-vitest/package.json | 4 +- examples/framework-alpine/package.json | 2 +- examples/framework-multiple/package.json | 12 ++-- examples/framework-preact/package.json | 4 +- examples/framework-react/package.json | 4 +- examples/framework-solid/package.json | 4 +- examples/framework-svelte/package.json | 4 +- examples/framework-vue/package.json | 4 +- examples/hackernews/package.json | 2 +- examples/integration/package.json | 2 +- examples/minimal/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 4 +- examples/starlog/package.json | 2 +- examples/toolbar-app/package.json | 2 +- examples/with-markdoc/package.json | 2 +- examples/with-mdx/package.json | 6 +- examples/with-nanostores/package.json | 4 +- examples/with-tailwindcss/package.json | 4 +- examples/with-vitest/package.json | 2 +- packages/astro/CHANGELOG.md | 8 +++ packages/astro/package.json | 2 +- packages/db/CHANGELOG.md | 6 ++ packages/db/package.json | 2 +- packages/integrations/mdx/CHANGELOG.md | 6 ++ packages/integrations/mdx/package.json | 2 +- packages/integrations/preact/CHANGELOG.md | 6 ++ packages/integrations/preact/package.json | 2 +- packages/integrations/react/CHANGELOG.md | 6 ++ packages/integrations/react/package.json | 2 +- packages/integrations/solid/CHANGELOG.md | 6 ++ packages/integrations/solid/package.json | 2 +- packages/integrations/svelte/CHANGELOG.md | 6 ++ packages/integrations/svelte/package.json | 2 +- packages/integrations/vue/CHANGELOG.md | 6 ++ packages/integrations/vue/package.json | 2 +- pnpm-lock.yaml | 80 ++++++++++----------- 42 files changed, 138 insertions(+), 105 deletions(-) delete mode 100644 .changeset/silver-radios-smile.md delete mode 100644 .changeset/twilight-shadows-dance.md diff --git a/.changeset/silver-radios-smile.md b/.changeset/silver-radios-smile.md deleted file mode 100644 index 73d7d30ddd02..000000000000 --- a/.changeset/silver-radios-smile.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a leak of server runtime code when importing SVGs in client-side code. Previously, when importing an SVG file in client code, Astro could end up adding code for rendering SVGs on the server to the client bundle. diff --git a/.changeset/twilight-shadows-dance.md b/.changeset/twilight-shadows-dance.md deleted file mode 100644 index 05c802731015..000000000000 --- a/.changeset/twilight-shadows-dance.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'astro': patch -'@astrojs/db': patch -'@astrojs/mdx': patch -'@astrojs/preact': patch -'@astrojs/react': patch -'@astrojs/solid-js': patch -'@astrojs/svelte': patch -'@astrojs/vue': patch ---- - -Updates `vite` version to fix CVE diff --git a/examples/basics/package.json b/examples/basics/package.json index 1758d85ac75c..7ca2f414c4af 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.15.1" + "astro": "^5.15.2" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 1df61bfc3475..ba11eb46f7c3 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.3.8", + "@astrojs/mdx": "^4.3.9", "@astrojs/rss": "^4.0.13", "@astrojs/sitemap": "^3.6.0", - "astro": "^5.15.1", + "astro": "^5.15.2", "sharp": "^0.34.3" } } diff --git a/examples/component/package.json b/examples/component/package.json index 7c4ec6b32334..19b90cda6f30 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.15.1" + "astro": "^5.15.2" }, "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 c5addb101bdf..4192a642e803 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -11,8 +11,8 @@ "test": "vitest run" }, "dependencies": { - "@astrojs/react": "^4.4.0", - "astro": "^5.15.1", + "@astrojs/react": "^4.4.1", + "astro": "^5.15.2", "react": "^18.3.1", "react-dom": "^18.3.1", "vitest": "^3.2.4" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index a632f3456ef8..1876146a7b83 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -13,6 +13,6 @@ "@astrojs/alpinejs": "^0.4.9", "@types/alpinejs": "^3.13.11", "alpinejs": "^3.15.0", - "astro": "^5.15.1" + "astro": "^5.15.2" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 565a86bf4644..d233e2da58f6 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -10,14 +10,14 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.1.1", - "@astrojs/react": "^4.4.0", - "@astrojs/solid-js": "^5.1.1", - "@astrojs/svelte": "^7.2.0", - "@astrojs/vue": "^5.1.1", + "@astrojs/preact": "^4.1.2", + "@astrojs/react": "^4.4.1", + "@astrojs/solid-js": "^5.1.2", + "@astrojs/svelte": "^7.2.1", + "@astrojs/vue": "^5.1.2", "@types/react": "^18.3.26", "@types/react-dom": "^18.3.7", - "astro": "^5.15.1", + "astro": "^5.15.2", "preact": "^10.27.2", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 052c57cab35c..cc21fc459b96 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.1.1", + "@astrojs/preact": "^4.1.2", "@preact/signals": "^2.3.2", - "astro": "^5.15.1", + "astro": "^5.15.2", "preact": "^10.27.2" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 4f7251921067..f214e4b174ce 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/react": "^4.4.0", + "@astrojs/react": "^4.4.1", "@types/react": "^18.3.26", "@types/react-dom": "^18.3.7", - "astro": "^5.15.1", + "astro": "^5.15.2", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 841ac800e2c7..e7ad66dc164a 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/solid-js": "^5.1.1", - "astro": "^5.15.1", + "@astrojs/solid-js": "^5.1.2", + "astro": "^5.15.2", "solid-js": "^1.9.9" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index a6269ac174c6..b0d37f4e26a5 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^7.2.0", - "astro": "^5.15.1", + "@astrojs/svelte": "^7.2.1", + "astro": "^5.15.2", "svelte": "^5.41.3" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index e944a0430a90..5c2dc15851c9 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/vue": "^5.1.1", - "astro": "^5.15.1", + "@astrojs/vue": "^5.1.2", + "astro": "^5.15.2", "vue": "^3.5.22" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index abac477b6209..2cba205edb0e 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.5.0", - "astro": "^5.15.1" + "astro": "^5.15.2" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index e7fade088af1..511d96d11e58 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.15.1" + "astro": "^5.15.2" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 7752e662cd16..ddda18dd9b53 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.15.1" + "astro": "^5.15.2" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index dcb2ff695eb6..144178a753d4 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.15.1" + "astro": "^5.15.2" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 5465865f39aa..f62c00e6611c 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@astrojs/node": "^9.5.0", - "@astrojs/svelte": "^7.2.0", - "astro": "^5.15.1", + "@astrojs/svelte": "^7.2.1", + "astro": "^5.15.2", "svelte": "^5.41.3" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index 896561fb93b1..fa539b1aab30 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.15.1", + "astro": "^5.15.2", "sass": "^1.93.2", "sharp": "^0.34.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 2c3f349588af..687d81ddb51d 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.15.1" + "astro": "^5.15.2" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 5640b33165d0..4b82a1c4e036 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/markdoc": "^0.15.8", - "astro": "^5.15.1" + "astro": "^5.15.2" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 354cdb3ce294..5f58842acf91 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.3.8", - "@astrojs/preact": "^4.1.1", - "astro": "^5.15.1", + "@astrojs/mdx": "^4.3.9", + "@astrojs/preact": "^4.1.2", + "astro": "^5.15.2", "preact": "^10.27.2" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index d36c07dfe156..8ce4a7ac583a 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.1.1", + "@astrojs/preact": "^4.1.2", "@nanostores/preact": "^0.5.2", - "astro": "^5.15.1", + "astro": "^5.15.2", "nanostores": "^0.11.4", "preact": "^10.27.2" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index b830f14343b1..12fd8baaf3fe 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.3.8", + "@astrojs/mdx": "^4.3.9", "@tailwindcss/vite": "^4.1.16", "@types/canvas-confetti": "^1.9.0", - "astro": "^5.15.1", + "astro": "^5.15.2", "canvas-confetti": "^1.9.3", "tailwindcss": "^4.1.16" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 95a5d1b59a1e..6636684ccc60 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.15.1", + "astro": "^5.15.2", "vitest": "^3.2.4" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 64ad7a2371ce..937cb98aeb81 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,13 @@ # astro +## 5.15.2 + +### Patch Changes + +- [#14623](https://github.com/withastro/astro/pull/14623) [`c5fe295`](https://github.com/withastro/astro/commit/c5fe295c41c8bc3b9f85727c3635e9ddc67f0030) Thanks [@delucis](https://github.com/delucis)! - Fixes a leak of server runtime code when importing SVGs in client-side code. Previously, when importing an SVG file in client code, Astro could end up adding code for rendering SVGs on the server to the client bundle. + +- [#14621](https://github.com/withastro/astro/pull/14621) [`e3175d9`](https://github.com/withastro/astro/commit/e3175d9ccbf070150ab2229b2564ca0b12a86c30) Thanks [@GameRoMan](https://github.com/GameRoMan)! - Updates `vite` version to fix CVE + ## 5.15.1 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index f34a0d3a7c5b..03b7a8f83e24 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "5.15.1", + "version": "5.15.2", "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/db/CHANGELOG.md b/packages/db/CHANGELOG.md index 32340e92042b..295982d97f49 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/db +## 0.18.2 + +### Patch Changes + +- [#14621](https://github.com/withastro/astro/pull/14621) [`e3175d9`](https://github.com/withastro/astro/commit/e3175d9ccbf070150ab2229b2564ca0b12a86c30) Thanks [@GameRoMan](https://github.com/GameRoMan)! - Updates `vite` version to fix CVE + ## 0.18.1 ### Patch Changes diff --git a/packages/db/package.json b/packages/db/package.json index e49281f02351..28fab719b466 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/db", - "version": "0.18.1", + "version": "0.18.2", "description": "Add libSQL support to your Astro site", "license": "MIT", "repository": { diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index 6f3130262edb..71681b881190 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/mdx +## 4.3.9 + +### Patch Changes + +- [#14621](https://github.com/withastro/astro/pull/14621) [`e3175d9`](https://github.com/withastro/astro/commit/e3175d9ccbf070150ab2229b2564ca0b12a86c30) Thanks [@GameRoMan](https://github.com/GameRoMan)! - Updates `vite` version to fix CVE + ## 4.3.8 ### Patch Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index 8194d922d5b9..09f68b6ebbf0 100644 --- a/packages/integrations/mdx/package.json +++ b/packages/integrations/mdx/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/mdx", "description": "Add support for MDX pages in your Astro site", - "version": "4.3.8", + "version": "4.3.9", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md index 7e568c974163..e2e481ae121c 100644 --- a/packages/integrations/preact/CHANGELOG.md +++ b/packages/integrations/preact/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/preact +## 4.1.2 + +### Patch Changes + +- [#14621](https://github.com/withastro/astro/pull/14621) [`e3175d9`](https://github.com/withastro/astro/commit/e3175d9ccbf070150ab2229b2564ca0b12a86c30) Thanks [@GameRoMan](https://github.com/GameRoMan)! - Updates `vite` version to fix CVE + ## 4.1.1 ### Patch Changes diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index b8ca6e3ab2fe..196d11062e7e 100644 --- a/packages/integrations/preact/package.json +++ b/packages/integrations/preact/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/preact", "description": "Use Preact components within Astro", - "version": "4.1.1", + "version": "4.1.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index 24769bbd23dc..46666a255b00 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/react +## 4.4.1 + +### Patch Changes + +- [#14621](https://github.com/withastro/astro/pull/14621) [`e3175d9`](https://github.com/withastro/astro/commit/e3175d9ccbf070150ab2229b2564ca0b12a86c30) Thanks [@GameRoMan](https://github.com/GameRoMan)! - Updates `vite` version to fix CVE + ## 4.4.0 ### Minor Changes diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index 0bc645c16789..659daef7a4df 100644 --- a/packages/integrations/react/package.json +++ b/packages/integrations/react/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/react", "description": "Use React components within Astro", - "version": "4.4.0", + "version": "4.4.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md index f1a9e05878d3..55807af1fbaf 100644 --- a/packages/integrations/solid/CHANGELOG.md +++ b/packages/integrations/solid/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/solid-js +## 5.1.2 + +### Patch Changes + +- [#14621](https://github.com/withastro/astro/pull/14621) [`e3175d9`](https://github.com/withastro/astro/commit/e3175d9ccbf070150ab2229b2564ca0b12a86c30) Thanks [@GameRoMan](https://github.com/GameRoMan)! - Updates `vite` version to fix CVE + ## 5.1.1 ### Patch Changes diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json index 70cfbbe2ce1d..58ddaab228f9 100644 --- a/packages/integrations/solid/package.json +++ b/packages/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/solid-js", - "version": "5.1.1", + "version": "5.1.2", "description": "Use Solid components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md index 6d80b7abde42..175f1ae80f1e 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/svelte +## 7.2.1 + +### Patch Changes + +- [#14621](https://github.com/withastro/astro/pull/14621) [`e3175d9`](https://github.com/withastro/astro/commit/e3175d9ccbf070150ab2229b2564ca0b12a86c30) Thanks [@GameRoMan](https://github.com/GameRoMan)! - Updates `vite` version to fix CVE + ## 7.2.0 ### Minor Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index b9d96d4189b9..9b0e5d46caaf 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "7.2.0", + "version": "7.2.1", "description": "Use Svelte components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md index 48761587c748..7a23573b50be 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/vue +## 5.1.2 + +### Patch Changes + +- [#14621](https://github.com/withastro/astro/pull/14621) [`e3175d9`](https://github.com/withastro/astro/commit/e3175d9ccbf070150ab2229b2564ca0b12a86c30) Thanks [@GameRoMan](https://github.com/GameRoMan)! - Updates `vite` version to fix CVE + ## 5.1.1 ### Patch Changes diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index 5733288fc527..e5b0dd96027a 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "5.1.1", + "version": "5.1.2", "description": "Use Vue components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e5cd9e061e01..e6511457db5e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -149,13 +149,13 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro examples/blog: dependencies: '@astrojs/mdx': - specifier: ^4.3.8 + specifier: ^4.3.9 version: link:../../packages/integrations/mdx '@astrojs/rss': specifier: ^4.0.13 @@ -164,7 +164,7 @@ importers: specifier: ^3.6.0 version: link:../../packages/integrations/sitemap astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro sharp: specifier: ^0.34.3 @@ -173,16 +173,16 @@ importers: examples/component: devDependencies: astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro examples/container-with-vitest: dependencies: '@astrojs/react': - specifier: ^4.4.0 + specifier: ^4.4.1 version: link:../../packages/integrations/react astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -213,25 +213,25 @@ importers: specifier: ^3.15.0 version: 3.15.0 astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro examples/framework-multiple: dependencies: '@astrojs/preact': - specifier: ^4.1.1 + specifier: ^4.1.2 version: link:../../packages/integrations/preact '@astrojs/react': - specifier: ^4.4.0 + specifier: ^4.4.1 version: link:../../packages/integrations/react '@astrojs/solid-js': - specifier: ^5.1.1 + specifier: ^5.1.2 version: link:../../packages/integrations/solid '@astrojs/svelte': - specifier: ^7.2.0 + specifier: ^7.2.1 version: link:../../packages/integrations/svelte '@astrojs/vue': - specifier: ^5.1.1 + specifier: ^5.1.2 version: link:../../packages/integrations/vue '@types/react': specifier: ^18.3.26 @@ -240,7 +240,7 @@ importers: specifier: ^18.3.7 version: 18.3.7(@types/react@18.3.26) astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro preact: specifier: ^10.27.2 @@ -264,13 +264,13 @@ importers: examples/framework-preact: dependencies: '@astrojs/preact': - specifier: ^4.1.1 + specifier: ^4.1.2 version: link:../../packages/integrations/preact '@preact/signals': specifier: ^2.3.2 version: 2.3.2(preact@10.27.2) astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro preact: specifier: ^10.27.2 @@ -279,7 +279,7 @@ importers: examples/framework-react: dependencies: '@astrojs/react': - specifier: ^4.4.0 + specifier: ^4.4.1 version: link:../../packages/integrations/react '@types/react': specifier: ^18.3.26 @@ -288,7 +288,7 @@ importers: specifier: ^18.3.7 version: 18.3.7(@types/react@18.3.26) astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -300,10 +300,10 @@ importers: examples/framework-solid: dependencies: '@astrojs/solid-js': - specifier: ^5.1.1 + specifier: ^5.1.2 version: link:../../packages/integrations/solid astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro solid-js: specifier: ^1.9.9 @@ -312,10 +312,10 @@ importers: examples/framework-svelte: dependencies: '@astrojs/svelte': - specifier: ^7.2.0 + specifier: ^7.2.1 version: link:../../packages/integrations/svelte astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro svelte: specifier: ^5.41.3 @@ -324,10 +324,10 @@ importers: examples/framework-vue: dependencies: '@astrojs/vue': - specifier: ^5.1.1 + specifier: ^5.1.2 version: link:../../packages/integrations/vue astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro vue: specifier: ^3.5.22 @@ -339,25 +339,25 @@ importers: specifier: ^9.5.0 version: link:../../packages/integrations/node astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro examples/ssr: @@ -366,10 +366,10 @@ importers: specifier: ^9.5.0 version: link:../../packages/integrations/node '@astrojs/svelte': - specifier: ^7.2.0 + specifier: ^7.2.1 version: link:../../packages/integrations/svelte astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro svelte: specifier: ^5.41.3 @@ -378,7 +378,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro sass: specifier: ^1.93.2 @@ -393,7 +393,7 @@ importers: specifier: ^18.17.8 version: 18.19.130 astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro examples/with-markdoc: @@ -402,19 +402,19 @@ importers: specifier: ^0.15.8 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro examples/with-mdx: dependencies: '@astrojs/mdx': - specifier: ^4.3.8 + specifier: ^4.3.9 version: link:../../packages/integrations/mdx '@astrojs/preact': - specifier: ^4.1.1 + specifier: ^4.1.2 version: link:../../packages/integrations/preact astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro preact: specifier: ^10.27.2 @@ -423,13 +423,13 @@ importers: examples/with-nanostores: dependencies: '@astrojs/preact': - specifier: ^4.1.1 + specifier: ^4.1.2 version: link:../../packages/integrations/preact '@nanostores/preact': specifier: ^0.5.2 version: 0.5.2(nanostores@0.11.4)(preact@10.27.2) astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro nanostores: specifier: ^0.11.4 @@ -441,7 +441,7 @@ importers: examples/with-tailwindcss: dependencies: '@astrojs/mdx': - specifier: ^4.3.8 + specifier: ^4.3.9 version: link:../../packages/integrations/mdx '@tailwindcss/vite': specifier: ^4.1.16 @@ -450,7 +450,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.3 @@ -462,7 +462,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^5.15.1 + specifier: ^5.15.2 version: link:../../packages/astro vitest: specifier: ^3.2.4