diff --git a/.changeset/dull-falcons-fold.md b/.changeset/dull-falcons-fold.md deleted file mode 100644 index 51b319b8705c..000000000000 --- a/.changeset/dull-falcons-fold.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a case where JSDoc annotations wouldn't show for fonts related APIs in the Astro config diff --git a/.changeset/every-banks-battle.md b/.changeset/every-banks-battle.md deleted file mode 100644 index f79220187661..000000000000 --- a/.changeset/every-banks-battle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro-vscode': patch ---- - -Retries failed deploy diff --git a/.changeset/fix-lookup-map-oom.md b/.changeset/fix-lookup-map-oom.md deleted file mode 100644 index a6dc11dc9924..000000000000 --- a/.changeset/fix-lookup-map-oom.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Fixes performance regression and OOM errors when building medium-sized blogs with many content entries. Replaced O(n²) object spread pattern with direct mutation in `generateLookupMap`. diff --git a/.changeset/long-comics-invite.md b/.changeset/long-comics-invite.md deleted file mode 100644 index 2f1bb7c7db77..000000000000 --- a/.changeset/long-comics-invite.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'astro': patch ---- - -Gives a helpful error message if a user sets `output: "hybrid"` in their Astro config. - -The option was removed in Astro 5, but lots of content online still references it, and LLMs often suggest it. It's not always clear that the replacement is `output: "static"`, rather than `output: "server"`. This change adds a helpful error message to guide humans and robots. diff --git a/.changeset/olive-lands-try.md b/.changeset/olive-lands-try.md deleted file mode 100644 index a166dad7ad2d..000000000000 --- a/.changeset/olive-lands-try.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/svelte': patch ---- - -Fixes an issue where Svelte 5 components used in Astro files would not have proper type checking and IntelliSense. diff --git a/.changeset/pink-experts-feel.md b/.changeset/pink-experts-feel.md deleted file mode 100644 index 3bf814f1bf12..000000000000 --- a/.changeset/pink-experts-feel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/markdown-remark': patch ---- - -Prevents HAST-only props from being directly converted into HTML attributes diff --git a/.changeset/six-ghosts-knock.md b/.changeset/six-ghosts-knock.md deleted file mode 100644 index 918cb8c85003..000000000000 --- a/.changeset/six-ghosts-knock.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Updates the `glob()` loader to log a warning when duplicated IDs are detected diff --git a/examples/basics/package.json b/examples/basics/package.json index 208b1ad5dc6c..e0c24f3695d2 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.16.4" + "astro": "^5.16.5" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index e0dec992e273..0b848e8855ac 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.3.12", + "@astrojs/mdx": "^4.3.13", "@astrojs/rss": "^4.0.14", "@astrojs/sitemap": "^3.6.0", - "astro": "^5.16.4", + "astro": "^5.16.5", "sharp": "^0.34.3" } } diff --git a/examples/component/package.json b/examples/component/package.json index 299ac3530102..fb21c4dff5a6 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.16.4" + "astro": "^5.16.5" }, "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 01c95e085831..fa4ae5eb3dba 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/react": "^4.4.2", - "astro": "^5.16.4", + "astro": "^5.16.5", "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 1f05b36a30c0..87e8595e2a18 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.2", - "astro": "^5.16.4" + "astro": "^5.16.5" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index e1d30bad2d5a..57be44a65fbf 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -13,11 +13,11 @@ "@astrojs/preact": "^4.1.3", "@astrojs/react": "^4.4.2", "@astrojs/solid-js": "^5.1.3", - "@astrojs/svelte": "^7.2.2", + "@astrojs/svelte": "^7.2.3", "@astrojs/vue": "^5.1.3", "@types/react": "^18.3.27", "@types/react-dom": "^18.3.7", - "astro": "^5.16.4", + "astro": "^5.16.5", "preact": "^10.28.0", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 7e660b31c903..ed7dbe191e78 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -12,7 +12,7 @@ "dependencies": { "@astrojs/preact": "^4.1.3", "@preact/signals": "^2.5.1", - "astro": "^5.16.4", + "astro": "^5.16.5", "preact": "^10.28.0" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 129da8bf2844..4c51f2669cff 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -13,7 +13,7 @@ "@astrojs/react": "^4.4.2", "@types/react": "^18.3.27", "@types/react-dom": "^18.3.7", - "astro": "^5.16.4", + "astro": "^5.16.5", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 14f4524d7db9..88d0aba2d5f4 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/solid-js": "^5.1.3", - "astro": "^5.16.4", + "astro": "^5.16.5", "solid-js": "^1.9.10" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 085cd4f51c49..71243ee3a5eb 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^7.2.2", - "astro": "^5.16.4", + "@astrojs/svelte": "^7.2.3", + "astro": "^5.16.5", "svelte": "^5.45.5" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 828c86d99809..90b985785ccf 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/vue": "^5.1.3", - "astro": "^5.16.4", + "astro": "^5.16.5", "vue": "^3.5.25" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 913fa0b15049..5d278a5ee0cc 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.5.1", - "astro": "^5.16.4" + "astro": "^5.16.5" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 3369cb2fff90..5c883c07416e 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.16.4" + "astro": "^5.16.5" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 236c04d8d3b1..4d6576656e67 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.16.4" + "astro": "^5.16.5" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index b5e0420bc6f0..bc30e0b75aeb 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.16.4" + "astro": "^5.16.5" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 7cca90cad5fa..f4dcd54f722b 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@astrojs/node": "^9.5.1", - "@astrojs/svelte": "^7.2.2", - "astro": "^5.16.4", + "@astrojs/svelte": "^7.2.3", + "astro": "^5.16.5", "svelte": "^5.45.5" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index 0119c8676142..bcc6da7a7f31 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.16.4", + "astro": "^5.16.5", "sass": "^1.94.2", "sharp": "^0.34.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 857f57612f4f..40c4f0c92166 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.16.4" + "astro": "^5.16.5" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 6308acb3aa62..7d0c070c8055 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.15.9", - "astro": "^5.16.4" + "@astrojs/markdoc": "^0.15.10", + "astro": "^5.16.5" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index e6a2df95ab36..c5f2a1e23f53 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.3.12", + "@astrojs/mdx": "^4.3.13", "@astrojs/preact": "^4.1.3", - "astro": "^5.16.4", + "astro": "^5.16.5", "preact": "^10.28.0" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 80dfed95f429..851a9d71111f 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -12,7 +12,7 @@ "dependencies": { "@astrojs/preact": "^4.1.3", "@nanostores/preact": "^0.5.2", - "astro": "^5.16.4", + "astro": "^5.16.5", "nanostores": "^0.11.4", "preact": "^10.28.0" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 966664b73d24..2021ef98b187 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.3.12", + "@astrojs/mdx": "^4.3.13", "@tailwindcss/vite": "^4.1.17", "@types/canvas-confetti": "^1.9.0", - "astro": "^5.16.4", + "astro": "^5.16.5", "canvas-confetti": "^1.9.4", "tailwindcss": "^4.1.17" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 6ed6935d4af0..ce987a770214 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.16.4", + "astro": "^5.16.5", "vitest": "^3.2.4" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 2a44db2efb0f..79d05b55eae1 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,22 @@ # astro +## 5.16.5 + +### Patch Changes + +- [#14985](https://github.com/withastro/astro/pull/14985) [`c016f10`](https://github.com/withastro/astro/commit/c016f1063beddc995c4b7a60430ff8860c05b462) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where JSDoc annotations wouldn't show for fonts related APIs in the Astro config + +- [#14973](https://github.com/withastro/astro/pull/14973) [`ed7cc2f`](https://github.com/withastro/astro/commit/ed7cc2fd399084bdd8ba47094fe378fc8ce43048) Thanks [@amankumarpandeyin](https://github.com/amankumarpandeyin)! - Fixes performance regression and OOM errors when building medium-sized blogs with many content entries. Replaced O(n²) object spread pattern with direct mutation in `generateLookupMap`. + +- [#14958](https://github.com/withastro/astro/pull/14958) [`70eb542`](https://github.com/withastro/astro/commit/70eb542f3b509cd25461d19d275b8c050ace184f) Thanks [@ascorbic](https://github.com/ascorbic)! - Gives a helpful error message if a user sets `output: "hybrid"` in their Astro config. + + The option was removed in Astro 5, but lots of content online still references it, and LLMs often suggest it. It's not always clear that the replacement is `output: "static"`, rather than `output: "server"`. This change adds a helpful error message to guide humans and robots. + +- [#14901](https://github.com/withastro/astro/pull/14901) [`ef53716`](https://github.com/withastro/astro/commit/ef53716f93237d29cf732baae2d90ecd2c9f3bbe) Thanks [@Darknab](https://github.com/Darknab)! - Updates the `glob()` loader to log a warning when duplicated IDs are detected + +- Updated dependencies [[`d8305f8`](https://github.com/withastro/astro/commit/d8305f8abdf92db6fa505ee9c1774553ba90b7bd)]: + - @astrojs/markdown-remark@6.3.10 + ## 5.16.4 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 7c69910a4b0a..3dcde5b0b5fa 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "5.16.4", + "version": "5.16.5", "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/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md index fea471890b1b..d5ed5f563669 100644 --- a/packages/integrations/markdoc/CHANGELOG.md +++ b/packages/integrations/markdoc/CHANGELOG.md @@ -1,5 +1,12 @@ # @astrojs/markdoc +## 0.15.10 + +### Patch Changes + +- Updated dependencies [[`d8305f8`](https://github.com/withastro/astro/commit/d8305f8abdf92db6fa505ee9c1774553ba90b7bd)]: + - @astrojs/markdown-remark@6.3.10 + ## 0.15.9 ### Patch Changes diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json index fcecd479e472..d0d3ed18cf03 100644 --- a/packages/integrations/markdoc/package.json +++ b/packages/integrations/markdoc/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/markdoc", "description": "Add support for Markdoc in your Astro site", - "version": "0.15.9", + "version": "0.15.10", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index c0d98f817e8c..5ba4f630365e 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,12 @@ # @astrojs/mdx +## 4.3.13 + +### Patch Changes + +- Updated dependencies [[`d8305f8`](https://github.com/withastro/astro/commit/d8305f8abdf92db6fa505ee9c1774553ba90b7bd)]: + - @astrojs/markdown-remark@6.3.10 + ## 4.3.12 ### Patch Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index d7461bf22cb7..de0d730f5f07 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.12", + "version": "4.3.13", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md index db3a30974a7e..9e793a5bff53 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/svelte +## 7.2.3 + +### Patch Changes + +- [#14934](https://github.com/withastro/astro/pull/14934) [`4264a36`](https://github.com/withastro/astro/commit/4264a3657155ca95c9bdaa7b8d0340422212374d) Thanks [@antonyfaris](https://github.com/antonyfaris)! - Fixes an issue where Svelte 5 components used in Astro files would not have proper type checking and IntelliSense. + ## 7.2.2 ### Patch Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index 8a833c2f081b..bceb773de65b 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "7.2.2", + "version": "7.2.3", "description": "Use Svelte components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/language-tools/vscode/CHANGELOG.md b/packages/language-tools/vscode/CHANGELOG.md index 8be403d70ec8..cef5eb66a2ae 100644 --- a/packages/language-tools/vscode/CHANGELOG.md +++ b/packages/language-tools/vscode/CHANGELOG.md @@ -1,5 +1,11 @@ # astro-vscode +## 2.16.5 + +### Patch Changes + +- [#14988](https://github.com/withastro/astro/pull/14988) [`a3a20d8`](https://github.com/withastro/astro/commit/a3a20d8c9783de10de64d2f15dacdd5afc97a5ad) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Retries failed deploy + ## 2.16.4 ### Patch Changes diff --git a/packages/language-tools/vscode/package.json b/packages/language-tools/vscode/package.json index 86854222c2bb..1a9daa5a48d9 100644 --- a/packages/language-tools/vscode/package.json +++ b/packages/language-tools/vscode/package.json @@ -24,7 +24,7 @@ "color": "#17191E", "theme": "dark" }, - "version": "2.16.4", + "version": "2.16.5", "author": "withastro", "license": "MIT", "publisher": "astro-build", diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md index 764878954155..426c6c7b4bcd 100644 --- a/packages/markdown/remark/CHANGELOG.md +++ b/packages/markdown/remark/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/markdown-remark +## 6.3.10 + +### Patch Changes + +- [#14902](https://github.com/withastro/astro/pull/14902) [`d8305f8`](https://github.com/withastro/astro/commit/d8305f8abdf92db6fa505ee9c1774553ba90b7bd) Thanks [@tuyuritio](https://github.com/tuyuritio)! - Prevents HAST-only props from being directly converted into HTML attributes + ## 6.3.9 ### Patch Changes diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json index e2de573b7220..87ac5fbf7ca9 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-remark", - "version": "6.3.9", + "version": "6.3.10", "type": "module", "author": "withastro", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d6d420672bc9..78b613bcf77c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -149,13 +149,13 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro examples/blog: dependencies: '@astrojs/mdx': - specifier: ^4.3.12 + specifier: ^4.3.13 version: link:../../packages/integrations/mdx '@astrojs/rss': specifier: ^4.0.14 @@ -164,7 +164,7 @@ importers: specifier: ^3.6.0 version: link:../../packages/integrations/sitemap astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro sharp: specifier: ^0.34.3 @@ -173,7 +173,7 @@ importers: examples/component: devDependencies: astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro examples/container-with-vitest: @@ -182,7 +182,7 @@ importers: specifier: ^4.4.2 version: link:../../packages/integrations/react astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -213,7 +213,7 @@ importers: specifier: ^3.15.2 version: 3.15.2 astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro examples/framework-multiple: @@ -228,7 +228,7 @@ importers: specifier: ^5.1.3 version: link:../../packages/integrations/solid '@astrojs/svelte': - specifier: ^7.2.2 + specifier: ^7.2.3 version: link:../../packages/integrations/svelte '@astrojs/vue': specifier: ^5.1.3 @@ -240,7 +240,7 @@ importers: specifier: ^18.3.7 version: 18.3.7(@types/react@18.3.27) astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro preact: specifier: ^10.28.0 @@ -270,7 +270,7 @@ importers: specifier: ^2.5.1 version: 2.5.1(preact@10.28.0) astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro preact: specifier: ^10.28.0 @@ -288,7 +288,7 @@ importers: specifier: ^18.3.7 version: 18.3.7(@types/react@18.3.27) astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -303,7 +303,7 @@ importers: specifier: ^5.1.3 version: link:../../packages/integrations/solid astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro solid-js: specifier: ^1.9.10 @@ -312,10 +312,10 @@ importers: examples/framework-svelte: dependencies: '@astrojs/svelte': - specifier: ^7.2.2 + specifier: ^7.2.3 version: link:../../packages/integrations/svelte astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro svelte: specifier: ^5.45.5 @@ -327,7 +327,7 @@ importers: specifier: ^5.1.3 version: link:../../packages/integrations/vue astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro vue: specifier: ^3.5.25 @@ -339,25 +339,25 @@ importers: specifier: ^9.5.1 version: link:../../packages/integrations/node astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro examples/ssr: @@ -366,10 +366,10 @@ importers: specifier: ^9.5.1 version: link:../../packages/integrations/node '@astrojs/svelte': - specifier: ^7.2.2 + specifier: ^7.2.3 version: link:../../packages/integrations/svelte astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro svelte: specifier: ^5.45.5 @@ -378,7 +378,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro sass: specifier: ^1.94.2 @@ -393,28 +393,28 @@ importers: specifier: ^18.17.8 version: 18.19.130 astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro examples/with-markdoc: dependencies: '@astrojs/markdoc': - specifier: ^0.15.9 + specifier: ^0.15.10 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro examples/with-mdx: dependencies: '@astrojs/mdx': - specifier: ^4.3.12 + specifier: ^4.3.13 version: link:../../packages/integrations/mdx '@astrojs/preact': specifier: ^4.1.3 version: link:../../packages/integrations/preact astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro preact: specifier: ^10.28.0 @@ -429,7 +429,7 @@ importers: specifier: ^0.5.2 version: 0.5.2(nanostores@0.11.4)(preact@10.28.0) astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro nanostores: specifier: ^0.11.4 @@ -441,7 +441,7 @@ importers: examples/with-tailwindcss: dependencies: '@astrojs/mdx': - specifier: ^4.3.12 + specifier: ^4.3.13 version: link:../../packages/integrations/mdx '@tailwindcss/vite': specifier: ^4.1.17 @@ -450,7 +450,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.4 @@ -462,7 +462,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^5.16.4 + specifier: ^5.16.5 version: link:../../packages/astro vitest: specifier: ^3.2.4