From e56c428f3bfc3a4a8ed799993f80a29a580cb820 Mon Sep 17 00:00:00 2001 From: "Houston (Bot)" <108291165+astrobot-houston@users.noreply.github.com> Date: Wed, 28 Feb 2024 05:17:40 -0800 Subject: [PATCH] [ci] release (#10236) Co-authored-by: github-actions[bot] --- .changeset/eight-shrimps-enjoy.md | 5 - .changeset/gold-baboons-drum.md | 5 - .changeset/great-flowers-own.md | 5 - .changeset/loud-pianos-pretend.md | 5 - .changeset/tall-papayas-drive.md | 5 - .changeset/wicked-eyes-prove.md | 5 - .changeset/wicked-houses-occur.md | 5 - examples/basics/package.json | 2 +- examples/blog/package.json | 2 +- examples/component/package.json | 2 +- examples/framework-alpine/package.json | 2 +- examples/framework-lit/package.json | 2 +- examples/framework-multiple/package.json | 4 +- examples/framework-preact/package.json | 2 +- examples/framework-react/package.json | 2 +- examples/framework-solid/package.json | 2 +- examples/framework-svelte/package.json | 4 +- examples/framework-vue/package.json | 2 +- examples/hackernews/package.json | 2 +- examples/integration/package.json | 2 +- examples/middleware/package.json | 2 +- examples/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 4 +- examples/starlog/package.json | 2 +- examples/view-transitions/package.json | 2 +- examples/with-markdoc/package.json | 2 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown-shiki/package.json | 2 +- examples/with-mdx/package.json | 2 +- examples/with-nanostores/package.json | 2 +- examples/with-tailwindcss/package.json | 2 +- examples/with-vitest/package.json | 2 +- packages/astro/CHANGELOG.md | 16 ++ packages/astro/package.json | 2 +- packages/integrations/svelte/CHANGELOG.md | 6 + packages/integrations/svelte/package.json | 2 +- pnpm-lock.yaml | 208 +++----------------- 39 files changed, 84 insertions(+), 245 deletions(-) delete mode 100644 .changeset/eight-shrimps-enjoy.md delete mode 100644 .changeset/gold-baboons-drum.md delete mode 100644 .changeset/great-flowers-own.md delete mode 100644 .changeset/loud-pianos-pretend.md delete mode 100644 .changeset/tall-papayas-drive.md delete mode 100644 .changeset/wicked-eyes-prove.md delete mode 100644 .changeset/wicked-houses-occur.md diff --git a/.changeset/eight-shrimps-enjoy.md b/.changeset/eight-shrimps-enjoy.md deleted file mode 100644 index 50d77a351c..0000000000 --- a/.changeset/eight-shrimps-enjoy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Fixes an issue where `transition:animate="none"` still allowed the browser-native morph animation. diff --git a/.changeset/gold-baboons-drum.md b/.changeset/gold-baboons-drum.md deleted file mode 100644 index 6cb868a5f7..0000000000 --- a/.changeset/gold-baboons-drum.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/svelte": minor ---- - -Adds TypeScript as a required peer dependency as it is required for Svelte's editor tooling to work correctly. diff --git a/.changeset/great-flowers-own.md b/.changeset/great-flowers-own.md deleted file mode 100644 index a2295691f2..0000000000 --- a/.changeset/great-flowers-own.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Fixes an issue where multiple injected routes with the same `entrypoint` but different `pattern` were incorrectly cached, causing some of them not being rendered in the dev server. diff --git a/.changeset/loud-pianos-pretend.md b/.changeset/loud-pianos-pretend.md deleted file mode 100644 index 17fadba3dc..0000000000 --- a/.changeset/loud-pianos-pretend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Fixes the overwriting of localised index pages with redirects diff --git a/.changeset/tall-papayas-drive.md b/.changeset/tall-papayas-drive.md deleted file mode 100644 index 3e42ac98fa..0000000000 --- a/.changeset/tall-papayas-drive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Improves the message of `MiddlewareCantBeLoaded` for clarity diff --git a/.changeset/wicked-eyes-prove.md b/.changeset/wicked-eyes-prove.md deleted file mode 100644 index 4e907e00f3..0000000000 --- a/.changeset/wicked-eyes-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Adds a warning in DEV mode when using view transitions on a device with prefer-reduced-motion enabled. diff --git a/.changeset/wicked-houses-occur.md b/.changeset/wicked-houses-occur.md deleted file mode 100644 index 61248c948b..0000000000 --- a/.changeset/wicked-houses-occur.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Fixes TypeScript type definitions for `Code` component `theme` and `experimentalThemes` props diff --git a/examples/basics/package.json b/examples/basics/package.json index 3af126dd14..86f892f410 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.4.5" + "astro": "^4.4.6" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 66e4909430..c51c8592d4 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -14,6 +14,6 @@ "@astrojs/mdx": "^2.1.1", "@astrojs/rss": "^4.0.5", "@astrojs/sitemap": "^3.1.1", - "astro": "^4.4.5" + "astro": "^4.4.6" } } diff --git a/examples/component/package.json b/examples/component/package.json index c97f2cbeac..1cdb6b3366 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^4.4.5" + "astro": "^4.4.6" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 6f98fa9663..b203a9e416 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -14,6 +14,6 @@ "@astrojs/alpinejs": "^0.4.0", "@types/alpinejs": "^3.13.5", "alpinejs": "^3.13.3", - "astro": "^4.4.5" + "astro": "^4.4.6" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index e053f9b5ae..6d8d7ff129 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/lit": "^4.0.1", "@webcomponents/template-shadowroot": "^0.2.1", - "astro": "^4.4.5", + "astro": "^4.4.6", "lit": "^3.1.2" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 092074a618..65bb39f7d3 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -14,9 +14,9 @@ "@astrojs/preact": "^3.1.1", "@astrojs/react": "^3.0.10", "@astrojs/solid-js": "^4.0.1", - "@astrojs/svelte": "^5.1.0", + "@astrojs/svelte": "^5.2.0", "@astrojs/vue": "^4.0.8", - "astro": "^4.4.5", + "astro": "^4.4.6", "preact": "^10.19.2", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index bf3385ea2f..5f61f5790f 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/preact": "^3.1.1", "@preact/signals": "^1.2.1", - "astro": "^4.4.5", + "astro": "^4.4.6", "preact": "^10.19.2" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 1476d60f36..ad2b47014a 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -14,7 +14,7 @@ "@astrojs/react": "^3.0.10", "@types/react": "^18.2.37", "@types/react-dom": "^18.2.15", - "astro": "^4.4.5", + "astro": "^4.4.6", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 9a22941fa5..f4a1cd0637 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/solid-js": "^4.0.1", - "astro": "^4.4.5", + "astro": "^4.4.6", "solid-js": "^1.8.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 174a8cdb52..c4b7e3b433 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^5.1.0", - "astro": "^4.4.5", + "@astrojs/svelte": "^5.2.0", + "astro": "^4.4.6", "svelte": "^4.2.5" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index a34d427c15..5864c5a006 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/vue": "^4.0.8", - "astro": "^4.4.5", + "astro": "^4.4.6", "vue": "^3.3.8" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 6d5af65a6f..3560057d1e 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -12,6 +12,6 @@ }, "dependencies": { "@astrojs/node": "^8.2.1", - "astro": "^4.4.5" + "astro": "^4.4.6" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 224778c3a2..bd2cd6879d 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^4.4.5" + "astro": "^4.4.6" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/middleware/package.json b/examples/middleware/package.json index 49b6c2ba19..9ee9f9fa60 100644 --- a/examples/middleware/package.json +++ b/examples/middleware/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "@astrojs/node": "^8.2.1", - "astro": "^4.4.5", + "astro": "^4.4.6", "html-minifier": "^4.0.0" }, "devDependencies": { diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 7af4d31dcd..85580d9cd3 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.4.5" + "astro": "^4.4.6" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 3d0e85447e..f00fb4b5b9 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.4.5" + "astro": "^4.4.6" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 7d0550e262..e52d98f04c 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.4.5" + "astro": "^4.4.6" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 165d6d90f7..592fc7077b 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -13,8 +13,8 @@ }, "dependencies": { "@astrojs/node": "^8.2.1", - "@astrojs/svelte": "^5.1.0", - "astro": "^4.4.5", + "@astrojs/svelte": "^5.2.0", + "astro": "^4.4.6", "svelte": "^4.2.5" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index ea30496b00..83df3e1f30 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.4.5", + "astro": "^4.4.6", "sass": "^1.69.5", "sharp": "^0.32.6" } diff --git a/examples/view-transitions/package.json b/examples/view-transitions/package.json index 17cd6247de..a50877a080 100644 --- a/examples/view-transitions/package.json +++ b/examples/view-transitions/package.json @@ -12,6 +12,6 @@ "devDependencies": { "@astrojs/tailwind": "^5.1.0", "@astrojs/node": "^8.2.1", - "astro": "^4.4.5" + "astro": "^4.4.6" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index f6a704fb44..2246568f6c 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -12,6 +12,6 @@ }, "dependencies": { "@astrojs/markdoc": "^0.9.0", - "astro": "^4.4.5" + "astro": "^4.4.6" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index dfa48fc7e8..14caff03e5 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/markdown-remark": "^4.2.1", - "astro": "^4.4.5", + "astro": "^4.4.6", "hast-util-select": "^6.0.2", "rehype-autolink-headings": "^7.1.0", "rehype-slug": "^6.0.0", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index 215137eb79..2a295880e3 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.4.5" + "astro": "^4.4.6" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index a6c4010171..4ceaf2373c 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/mdx": "^2.1.1", "@astrojs/preact": "^3.1.1", - "astro": "^4.4.5", + "astro": "^4.4.6", "preact": "^10.19.2" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index d656cd3a68..909328a279 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/preact": "^3.1.1", "@nanostores/preact": "^0.5.0", - "astro": "^4.4.5", + "astro": "^4.4.6", "nanostores": "^0.9.5", "preact": "^10.19.2" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index c4be557cb0..3d9a754967 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -14,7 +14,7 @@ "@astrojs/mdx": "^2.1.1", "@astrojs/tailwind": "^5.1.0", "@types/canvas-confetti": "^1.6.3", - "astro": "^4.4.5", + "astro": "^4.4.6", "autoprefixer": "^10.4.15", "canvas-confetti": "^1.9.1", "postcss": "^8.4.28", diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 098772fd57..8f729a9e22 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^4.4.5", + "astro": "^4.4.6", "vitest": "^1.2.2" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index fe377fdf23..901e49d229 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,21 @@ # astro +## 4.4.6 + +### Patch Changes + +- [#10247](https://github.com/withastro/astro/pull/10247) [`fb773c9161bf8faa5ebd7e115f3564c3359e56ea`](https://github.com/withastro/astro/commit/fb773c9161bf8faa5ebd7e115f3564c3359e56ea) Thanks [@martrapp](https://github.com/martrapp)! - Fixes an issue where `transition:animate="none"` still allowed the browser-native morph animation. + +- [#10248](https://github.com/withastro/astro/pull/10248) [`8ae5d99534fc09d650e10e64a09b61a2807574f2`](https://github.com/withastro/astro/commit/8ae5d99534fc09d650e10e64a09b61a2807574f2) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where multiple injected routes with the same `entrypoint` but different `pattern` were incorrectly cached, causing some of them not being rendered in the dev server. + +- [#10250](https://github.com/withastro/astro/pull/10250) [`57655a99db34e20e9661c039fab253b867013318`](https://github.com/withastro/astro/commit/57655a99db34e20e9661c039fab253b867013318) Thanks [@log101](https://github.com/log101)! - Fixes the overwriting of localised index pages with redirects + +- [#10239](https://github.com/withastro/astro/pull/10239) [`9c21a9df6b03e36bd78dc553e13c55b9ef8c44cd`](https://github.com/withastro/astro/commit/9c21a9df6b03e36bd78dc553e13c55b9ef8c44cd) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Improves the message of `MiddlewareCantBeLoaded` for clarity + +- [#10222](https://github.com/withastro/astro/pull/10222) [`ade9759cae74ca262b988260250bcb202235e811`](https://github.com/withastro/astro/commit/ade9759cae74ca262b988260250bcb202235e811) Thanks [@martrapp](https://github.com/martrapp)! - Adds a warning in DEV mode when using view transitions on a device with prefer-reduced-motion enabled. + +- [#10251](https://github.com/withastro/astro/pull/10251) [`9b00de0a76b4f4b5b808e8c78e4906a2497e8ecf`](https://github.com/withastro/astro/commit/9b00de0a76b4f4b5b808e8c78e4906a2497e8ecf) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Fixes TypeScript type definitions for `Code` component `theme` and `experimentalThemes` props + ## 4.4.5 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index fa6b1df8e7..2b4e1f0d24 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "4.4.5", + "version": "4.4.6", "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/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md index 2c3eadf2c4..2a3500ed13 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/svelte +## 5.2.0 + +### Minor Changes + +- [#10244](https://github.com/withastro/astro/pull/10244) [`dbb0d0bd2833bf02d0aa70f87973c62ca1d58c1b`](https://github.com/withastro/astro/commit/dbb0d0bd2833bf02d0aa70f87973c62ca1d58c1b) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds TypeScript as a required peer dependency as it is required for Svelte's editor tooling to work correctly. + ## 5.1.0 ### Minor Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index 843208ad24..b76de791b5 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "5.1.0", + "version": "5.2.0", "description": "Use Svelte components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8b796f4b08..bf96800dba 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -131,46 +131,10 @@ importers: specifier: workspace:* version: link:../../../scripts - examples/astro-missing-headers: - dependencies: - '@astrojs/check': - specifier: ^0.5.4 - version: 0.5.5(prettier-plugin-astro@0.12.3)(prettier@3.1.1)(typescript@5.3.3) - '@astrojs/node': - specifier: ^8.2.0 - version: link:../../packages/integrations/node - astro: - specifier: ^4.4.0 - version: link:../../packages/astro - typescript: - specifier: ^5.3.3 - version: 5.3.3 - - examples/astro-svelte-repro: - dependencies: - '@astrojs/check': - specifier: ^0.5.4 - version: 0.5.5(prettier-plugin-astro@0.12.3)(prettier@3.1.1)(typescript@5.3.3) - '@astrojs/mdx': - specifier: ^2.1.1 - version: link:../../packages/integrations/mdx - '@astrojs/svelte': - specifier: ^5.0.3 - version: link:../../packages/integrations/svelte - astro: - specifier: ^4.4.0 - version: link:../../packages/astro - svelte: - specifier: 5.0.0-next.60 - version: 5.0.0-next.60 - typescript: - specifier: ^5.3.3 - version: 5.3.3 - examples/basics: dependencies: astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/blog: @@ -185,13 +149,13 @@ importers: specifier: ^3.1.1 version: link:../../packages/integrations/sitemap astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/framework-alpine: @@ -206,7 +170,7 @@ importers: specifier: ^3.13.3 version: 3.13.3 astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/framework-lit: @@ -218,7 +182,7 @@ importers: specifier: ^0.2.1 version: 0.2.1 astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro lit: specifier: ^3.1.2 @@ -236,13 +200,13 @@ importers: specifier: ^4.0.1 version: link:../../packages/integrations/solid '@astrojs/svelte': - specifier: ^5.1.0 + specifier: ^5.2.0 version: link:../../packages/integrations/svelte '@astrojs/vue': specifier: ^4.0.8 version: link:../../packages/integrations/vue astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro preact: specifier: ^10.19.2 @@ -272,7 +236,7 @@ importers: specifier: ^1.2.1 version: 1.2.1(preact@10.19.3) astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro preact: specifier: ^10.19.2 @@ -290,7 +254,7 @@ importers: specifier: ^18.2.15 version: 18.2.18 astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro react: specifier: ^18.2.0 @@ -305,7 +269,7 @@ importers: specifier: ^4.0.1 version: link:../../packages/integrations/solid astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro solid-js: specifier: ^1.8.5 @@ -314,10 +278,10 @@ importers: examples/framework-svelte: dependencies: '@astrojs/svelte': - specifier: ^5.1.0 + specifier: ^5.2.0 version: link:../../packages/integrations/svelte astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro svelte: specifier: ^4.2.5 @@ -329,7 +293,7 @@ importers: specifier: ^4.0.8 version: link:../../packages/integrations/vue astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro vue: specifier: ^3.3.8 @@ -341,13 +305,13 @@ importers: specifier: ^8.2.1 version: link:../../packages/integrations/node astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/middleware: @@ -356,7 +320,7 @@ importers: specifier: ^8.2.1 version: link:../../packages/integrations/node astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro html-minifier: specifier: ^4.0.0 @@ -369,19 +333,19 @@ importers: examples/minimal: dependencies: astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/non-html-pages: dependencies: astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/ssr: @@ -390,10 +354,10 @@ importers: specifier: ^8.2.1 version: link:../../packages/integrations/node '@astrojs/svelte': - specifier: ^5.1.0 + specifier: ^5.2.0 version: link:../../packages/integrations/svelte astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro svelte: specifier: ^4.2.5 @@ -402,7 +366,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro sass: specifier: ^1.69.5 @@ -420,7 +384,7 @@ importers: specifier: ^5.1.0 version: link:../../packages/integrations/tailwind astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/with-markdoc: @@ -429,7 +393,7 @@ importers: specifier: ^0.9.0 version: link:../../packages/integrations/markdoc astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/with-markdown-plugins: @@ -438,7 +402,7 @@ importers: specifier: ^4.2.1 version: link:../../packages/markdown/remark astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro hast-util-select: specifier: ^6.0.2 @@ -459,7 +423,7 @@ importers: examples/with-markdown-shiki: dependencies: astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro examples/with-mdx: @@ -471,7 +435,7 @@ importers: specifier: ^3.1.1 version: link:../../packages/integrations/preact astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro preact: specifier: ^10.19.2 @@ -486,7 +450,7 @@ importers: specifier: ^0.5.0 version: 0.5.0(nanostores@0.9.5)(preact@10.19.3) astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro nanostores: specifier: ^0.9.5 @@ -507,7 +471,7 @@ importers: specifier: ^1.6.3 version: 1.6.4 astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro autoprefixer: specifier: ^10.4.15 @@ -525,7 +489,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^4.4.5 + specifier: ^4.4.6 version: link:../../packages/astro vitest: specifier: ^1.2.2 @@ -5524,23 +5488,6 @@ packages: - prettier-plugin-astro dev: false - /@astrojs/check@0.5.5(prettier-plugin-astro@0.12.3)(prettier@3.1.1)(typescript@5.3.3): - resolution: {integrity: sha512-05LjyUB14Cv2mkLNqY4r2igI2eu0bq/HcKCfFNIoBPLyNW7VUDr9tciD9VJXXT3s0e6JHneIs6bQW5ipjmaRcw==} - hasBin: true - peerDependencies: - typescript: ^5.0.0 - dependencies: - '@astrojs/language-server': 2.7.5(prettier-plugin-astro@0.12.3)(prettier@3.1.1)(typescript@5.3.3) - chokidar: 3.5.3 - fast-glob: 3.3.2 - kleur: 4.1.5 - typescript: 5.3.3 - yargs: 17.7.2 - transitivePeerDependencies: - - prettier - - prettier-plugin-astro - dev: false - /@astrojs/cli-kit@0.2.5: resolution: {integrity: sha512-j6zpNUjtHJGEIKkTrTPvQD3G/sJUKyseJty42iVR3HqytzqHwLK165vptdT4NZKfZ082yLnUtsOXxRyIdfm/AQ==} dependencies: @@ -5634,40 +5581,6 @@ packages: - typescript dev: false - /@astrojs/language-server@2.7.5(prettier-plugin-astro@0.12.3)(prettier@3.1.1)(typescript@5.3.3): - resolution: {integrity: sha512-iMfZ3UaqTgIL+z/eUDOppRa1bGUAteWRihbWq5mGAgvr/hu384ZXUKJcqV3BBux0MBsRXwjxzrC2dJu9IpAaoA==} - hasBin: true - peerDependencies: - prettier: ^3.0.0 - prettier-plugin-astro: '>=0.11.0' - peerDependenciesMeta: - prettier: - optional: true - prettier-plugin-astro: - optional: true - dependencies: - '@astrojs/compiler': 2.5.3 - '@jridgewell/sourcemap-codec': 1.4.15 - '@volar/kit': 2.0.4(typescript@5.3.3) - '@volar/language-core': 2.0.4 - '@volar/language-server': 2.0.4 - '@volar/language-service': 2.0.4 - '@volar/typescript': 2.0.4 - fast-glob: 3.3.2 - prettier: 3.1.1 - prettier-plugin-astro: 0.12.3 - volar-service-css: 0.0.30(@volar/language-service@2.0.4) - volar-service-emmet: 0.0.30(@volar/language-service@2.0.4) - volar-service-html: 0.0.30(@volar/language-service@2.0.4) - volar-service-prettier: 0.0.30(@volar/language-service@2.0.4)(prettier@3.1.1) - volar-service-typescript: 0.0.30(@volar/language-service@2.0.4)(@volar/typescript@2.0.4) - volar-service-typescript-twoslash-queries: 0.0.30(@volar/language-service@2.0.4) - vscode-html-languageservice: 5.1.2 - vscode-uri: 3.0.8 - transitivePeerDependencies: - - typescript - dev: false - /@babel/code-frame@7.23.5: resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} engines: {node: '>=6.9.0'} @@ -8625,19 +8538,6 @@ packages: vscode-uri: 3.0.8 dev: false - /@volar/kit@2.0.4(typescript@5.3.3): - resolution: {integrity: sha512-USRx/o0jKz7o8+lEKWMxWqbqvC46XFrf3IE6CZBYzRo9kM7RERQLwUYaoT2bOcHt5DQWublpnTgdgHMm37Gysg==} - peerDependencies: - typescript: '*' - dependencies: - '@volar/language-service': 2.0.4 - '@volar/typescript': 2.0.4 - typesafe-path: 0.2.2 - typescript: 5.3.3 - vscode-languageserver-textdocument: 1.0.11 - vscode-uri: 3.0.8 - dev: false - /@volar/language-core@1.10.10: resolution: {integrity: sha512-nsV1o3AZ5n5jaEAObrS3MWLBWaGwUj/vAsc15FVNIv+DbpizQRISg9wzygsHBr56ELRH8r4K75vkYNMtsSNNWw==} dependencies: @@ -8877,14 +8777,6 @@ packages: dependencies: acorn: 8.11.3 - /acorn-typescript@1.4.13(acorn@8.11.3): - resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==} - peerDependencies: - acorn: '>=8.9.0' - dependencies: - acorn: 8.11.3 - dev: false - /acorn-walk@8.3.2: resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} engines: {node: '>=0.4.0'} @@ -10657,10 +10549,6 @@ packages: - supports-color dev: true - /esm-env@1.0.0: - resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==} - dev: false - /esm@3.2.25: resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} engines: {node: '>=6'} @@ -10687,13 +10575,6 @@ packages: estraverse: 5.3.0 dev: true - /esrap@1.2.1: - resolution: {integrity: sha512-dhkcOLfN/aDdMFI1iwPEcy/XqAZzGNfgfEJjZozy2tia6u0dQoZyXzkRshHTckuNsM+c0CYQndY+uRFe3N+AIQ==} - dependencies: - '@jridgewell/sourcemap-codec': 1.4.15 - '@types/estree': 1.0.5 - dev: false - /esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} @@ -15828,25 +15709,6 @@ packages: magic-string: 0.30.5 periscopic: 3.1.0 - /svelte@5.0.0-next.60: - resolution: {integrity: sha512-1BchsRCMVLqt4BY8DxELt0TGveYQgDGaTkAXt/QMjyKEbXnwRAHp7/9KwUOJPGW68huZGccXo3Cez83fMv7yBA==} - engines: {node: '>=18'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@jridgewell/sourcemap-codec': 1.4.15 - '@types/estree': 1.0.5 - acorn: 8.11.3 - acorn-typescript: 1.4.13(acorn@8.11.3) - aria-query: 5.3.0 - axobject-query: 4.0.0 - esm-env: 1.0.0 - esrap: 1.2.1 - is-reference: 3.0.2 - locate-character: 3.0.0 - magic-string: 0.30.7 - zimmerframe: 1.1.2 - dev: false - /svg-tags@1.0.0: resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} dev: false @@ -16330,12 +16192,6 @@ packages: hasBin: true dev: false - /typescript@5.3.3: - resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} - engines: {node: '>=14.17'} - hasBin: true - dev: false - /ufo@1.4.0: resolution: {integrity: sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ==} dev: false @@ -17424,10 +17280,6 @@ packages: engines: {node: '>=12.20'} dev: false - /zimmerframe@1.1.2: - resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==} - dev: false - /zod@3.22.4: resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} dev: false