diff options
45 files changed, 119 insertions, 118 deletions
diff --git a/.changeset/bumpy-sites-ring.md b/.changeset/bumpy-sites-ring.md deleted file mode 100644 index 614481a02..000000000 --- a/.changeset/bumpy-sites-ring.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'astro': patch ---- - -Sets correct response status text for custom error pages - diff --git a/.changeset/cold-news-hope.md b/.changeset/cold-news-hope.md deleted file mode 100644 index 6c371cf17..000000000 --- a/.changeset/cold-news-hope.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@astrojs/cloudflare': minor ---- - -Adds global `astro:env` support - -Cloudflare workers [now support importing `env` in the global scope](https://developers.cloudflare.com/changelog/2025-03-17-importable-env/). Until now, calling `astro:env` APIs had to be done within request scope or the values were `undefined`. - -With this release, they can be called anywhere server-side, like any other official adapter.
\ No newline at end of file diff --git a/.changeset/dark-rooms-enter.md b/.changeset/dark-rooms-enter.md deleted file mode 100644 index 90b50593a..000000000 --- a/.changeset/dark-rooms-enter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes an issue where `site` was added to the generated redirects. diff --git a/.changeset/deep-mammals-watch.md b/.changeset/deep-mammals-watch.md deleted file mode 100644 index 79db0e354..000000000 --- a/.changeset/deep-mammals-watch.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@astrojs/preact': patch -'@astrojs/svelte': patch ---- - -Hides fallback content when rendering `client:only` island diff --git a/.changeset/eight-eyes-swim.md b/.changeset/eight-eyes-swim.md deleted file mode 100644 index 3810682dc..000000000 --- a/.changeset/eight-eyes-swim.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/cloudflare': patch ---- - -Fixes a bug that caused builds to fail when a base directory is configured diff --git a/.changeset/little-doors-tickle.md b/.changeset/little-doors-tickle.md deleted file mode 100644 index ec74adbe4..000000000 --- a/.changeset/little-doors-tickle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/vercel': patch ---- - -Fixes a bug that caused external redirects to fail diff --git a/.changeset/tough-tires-kneel.md b/.changeset/tough-tires-kneel.md deleted file mode 100644 index 61d5afcad..000000000 --- a/.changeset/tough-tires-kneel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Makes server island work with the client router again. diff --git a/.changeset/twelve-gifts-attend.md b/.changeset/twelve-gifts-attend.md deleted file mode 100644 index ccc27dde1..000000000 --- a/.changeset/twelve-gifts-attend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Display useful errors when config loading fails because of Node addons being disabled on Stackblitz diff --git a/.changeset/witty-socks-relax.md b/.changeset/witty-socks-relax.md deleted file mode 100644 index 0a735e26c..000000000 --- a/.changeset/witty-socks-relax.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/tailwind': patch ---- - -Updates the README to indicate that the Tailwind integration is deprecated diff --git a/examples/basics/package.json b/examples/basics/package.json index 804d27575..bbaa4c1dc 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.5.3" + "astro": "^5.5.4" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index f67a51830..ea7762255 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -13,6 +13,6 @@ "@astrojs/mdx": "^4.2.1", "@astrojs/rss": "^4.0.11", "@astrojs/sitemap": "^3.3.0", - "astro": "^5.5.3" + "astro": "^5.5.4" } } diff --git a/examples/component/package.json b/examples/component/package.json index c99fa4a3a..735de1c3c 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.5.3" + "astro": "^5.5.4" }, "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 3f1fe4ce3..bfbfbd424 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/react": "^4.2.1", - "astro": "^5.5.3", + "astro": "^5.5.4", "react": "^18.3.1", "react-dom": "^18.3.1", "vitest": "^3.0.9" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 379297e6d..e6e0e0382 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -13,6 +13,6 @@ "@astrojs/alpinejs": "^0.4.3", "@types/alpinejs": "^3.13.11", "alpinejs": "^3.14.9", - "astro": "^5.5.3" + "astro": "^5.5.4" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index f600c4a8f..092201bb8 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -10,14 +10,14 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.5", + "@astrojs/preact": "^4.0.6", "@astrojs/react": "^4.2.1", "@astrojs/solid-js": "^5.0.5", - "@astrojs/svelte": "^7.0.6", + "@astrojs/svelte": "^7.0.7", "@astrojs/vue": "^5.0.7", "@types/react": "^18.3.19", "@types/react-dom": "^18.3.5", - "astro": "^5.5.3", + "astro": "^5.5.4", "preact": "^10.26.4", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index ab3f31d70..3d7420439 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.5", + "@astrojs/preact": "^4.0.6", "@preact/signals": "^2.0.1", - "astro": "^5.5.3", + "astro": "^5.5.4", "preact": "^10.26.4" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 03f15e2b7..71f19e5dc 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -13,7 +13,7 @@ "@astrojs/react": "^4.2.1", "@types/react": "^18.3.19", "@types/react-dom": "^18.3.5", - "astro": "^5.5.3", + "astro": "^5.5.4", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 97b4ad2c3..a822b3946 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/solid-js": "^5.0.5", - "astro": "^5.5.3", + "astro": "^5.5.4", "solid-js": "^1.9.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index db15d175e..18dcf5a0c 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^7.0.6", - "astro": "^5.5.3", + "@astrojs/svelte": "^7.0.7", + "astro": "^5.5.4", "svelte": "^5.23.2" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 2ccda23e5..18c3bdbf2 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/vue": "^5.0.7", - "astro": "^5.5.3", + "astro": "^5.5.4", "vue": "^3.5.13" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index d47d3eff5..001fc1629 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.1.3", - "astro": "^5.5.3" + "astro": "^5.5.4" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 075e04d65..4601f21cc 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.5.3" + "astro": "^5.5.4" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 64c7f59d0..d2640508d 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.5.3" + "astro": "^5.5.4" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 7914c19f6..3ef930c9d 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.5.3" + "astro": "^5.5.4" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 96840e145..9b8bd2c08 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@astrojs/node": "^9.1.3", - "@astrojs/svelte": "^7.0.6", - "astro": "^5.5.3", + "@astrojs/svelte": "^7.0.7", + "astro": "^5.5.4", "svelte": "^5.23.2" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index 9d9a953ba..c26145060 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.5.3", + "astro": "^5.5.4", "sass": "^1.86.0", "sharp": "^0.33.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index d751f319e..e3f9d7906 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.5.3" + "astro": "^5.5.4" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 19c1f9f11..66a83de45 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/markdoc": "^0.13.1", - "astro": "^5.5.3" + "astro": "^5.5.4" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index c7fcdd8a3..437f22613 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,8 +11,8 @@ }, "dependencies": { "@astrojs/mdx": "^4.2.1", - "@astrojs/preact": "^4.0.5", - "astro": "^5.5.3", + "@astrojs/preact": "^4.0.6", + "astro": "^5.5.4", "preact": "^10.26.4" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index bac443ed5..5713178e7 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.5", + "@astrojs/preact": "^4.0.6", "@nanostores/preact": "^0.5.2", - "astro": "^5.5.3", + "astro": "^5.5.4", "nanostores": "^0.11.4", "preact": "^10.26.4" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index d1f04348f..57d1ecd54 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -13,7 +13,7 @@ "@astrojs/mdx": "^4.2.1", "@tailwindcss/vite": "^4.0.15", "@types/canvas-confetti": "^1.9.0", - "astro": "^5.5.3", + "astro": "^5.5.4", "canvas-confetti": "^1.9.3", "tailwindcss": "^4.0.15" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 66c026e33..af15fe860 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.5.3", + "astro": "^5.5.4", "vitest": "^3.0.9" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 985bab457..69097548b 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,17 @@ # astro +## 5.5.4 + +### Patch Changes + +- [#13457](https://github.com/withastro/astro/pull/13457) [`968e713`](https://github.com/withastro/astro/commit/968e713c268e1b2176c9265b6c438c56105c2730) Thanks [@ascorbic](https://github.com/ascorbic)! - Sets correct response status text for custom error pages + +- [#13447](https://github.com/withastro/astro/pull/13447) [`d80ba2b`](https://github.com/withastro/astro/commit/d80ba2b27d33d2972ffa3242330fb00d0fc58ba9) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where `site` was added to the generated redirects. + +- [#13481](https://github.com/withastro/astro/pull/13481) [`e9e9245`](https://github.com/withastro/astro/commit/e9e9245c7c0ad6e3bda2b7600ff2bd845921a19d) Thanks [@martrapp](https://github.com/martrapp)! - Makes server island work with the client router again. + +- [#13484](https://github.com/withastro/astro/pull/13484) [`8b5e4dc`](https://github.com/withastro/astro/commit/8b5e4dc733bccce7d77defdbb973204aa9b8126b) Thanks [@ascorbic](https://github.com/ascorbic)! - Display useful errors when config loading fails because of Node addons being disabled on Stackblitz + ## 5.5.3 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 6a3d1248e..2e7e8cc73 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "5.5.3", + "version": "5.5.4", "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/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md index b14d30f38..79e92e786 100644 --- a/packages/integrations/cloudflare/CHANGELOG.md +++ b/packages/integrations/cloudflare/CHANGELOG.md @@ -1,5 +1,22 @@ # @astrojs/cloudflare +## 12.3.0 + +### Minor Changes + +- [#13444](https://github.com/withastro/astro/pull/13444) [`9721f4a`](https://github.com/withastro/astro/commit/9721f4a69f0fca389f146a5b8051cc17a34cdb0f) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds global `astro:env` support + + Cloudflare workers [now support importing `env` in the global scope](https://developers.cloudflare.com/changelog/2025-03-17-importable-env/). Until now, calling `astro:env` APIs had to be done within request scope or the values were `undefined`. + + With this release, they can be called anywhere server-side, like any other official adapter. + +### Patch Changes + +- [#13463](https://github.com/withastro/astro/pull/13463) [`d5ad591`](https://github.com/withastro/astro/commit/d5ad591230918db302edc89c1a98436c16a4e0d2) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused builds to fail when a base directory is configured + +- Updated dependencies []: + - @astrojs/underscore-redirects@0.6.0 + ## 12.2.4 ### Patch Changes diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index 3bdf9c1bf..d5c2d8b89 100644 --- a/packages/integrations/cloudflare/package.json +++ b/packages/integrations/cloudflare/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/cloudflare", "description": "Deploy your site to Cloudflare Workers/Pages", - "version": "12.2.4", + "version": "12.3.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md index b0141b2c4..c26263e72 100644 --- a/packages/integrations/preact/CHANGELOG.md +++ b/packages/integrations/preact/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/preact +## 4.0.6 + +### Patch Changes + +- [#13470](https://github.com/withastro/astro/pull/13470) [`ecadb6b`](https://github.com/withastro/astro/commit/ecadb6b02e942feccf584547fe9c14d3d1e21ba6) Thanks [@ascorbic](https://github.com/ascorbic)! - Hides fallback content when rendering `client:only` island + ## 4.0.5 ### Patch Changes diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index f3c20542c..344964680 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.0.5", + "version": "4.0.6", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md index cc9d861fc..25657d519 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/svelte +## 7.0.7 + +### Patch Changes + +- [#13470](https://github.com/withastro/astro/pull/13470) [`ecadb6b`](https://github.com/withastro/astro/commit/ecadb6b02e942feccf584547fe9c14d3d1e21ba6) Thanks [@ascorbic](https://github.com/ascorbic)! - Hides fallback content when rendering `client:only` island + ## 7.0.6 ### Patch Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index 96e748b6a..3068209f7 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "7.0.6", + "version": "7.0.7", "description": "Use Svelte components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/tailwind/CHANGELOG.md b/packages/integrations/tailwind/CHANGELOG.md index 0e18eeed7..dba76a9f1 100644 --- a/packages/integrations/tailwind/CHANGELOG.md +++ b/packages/integrations/tailwind/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/tailwind +## 6.0.1 + +### Patch Changes + +- [#13471](https://github.com/withastro/astro/pull/13471) [`020c542`](https://github.com/withastro/astro/commit/020c54247909fadc2c80c89b226ba59565d12cbf) Thanks [@delucis](https://github.com/delucis)! - Updates the README to indicate that the Tailwind integration is deprecated + ## 6.0.0 ### Major Changes diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json index 87b2ce11a..83060c136 100644 --- a/packages/integrations/tailwind/package.json +++ b/packages/integrations/tailwind/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/tailwind", "description": "Use Tailwind CSS to style your Astro site", - "version": "6.0.0", + "version": "6.0.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md index 996df273f..24ac0e1b6 100644 --- a/packages/integrations/vercel/CHANGELOG.md +++ b/packages/integrations/vercel/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/vercel +## 8.1.3 + +### Patch Changes + +- [#13480](https://github.com/withastro/astro/pull/13480) [`12cc4d8`](https://github.com/withastro/astro/commit/12cc4d88f216ba3f684ddffb33d117baa7197726) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused external redirects to fail + ## 8.1.2 ### Patch Changes diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json index 32a7d9eb4..314634e77 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.1.2", + "version": "8.1.3", "type": "module", "author": "withastro", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2e872f3cf..fc19ca4dc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -142,7 +142,7 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro examples/blog: @@ -157,13 +157,13 @@ importers: specifier: ^3.3.0 version: link:../../packages/integrations/sitemap astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro examples/container-with-vitest: @@ -172,7 +172,7 @@ importers: specifier: ^4.2.1 version: link:../../packages/integrations/react astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -203,13 +203,13 @@ importers: specifier: ^3.14.9 version: 3.14.9 astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro examples/framework-multiple: dependencies: '@astrojs/preact': - specifier: ^4.0.5 + specifier: ^4.0.6 version: link:../../packages/integrations/preact '@astrojs/react': specifier: ^4.2.1 @@ -218,7 +218,7 @@ importers: specifier: ^5.0.5 version: link:../../packages/integrations/solid '@astrojs/svelte': - specifier: ^7.0.6 + specifier: ^7.0.7 version: link:../../packages/integrations/svelte '@astrojs/vue': specifier: ^5.0.7 @@ -230,7 +230,7 @@ importers: specifier: ^18.3.5 version: 18.3.5(@types/react@18.3.19) astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro preact: specifier: ^10.26.4 @@ -254,13 +254,13 @@ importers: examples/framework-preact: dependencies: '@astrojs/preact': - specifier: ^4.0.5 + specifier: ^4.0.6 version: link:../../packages/integrations/preact '@preact/signals': specifier: ^2.0.1 version: 2.0.1(preact@10.26.4) astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro preact: specifier: ^10.26.4 @@ -278,7 +278,7 @@ importers: specifier: ^18.3.5 version: 18.3.5(@types/react@18.3.19) astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -293,7 +293,7 @@ importers: specifier: ^5.0.5 version: link:../../packages/integrations/solid astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro solid-js: specifier: ^1.9.5 @@ -302,10 +302,10 @@ importers: examples/framework-svelte: dependencies: '@astrojs/svelte': - specifier: ^7.0.6 + specifier: ^7.0.7 version: link:../../packages/integrations/svelte astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro svelte: specifier: ^5.23.2 @@ -317,7 +317,7 @@ importers: specifier: ^5.0.7 version: link:../../packages/integrations/vue astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro vue: specifier: ^3.5.13 @@ -329,25 +329,25 @@ importers: specifier: ^9.1.3 version: link:../../packages/integrations/node astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro examples/ssr: @@ -356,10 +356,10 @@ importers: specifier: ^9.1.3 version: link:../../packages/integrations/node '@astrojs/svelte': - specifier: ^7.0.6 + specifier: ^7.0.7 version: link:../../packages/integrations/svelte astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro svelte: specifier: ^5.23.2 @@ -368,7 +368,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro sass: specifier: ^1.86.0 @@ -383,7 +383,7 @@ importers: specifier: ^18.17.8 version: 18.19.50 astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro examples/with-markdoc: @@ -392,7 +392,7 @@ importers: specifier: ^0.13.1 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro examples/with-mdx: @@ -401,10 +401,10 @@ importers: specifier: ^4.2.1 version: link:../../packages/integrations/mdx '@astrojs/preact': - specifier: ^4.0.5 + specifier: ^4.0.6 version: link:../../packages/integrations/preact astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro preact: specifier: ^10.26.4 @@ -413,13 +413,13 @@ importers: examples/with-nanostores: dependencies: '@astrojs/preact': - specifier: ^4.0.5 + specifier: ^4.0.6 version: link:../../packages/integrations/preact '@nanostores/preact': specifier: ^0.5.2 version: 0.5.2(nanostores@0.11.4)(preact@10.26.4) astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro nanostores: specifier: ^0.11.4 @@ -440,7 +440,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.3 @@ -452,7 +452,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^5.5.3 + specifier: ^5.5.4 version: link:../../packages/astro vitest: specifier: ^3.0.9 @@ -10185,7 +10185,6 @@ packages: libsql@0.5.1: resolution: {integrity: sha512-ePnm5zj6T//GKiTY/v5b0a272NX73hqdRORmD8gzz1nUui9051dtTt6t0XCrIqxwJAHSmQiZcfAx3YSASn9Y+A==} - cpu: [x64, arm64, wasm32] os: [darwin, linux, win32] lightningcss-darwin-arm64@1.29.2: |