From ddc98eb2add2836aef77541978629dcef6d712d6 Mon Sep 17 00:00:00 2001 From: "Houston (Bot)" <108291165+astrobot-houston@users.noreply.github.com> Date: Mon, 31 Mar 2025 08:46:15 -0700 Subject: [PATCH] [ci] release (#13513) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/calm-beans-roll.md | 5 -- .changeset/ninety-nights-hug.md | 7 -- .changeset/slick-radios-draw.md | 17 ---- .changeset/twenty-dogs-listen.md | 51 ----------- 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 | 4 +- 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 | 4 +- 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 | 12 +++ packages/astro/package.json | 2 +- packages/db/CHANGELOG.md | 9 ++ packages/db/package.json | 2 +- packages/integrations/alpinejs/CHANGELOG.md | 6 ++ packages/integrations/alpinejs/package.json | 2 +- packages/integrations/cloudflare/CHANGELOG.md | 57 +++++++++++++ packages/integrations/cloudflare/package.json | 2 +- packages/integrations/markdoc/CHANGELOG.md | 6 ++ packages/integrations/markdoc/package.json | 2 +- packages/integrations/mdx/CHANGELOG.md | 6 ++ packages/integrations/mdx/package.json | 2 +- packages/integrations/netlify/CHANGELOG.md | 9 ++ packages/integrations/netlify/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 +- packages/studio/CHANGELOG.md | 6 ++ packages/studio/package.json | 2 +- pnpm-lock.yaml | 85 +++++++++---------- 54 files changed, 238 insertions(+), 178 deletions(-) delete mode 100644 .changeset/calm-beans-roll.md delete mode 100644 .changeset/ninety-nights-hug.md delete mode 100644 .changeset/slick-radios-draw.md delete mode 100644 .changeset/twenty-dogs-listen.md diff --git a/.changeset/calm-beans-roll.md b/.changeset/calm-beans-roll.md deleted file mode 100644 index ac00de5d6e..0000000000 --- a/.changeset/calm-beans-roll.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -The `ActionAPIContext.rewrite` method is deprecated and will be removed in a future major version of Astro diff --git a/.changeset/ninety-nights-hug.md b/.changeset/ninety-nights-hug.md deleted file mode 100644 index aa4017497a..0000000000 --- a/.changeset/ninety-nights-hug.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'astro': patch ---- - -Fixes a bug where the functions `Astro.preferredLocale` and `Astro.preferredLocaleList` would return the incorrect locales -when the Astro configuration specifies a list of `codes`. Before, the functions would return the `path`, instead now the functions -return a list built from `codes`. diff --git a/.changeset/slick-radios-draw.md b/.changeset/slick-radios-draw.md deleted file mode 100644 index 0d8b9dcd7a..0000000000 --- a/.changeset/slick-radios-draw.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -'@astrojs/cloudflare': patch -'@astrojs/alpinejs': patch -'@astrojs/markdoc': patch -'@astrojs/netlify': patch -'@astrojs/preact': patch -'@astrojs/svelte': patch -'@astrojs/react': patch -'@astrojs/solid-js': patch -'@astrojs/mdx': patch -'@astrojs/vue': patch -'@astrojs/studio': patch -'astro': patch -'@astrojs/db': patch ---- - -update `vite` to the latest version diff --git a/.changeset/twenty-dogs-listen.md b/.changeset/twenty-dogs-listen.md deleted file mode 100644 index de765d110b..0000000000 --- a/.changeset/twenty-dogs-listen.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -'@astrojs/cloudflare': minor ---- - -Automatically configures Cloudflare KV storage when experimental sessions are enabled - - -If the `experimental.session` flag is enabled when using the Cloudflare adapter, Astro will automatically configure the session storage using the Cloudflare KV driver. You can still manually configure the session storage if you need to use a different driver or want to customize the session storage configuration. If you want to use sessions, you will need to create the KV namespace and declare it in your wrangler config. You can do this using the Wrangler CLI: - -```sh -npx wrangler kv namespace create SESSION -``` - -This will log the id of the created namespace. You can then add it to your `wrangler.json`/`wrangler.toml` file like this: - -```jsonc -// wrangler.json -{ - "kv_namespaces": [ - { - "binding": "SESSION", - "id": "" - } - ] -} -``` - -By default it uses the binding name `SESSION`, but if you want to use a different binding name you can do so by passing the `sessionKVBindingName` option to the adapter. For example: - -```js -import { defineConfig } from 'astro/config'; -import cloudflare from '@astrojs/cloudflare'; -export default defineConfig({ - output: 'server', - site: `http://example.com`, - adapter: cloudflare({ - platformProxy: { - enabled: true, - }, - sessionKVBindingName: 'MY_SESSION', - }), - experimental: { - session: true, - } -}); - -``` - -See [the Cloudflare KV docs](https://developers.cloudflare.com/kv/concepts/kv-namespaces/) for more details on setting up KV namespaces. - -See [the experimental session docs](https://docs.astro.build/en/reference/experimental-flags/sessions/) for more information on configuring session storage. diff --git a/examples/basics/package.json b/examples/basics/package.json index 482f3a6741..778766eb2d 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.5.5" + "astro": "^5.5.6" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index d2f14bdb83..62fe194498 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.2.2", + "@astrojs/mdx": "^4.2.3", "@astrojs/rss": "^4.0.11", "@astrojs/sitemap": "^3.3.0", - "astro": "^5.5.5" + "astro": "^5.5.6" } } diff --git a/examples/component/package.json b/examples/component/package.json index 18db2f2203..d44b7c818a 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.5.5" + "astro": "^5.5.6" }, "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 bef4910601..59b81032e7 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.2.2", - "astro": "^5.5.5", + "@astrojs/react": "^4.2.3", + "astro": "^5.5.6", "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 dd8c45c7ba..9cfbece260 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/alpinejs": "^0.4.4", + "@astrojs/alpinejs": "^0.4.5", "@types/alpinejs": "^3.13.11", "alpinejs": "^3.14.9", - "astro": "^5.5.5" + "astro": "^5.5.6" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 6faeb588fa..7ae0cf9d16 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -10,14 +10,14 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.7", - "@astrojs/react": "^4.2.2", - "@astrojs/solid-js": "^5.0.6", - "@astrojs/svelte": "^7.0.8", - "@astrojs/vue": "^5.0.8", + "@astrojs/preact": "^4.0.8", + "@astrojs/react": "^4.2.3", + "@astrojs/solid-js": "^5.0.7", + "@astrojs/svelte": "^7.0.9", + "@astrojs/vue": "^5.0.9", "@types/react": "^18.3.20", "@types/react-dom": "^18.3.5", - "astro": "^5.5.5", + "astro": "^5.5.6", "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 422341f232..7f11b5f7bc 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.7", + "@astrojs/preact": "^4.0.8", "@preact/signals": "^2.0.2", - "astro": "^5.5.5", + "astro": "^5.5.6", "preact": "^10.26.4" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index d7ecb04dfa..eac4eb9d0f 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/react": "^4.2.2", + "@astrojs/react": "^4.2.3", "@types/react": "^18.3.20", "@types/react-dom": "^18.3.5", - "astro": "^5.5.5", + "astro": "^5.5.6", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index ee5677d477..e29f7a4154 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/solid-js": "^5.0.6", - "astro": "^5.5.5", + "@astrojs/solid-js": "^5.0.7", + "astro": "^5.5.6", "solid-js": "^1.9.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 1f2fc1e757..c8ea5d1cfc 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^7.0.8", - "astro": "^5.5.5", + "@astrojs/svelte": "^7.0.9", + "astro": "^5.5.6", "svelte": "^5.25.3" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 4c573c9de4..8a2de94d81 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/vue": "^5.0.8", - "astro": "^5.5.5", + "@astrojs/vue": "^5.0.9", + "astro": "^5.5.6", "vue": "^3.5.13" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 34eea701a3..6ca42b4fa7 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.1.3", - "astro": "^5.5.5" + "astro": "^5.5.6" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index eb0f4715a8..1cbf2fb9bf 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.5.5" + "astro": "^5.5.6" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 57b32ddb87..0252013a58 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.5.5" + "astro": "^5.5.6" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 04c485f3ac..c12a579fcb 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.5.5" + "astro": "^5.5.6" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index b28cc71af6..d9714fcafd 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.8", - "astro": "^5.5.5", + "@astrojs/svelte": "^7.0.9", + "astro": "^5.5.6", "svelte": "^5.25.3" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index 978e385eed..d264f59696 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.5.5", + "astro": "^5.5.6", "sass": "^1.86.0", "sharp": "^0.33.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 8c41c85e2a..adcf8bb215 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.5" + "astro": "^5.5.6" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 792dcb6fb2..486cc461da 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.13.2", - "astro": "^5.5.5" + "@astrojs/markdoc": "^0.13.3", + "astro": "^5.5.6" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 0a1c94ad9d..a4d27f8c3b 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.2.2", - "@astrojs/preact": "^4.0.7", - "astro": "^5.5.5", + "@astrojs/mdx": "^4.2.3", + "@astrojs/preact": "^4.0.8", + "astro": "^5.5.6", "preact": "^10.26.4" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 73e2706505..444c47d2a1 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.7", + "@astrojs/preact": "^4.0.8", "@nanostores/preact": "^0.5.2", - "astro": "^5.5.5", + "astro": "^5.5.6", "nanostores": "^0.11.4", "preact": "^10.26.4" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 97c47a03a6..e96f6de09a 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.2.2", + "@astrojs/mdx": "^4.2.3", "@tailwindcss/vite": "^4.0.17", "@types/canvas-confetti": "^1.9.0", - "astro": "^5.5.5", + "astro": "^5.5.6", "canvas-confetti": "^1.9.3", "tailwindcss": "^4.0.17" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 0ae45b4f91..16612a1f95 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.5.5", + "astro": "^5.5.6", "vitest": "^3.0.9" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 9e4352a35e..b024fc6c9f 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,17 @@ # astro +## 5.5.6 + +### Patch Changes + +- [#13429](https://github.com/withastro/astro/pull/13429) [`06de673`](https://github.com/withastro/astro/commit/06de673375f2339eb1bf8eda03d79177598979a9) Thanks [@ematipico](https://github.com/ematipico)! - The `ActionAPIContext.rewrite` method is deprecated and will be removed in a future major version of Astro + +- [#13524](https://github.com/withastro/astro/pull/13524) [`82cd583`](https://github.com/withastro/astro/commit/82cd5832860d70ea7524473ae927db0cc2682b12) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where the functions `Astro.preferredLocale` and `Astro.preferredLocaleList` would return the incorrect locales + when the Astro configuration specifies a list of `codes`. Before, the functions would return the `path`, instead now the functions + return a list built from `codes`. + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + ## 5.5.5 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index b4f03a8342..f60ba43257 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "5.5.5", + "version": "5.5.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/db/CHANGELOG.md b/packages/db/CHANGELOG.md index 547b18be44..d3816468d8 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,14 @@ # @astrojs/db +## 0.14.10 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + +- Updated dependencies [[`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3)]: + - @astrojs/studio@0.1.6 + ## 0.14.9 ### Patch Changes diff --git a/packages/db/package.json b/packages/db/package.json index 1431b8922e..5bdfb64701 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/db", - "version": "0.14.9", + "version": "0.14.10", "description": "Add libSQL and Astro Studio support to your Astro site", "license": "MIT", "repository": { diff --git a/packages/integrations/alpinejs/CHANGELOG.md b/packages/integrations/alpinejs/CHANGELOG.md index c7c21753a9..795833d427 100644 --- a/packages/integrations/alpinejs/CHANGELOG.md +++ b/packages/integrations/alpinejs/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/alpinejs +## 0.4.5 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + ## 0.4.4 ### Patch Changes diff --git a/packages/integrations/alpinejs/package.json b/packages/integrations/alpinejs/package.json index 4ac5ae595e..d4b38f6f0f 100644 --- a/packages/integrations/alpinejs/package.json +++ b/packages/integrations/alpinejs/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/alpinejs", "description": "Use Alpine within Astro", - "version": "0.4.4", + "version": "0.4.5", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md index 4e90a3dbea..338142237c 100644 --- a/packages/integrations/cloudflare/CHANGELOG.md +++ b/packages/integrations/cloudflare/CHANGELOG.md @@ -1,5 +1,62 @@ # @astrojs/cloudflare +## 12.4.0 + +### Minor Changes + +- [#13514](https://github.com/withastro/astro/pull/13514) [`a9aafec`](https://github.com/withastro/astro/commit/a9aafec47a4d8a92c826663dca2f9850643651ec) Thanks [@ascorbic](https://github.com/ascorbic)! - Automatically configures Cloudflare KV storage when experimental sessions are enabled + + If the `experimental.session` flag is enabled when using the Cloudflare adapter, Astro will automatically configure the session storage using the Cloudflare KV driver. You can still manually configure the session storage if you need to use a different driver or want to customize the session storage configuration. If you want to use sessions, you will need to create the KV namespace and declare it in your wrangler config. You can do this using the Wrangler CLI: + + ```sh + npx wrangler kv namespace create SESSION + ``` + + This will log the id of the created namespace. You can then add it to your `wrangler.json`/`wrangler.toml` file like this: + + ```jsonc + // wrangler.json + { + "kv_namespaces": [ + { + "binding": "SESSION", + "id": "", + }, + ], + } + ``` + + By default it uses the binding name `SESSION`, but if you want to use a different binding name you can do so by passing the `sessionKVBindingName` option to the adapter. For example: + + ```js + import { defineConfig } from 'astro/config'; + import cloudflare from '@astrojs/cloudflare'; + export default defineConfig({ + output: 'server', + site: `http://example.com`, + adapter: cloudflare({ + platformProxy: { + enabled: true, + }, + sessionKVBindingName: 'MY_SESSION', + }), + experimental: { + session: true, + }, + }); + ``` + + See [the Cloudflare KV docs](https://developers.cloudflare.com/kv/concepts/kv-namespaces/) for more details on setting up KV namespaces. + + See [the experimental session docs](https://docs.astro.build/en/reference/experimental-flags/sessions/) for more information on configuring session storage. + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + +- Updated dependencies []: + - @astrojs/underscore-redirects@0.6.0 + ## 12.3.1 ### Patch Changes diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index fcc51d44bf..dc83e662e1 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.3.1", + "version": "12.4.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md index b4c0f1a01c..c285ad472c 100644 --- a/packages/integrations/markdoc/CHANGELOG.md +++ b/packages/integrations/markdoc/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/markdoc +## 0.13.3 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + ## 0.13.2 ### Patch Changes diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json index 7a6bd3d6c0..d40884bf87 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.13.2", + "version": "0.13.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index a185942c22..9b40bc062c 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/mdx +## 4.2.3 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + ## 4.2.2 ### Patch Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index f0f16d490e..d583603299 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.2.2", + "version": "4.2.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md index f97e02a6a1..e94f42ced3 100644 --- a/packages/integrations/netlify/CHANGELOG.md +++ b/packages/integrations/netlify/CHANGELOG.md @@ -1,5 +1,14 @@ # @astrojs/netlify +## 6.2.5 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + +- Updated dependencies []: + - @astrojs/underscore-redirects@0.6.0 + ## 6.2.4 ### Patch Changes diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json index 8c9c24e54b..a971923e05 100644 --- a/packages/integrations/netlify/package.json +++ b/packages/integrations/netlify/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/netlify", "description": "Deploy your site to Netlify", - "version": "6.2.4", + "version": "6.2.5", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md index a8bf935599..906b64a852 100644 --- a/packages/integrations/preact/CHANGELOG.md +++ b/packages/integrations/preact/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/preact +## 4.0.8 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + ## 4.0.7 ### Patch Changes diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index fae3acfbed..8c94b655eb 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.7", + "version": "4.0.8", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index f8f2d366d1..e17acc3e60 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/react +## 4.2.3 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + ## 4.2.2 ### Patch Changes diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index 5c6fb608b0..49b1907b86 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.2.2", + "version": "4.2.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md index 8c96d18db1..31298c9294 100644 --- a/packages/integrations/solid/CHANGELOG.md +++ b/packages/integrations/solid/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/solid-js +## 5.0.7 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + ## 5.0.6 ### Patch Changes diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json index eba5d12f53..235873dc30 100644 --- a/packages/integrations/solid/package.json +++ b/packages/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/solid-js", - "version": "5.0.6", + "version": "5.0.7", "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 c7b06bc925..22605fbcc8 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/svelte +## 7.0.9 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + ## 7.0.8 ### Patch Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index aa36f62c63..ebc32e0a39 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "7.0.8", + "version": "7.0.9", "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 2fa891158f..38eddca3ed 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/vue +## 5.0.9 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + ## 5.0.8 ### Patch Changes diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index f8f8a4eeb4..639e6a24f4 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "5.0.8", + "version": "5.0.9", "description": "Use Vue components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/studio/CHANGELOG.md b/packages/studio/CHANGELOG.md index c255492284..f8d301b656 100644 --- a/packages/studio/CHANGELOG.md +++ b/packages/studio/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/studio +## 0.1.6 + +### Patch Changes + +- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version + ## 0.1.5 ### Patch Changes diff --git a/packages/studio/package.json b/packages/studio/package.json index 622d8ffd14..722fa906b6 100644 --- a/packages/studio/package.json +++ b/packages/studio/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/studio", - "version": "0.1.5", + "version": "0.1.6", "description": "Internal package powering integrations between Astro projects and Astro Studio", "license": "MIT", "repository": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8c7d9f50b4..37292c7ba5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -142,13 +142,13 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro examples/blog: dependencies: '@astrojs/mdx': - specifier: ^4.2.2 + specifier: ^4.2.3 version: link:../../packages/integrations/mdx '@astrojs/rss': specifier: ^4.0.11 @@ -157,22 +157,22 @@ importers: specifier: ^3.3.0 version: link:../../packages/integrations/sitemap astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro examples/container-with-vitest: dependencies: '@astrojs/react': - specifier: ^4.2.2 + specifier: ^4.2.3 version: link:../../packages/integrations/react astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -194,7 +194,7 @@ importers: examples/framework-alpine: dependencies: '@astrojs/alpinejs': - specifier: ^0.4.4 + specifier: ^0.4.5 version: link:../../packages/integrations/alpinejs '@types/alpinejs': specifier: ^3.13.11 @@ -203,25 +203,25 @@ importers: specifier: ^3.14.9 version: 3.14.9 astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro examples/framework-multiple: dependencies: '@astrojs/preact': - specifier: ^4.0.7 + specifier: ^4.0.8 version: link:../../packages/integrations/preact '@astrojs/react': - specifier: ^4.2.2 + specifier: ^4.2.3 version: link:../../packages/integrations/react '@astrojs/solid-js': - specifier: ^5.0.6 + specifier: ^5.0.7 version: link:../../packages/integrations/solid '@astrojs/svelte': - specifier: ^7.0.8 + specifier: ^7.0.9 version: link:../../packages/integrations/svelte '@astrojs/vue': - specifier: ^5.0.8 + specifier: ^5.0.9 version: link:../../packages/integrations/vue '@types/react': specifier: ^18.3.20 @@ -230,7 +230,7 @@ importers: specifier: ^18.3.5 version: 18.3.5(@types/react@18.3.20) astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro preact: specifier: ^10.26.4 @@ -254,13 +254,13 @@ importers: examples/framework-preact: dependencies: '@astrojs/preact': - specifier: ^4.0.7 + specifier: ^4.0.8 version: link:../../packages/integrations/preact '@preact/signals': specifier: ^2.0.2 version: 2.0.2(preact@10.26.4) astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro preact: specifier: ^10.26.4 @@ -269,7 +269,7 @@ importers: examples/framework-react: dependencies: '@astrojs/react': - specifier: ^4.2.2 + specifier: ^4.2.3 version: link:../../packages/integrations/react '@types/react': specifier: ^18.3.20 @@ -278,7 +278,7 @@ importers: specifier: ^18.3.5 version: 18.3.5(@types/react@18.3.20) astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -290,10 +290,10 @@ importers: examples/framework-solid: dependencies: '@astrojs/solid-js': - specifier: ^5.0.6 + specifier: ^5.0.7 version: link:../../packages/integrations/solid astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro solid-js: specifier: ^1.9.5 @@ -302,10 +302,10 @@ importers: examples/framework-svelte: dependencies: '@astrojs/svelte': - specifier: ^7.0.8 + specifier: ^7.0.9 version: link:../../packages/integrations/svelte astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro svelte: specifier: ^5.25.3 @@ -314,10 +314,10 @@ importers: examples/framework-vue: dependencies: '@astrojs/vue': - specifier: ^5.0.8 + specifier: ^5.0.9 version: link:../../packages/integrations/vue astro: - specifier: ^5.5.5 + specifier: ^5.5.6 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.5 + specifier: ^5.5.6 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.5.5 + specifier: ^5.5.6 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.8 + specifier: ^7.0.9 version: link:../../packages/integrations/svelte astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro svelte: specifier: ^5.25.3 @@ -368,7 +368,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro sass: specifier: ^1.86.0 @@ -383,28 +383,28 @@ importers: specifier: ^18.17.8 version: 18.19.50 astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro examples/with-markdoc: dependencies: '@astrojs/markdoc': - specifier: ^0.13.2 + specifier: ^0.13.3 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro examples/with-mdx: dependencies: '@astrojs/mdx': - specifier: ^4.2.2 + specifier: ^4.2.3 version: link:../../packages/integrations/mdx '@astrojs/preact': - specifier: ^4.0.7 + specifier: ^4.0.8 version: link:../../packages/integrations/preact astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro preact: specifier: ^10.26.4 @@ -413,13 +413,13 @@ importers: examples/with-nanostores: dependencies: '@astrojs/preact': - specifier: ^4.0.7 + specifier: ^4.0.8 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.5 + specifier: ^5.5.6 version: link:../../packages/astro nanostores: specifier: ^0.11.4 @@ -431,7 +431,7 @@ importers: examples/with-tailwindcss: dependencies: '@astrojs/mdx': - specifier: ^4.2.2 + specifier: ^4.2.3 version: link:../../packages/integrations/mdx '@tailwindcss/vite': specifier: ^4.0.17 @@ -440,7 +440,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.3 @@ -452,7 +452,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^5.5.5 + specifier: ^5.5.6 version: link:../../packages/astro vitest: specifier: ^3.0.9 @@ -9947,7 +9947,6 @@ packages: libsql@0.5.3: resolution: {integrity: sha512-S3WR8WNCJV1VXraBFUKjDA6+8LcNDJMLm+83qohm1O3YM1iVqV2+/XN3SXOxpxVjuL4g/rLrjO5kzygkPefCFQ==} - cpu: [x64, arm64, wasm32] os: [darwin, linux, win32] lightningcss-darwin-arm64@1.29.2: