diff options
author | 2025-04-14 01:42:24 -0700 | |
---|---|---|
committer | 2025-04-14 09:42:24 +0100 | |
commit | 159b5348a956238bdef8bc8cc2aeb8a1af32e2e4 (patch) | |
tree | c4801715659dd1f9e1c1566d8bc0b1a07355f7bf | |
parent | 884c57d1a977d4ec770c0069170d608b67fd0565 (diff) | |
download | astro-@astrojs/db@0.14.11.tar.gz astro-@astrojs/db@0.14.11.tar.zst astro-@astrojs/db@0.14.11.zip |
[ci] release (#13558)astro@5.6.2@astrojs/vue@5.0.10@astrojs/svelte@7.0.10@astrojs/studio@0.1.7@astrojs/solid-js@5.0.8@astrojs/react@4.2.4@astrojs/preact@4.0.9@astrojs/netlify@6.2.6@astrojs/mdx@4.2.4@astrojs/markdoc@0.13.4@astrojs/db@0.14.11@astrojs/cloudflare@12.4.1@astrojs/alpinejs@0.4.6
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
58 files changed, 236 insertions, 176 deletions
diff --git a/.changeset/brown-lines-talk.md b/.changeset/brown-lines-talk.md deleted file mode 100644 index fa7104b15..000000000 --- a/.changeset/brown-lines-talk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a regression that allowed prerendered code to leak into the server bundle. diff --git a/.changeset/bumpy-onions-mix.md b/.changeset/bumpy-onions-mix.md deleted file mode 100644 index b2c95a0f6..000000000 --- a/.changeset/bumpy-onions-mix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Reduces duplicate code in server islands scripts by extracting shared logic into a helper function. diff --git a/.changeset/five-rings-smile.md b/.changeset/five-rings-smile.md deleted file mode 100644 index 6a784dbd6..000000000 --- a/.changeset/five-rings-smile.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a memory leak when using SVG assets. diff --git a/.changeset/good-worms-heal.md b/.changeset/good-worms-heal.md deleted file mode 100644 index e501ab397..000000000 --- a/.changeset/good-worms-heal.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -'astro': patch ---- - -Deprecates the asset utility function `emitESMImage()` and adds a new `emitImageMetadata()` to be used instead - -The function -`emitESMImage()` is now deprecated. It will continue to function, but it is no longer recommended nor supported. This function will be completely removed in a next major release of Astro. - -Please replace it with the new function`emitImageMetadata()` as soon as you are able to do so: - -```diff -- import { emitESMImage } from "astro/assets/utils"; -+ import { emitImageMetadata } from "astro/assets/utils"; -``` - -The new function returns the same signature as the previous one. However, the new function removes two deprecated arguments that were not meant to be exposed for public use: `_watchMode` and `experimentalSvgEnabled`. Since it was possible to access these with the old function, you may need to verify that your code still works as intended with `emitImageMetadata()`. diff --git a/.changeset/honest-meals-bathe.md b/.changeset/honest-meals-bathe.md deleted file mode 100644 index 8009356dd..000000000 --- a/.changeset/honest-meals-bathe.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 latest version to fix CVE diff --git a/.changeset/pretty-games-walk.md b/.changeset/pretty-games-walk.md deleted file mode 100644 index 9fe0398ff..000000000 --- a/.changeset/pretty-games-walk.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 ---- - -Updates vite to the latest version diff --git a/.changeset/wet-onions-kick.md b/.changeset/wet-onions-kick.md deleted file mode 100644 index 63398c995..000000000 --- a/.changeset/wet-onions-kick.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'astro': patch ---- - -Support for Deno to install npm pacakges. - -Deno requires npm prefix to install packages on npm. For example, to install react, we need to run `deno add npm:react`. But currently the command executed is `deno add react`, which doesn't work. So, we change the package names to have an npm prefix if you are using Deno. diff --git a/.changeset/yellow-dogs-say.md b/.changeset/yellow-dogs-say.md deleted file mode 100644 index 969ed4732..000000000 --- a/.changeset/yellow-dogs-say.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes an issue with the client router where some attributes of the root element were not updated during swap, including the transition scope. diff --git a/examples/basics/package.json b/examples/basics/package.json index 4def05c02..06502e152 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.6.1" + "astro": "^5.6.2" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index f2940b215..62e7554f7 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.2.3", + "@astrojs/mdx": "^4.2.4", "@astrojs/rss": "^4.0.11", "@astrojs/sitemap": "^3.3.0", - "astro": "^5.6.1" + "astro": "^5.6.2" } } diff --git a/examples/component/package.json b/examples/component/package.json index 6fa5d8a66..283642051 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.6.1" + "astro": "^5.6.2" }, "peerDependencies": { "astro": "^4.0.0 || ^5.0.0" diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json index 7f93fc4d6..f8b97a7a9 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.3", - "astro": "^5.6.1", + "@astrojs/react": "^4.2.4", + "astro": "^5.6.2", "react": "^18.3.1", "react-dom": "^18.3.1", "vitest": "^3.1.1" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 32e609cbf..048838d0b 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/alpinejs": "^0.4.5", + "@astrojs/alpinejs": "^0.4.6", "@types/alpinejs": "^3.13.11", "alpinejs": "^3.14.9", - "astro": "^5.6.1" + "astro": "^5.6.2" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 1ffe7774d..81f7a4e7c 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -10,14 +10,14 @@ "astro": "astro" }, "dependencies": { - "@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", + "@astrojs/preact": "^4.0.9", + "@astrojs/react": "^4.2.4", + "@astrojs/solid-js": "^5.0.8", + "@astrojs/svelte": "^7.0.10", + "@astrojs/vue": "^5.0.10", "@types/react": "^18.3.20", "@types/react-dom": "^18.3.6", - "astro": "^5.6.1", + "astro": "^5.6.2", "preact": "^10.26.5", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 5e839f47a..66cf2adbe 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.8", + "@astrojs/preact": "^4.0.9", "@preact/signals": "^2.0.3", - "astro": "^5.6.1", + "astro": "^5.6.2", "preact": "^10.26.5" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 36127da9a..7dafc6ba0 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/react": "^4.2.3", + "@astrojs/react": "^4.2.4", "@types/react": "^18.3.20", "@types/react-dom": "^18.3.6", - "astro": "^5.6.1", + "astro": "^5.6.2", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 056729416..9694fd5dc 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.7", - "astro": "^5.6.1", + "@astrojs/solid-js": "^5.0.8", + "astro": "^5.6.2", "solid-js": "^1.9.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 2095cefe6..e20fad929 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^7.0.9", - "astro": "^5.6.1", + "@astrojs/svelte": "^7.0.10", + "astro": "^5.6.2", "svelte": "^5.25.7" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 3e2b2fcd1..3ef65f479 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/vue": "^5.0.9", - "astro": "^5.6.1", + "@astrojs/vue": "^5.0.10", + "astro": "^5.6.2", "vue": "^3.5.13" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index ebae3ff46..250b4c771 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.1.3", - "astro": "^5.6.1" + "astro": "^5.6.2" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 61f1cf29a..64a78eaf6 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.6.1" + "astro": "^5.6.2" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 7cb89c699..f00c8bf04 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.6.1" + "astro": "^5.6.2" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 3fa7ef99c..bec99f1f8 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.6.1" + "astro": "^5.6.2" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 2ce09ea97..8432ee97e 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.9", - "astro": "^5.6.1", + "@astrojs/svelte": "^7.0.10", + "astro": "^5.6.2", "svelte": "^5.25.7" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index 96ca58046..b4bafb339 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.6.1", + "astro": "^5.6.2", "sass": "^1.86.3", "sharp": "^0.33.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index c5e44488e..917fde104 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.6.1" + "astro": "^5.6.2" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 4e4bc9678..ac79cde9a 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.13.3", - "astro": "^5.6.1" + "@astrojs/markdoc": "^0.13.4", + "astro": "^5.6.2" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 018944184..c70e37883 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.2.3", - "@astrojs/preact": "^4.0.8", - "astro": "^5.6.1", + "@astrojs/mdx": "^4.2.4", + "@astrojs/preact": "^4.0.9", + "astro": "^5.6.2", "preact": "^10.26.5" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index b8d667134..47fbf9352 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.8", + "@astrojs/preact": "^4.0.9", "@nanostores/preact": "^0.5.2", - "astro": "^5.6.1", + "astro": "^5.6.2", "nanostores": "^0.11.4", "preact": "^10.26.5" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 609de23b4..a25deb686 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.2.3", + "@astrojs/mdx": "^4.2.4", "@tailwindcss/vite": "^4.1.3", "@types/canvas-confetti": "^1.9.0", - "astro": "^5.6.1", + "astro": "^5.6.2", "canvas-confetti": "^1.9.3", "tailwindcss": "^4.1.3" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 5512a6db5..ab8f2d833 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.6.1", + "astro": "^5.6.2", "vitest": "^3.1.1" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 5ea03dd45..671eff3a8 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,39 @@ # astro +## 5.6.2 + +### Patch Changes + +- [#13606](https://github.com/withastro/astro/pull/13606) [`793ecd9`](https://github.com/withastro/astro/commit/793ecd916e4e815886a57b85bd1739f704faae7f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fixes a regression that allowed prerendered code to leak into the server bundle. + +- [#13576](https://github.com/withastro/astro/pull/13576) [`1c60ec3`](https://github.com/withastro/astro/commit/1c60ec3c4d8518208737de405b1bc0b5b285a0c9) Thanks [@ascorbic](https://github.com/ascorbic)! - Reduces duplicate code in server islands scripts by extracting shared logic into a helper function. + +- [#13588](https://github.com/withastro/astro/pull/13588) [`57e59be`](https://github.com/withastro/astro/commit/57e59bec40ec2febd32065324505087caec9038a) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fixes a memory leak when using SVG assets. + +- [#13589](https://github.com/withastro/astro/pull/13589) [`5a0563d`](https://github.com/withastro/astro/commit/5a0563de9e377ba7b0af7e055a85893773616d4b) Thanks [@ematipico](https://github.com/ematipico)! - Deprecates the asset utility function `emitESMImage()` and adds a new `emitImageMetadata()` to be used instead + + The function + `emitESMImage()` is now deprecated. It will continue to function, but it is no longer recommended nor supported. This function will be completely removed in a next major release of Astro. + + Please replace it with the new function`emitImageMetadata()` as soon as you are able to do so: + + ```diff + - import { emitESMImage } from "astro/assets/utils"; + + import { emitImageMetadata } from "astro/assets/utils"; + ``` + + The new function returns the same signature as the previous one. However, the new function removes two deprecated arguments that were not meant to be exposed for public use: `_watchMode` and `experimentalSvgEnabled`. Since it was possible to access these with the old function, you may need to verify that your code still works as intended with `emitImageMetadata()`. + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + +- [#13548](https://github.com/withastro/astro/pull/13548) [`e588527`](https://github.com/withastro/astro/commit/e588527b4c3de7759ef7d10d3004405d0b197f48) Thanks [@ryuapp](https://github.com/ryuapp)! - Support for Deno to install npm pacakges. + + Deno requires npm prefix to install packages on npm. For example, to install react, we need to run `deno add npm:react`. But currently the command executed is `deno add react`, which doesn't work. So, we change the package names to have an npm prefix if you are using Deno. + +- [#13587](https://github.com/withastro/astro/pull/13587) [`a0774b3`](https://github.com/withastro/astro/commit/a0774b376a4f24e2bf1db5b70616dff63d7412dd) Thanks [@robertoms99](https://github.com/robertoms99)! - Fixes an issue with the client router where some attributes of the root element were not updated during swap, including the transition scope. + ## 5.6.1 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 4d04e8cc6..d11dc4d74 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "5.6.1", + "version": "5.6.2", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", diff --git a/packages/db/CHANGELOG.md b/packages/db/CHANGELOG.md index d3816468d..451e74e94 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,16 @@ # @astrojs/db +## 0.14.11 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + +- Updated dependencies [[`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72), [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc)]: + - @astrojs/studio@0.1.7 + ## 0.14.10 ### Patch Changes diff --git a/packages/db/package.json b/packages/db/package.json index adcaf4dbc..dec02feb3 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/db", - "version": "0.14.10", + "version": "0.14.11", "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 795833d42..6a0de278a 100644 --- a/packages/integrations/alpinejs/CHANGELOG.md +++ b/packages/integrations/alpinejs/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/alpinejs +## 0.4.6 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + ## 0.4.5 ### Patch Changes diff --git a/packages/integrations/alpinejs/package.json b/packages/integrations/alpinejs/package.json index e1c40762b..8ddde3478 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.5", + "version": "0.4.6", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md index 338142237..f4bfcaf9e 100644 --- a/packages/integrations/cloudflare/CHANGELOG.md +++ b/packages/integrations/cloudflare/CHANGELOG.md @@ -1,5 +1,16 @@ # @astrojs/cloudflare +## 12.4.1 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + +- Updated dependencies []: + - @astrojs/underscore-redirects@0.6.0 + ## 12.4.0 ### Minor Changes diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index 3c5a11ba7..3f5c6350f 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.4.0", + "version": "12.4.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md index c285ad472..b60c3c796 100644 --- a/packages/integrations/markdoc/CHANGELOG.md +++ b/packages/integrations/markdoc/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/markdoc +## 0.13.4 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + ## 0.13.3 ### Patch Changes diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json index b44ef6989..6f07eaf98 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.3", + "version": "0.13.4", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index 9b40bc062..57e9f929c 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/mdx +## 4.2.4 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + ## 4.2.3 ### Patch Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index 3b5366fbf..8c6844aae 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.3", + "version": "4.2.4", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md index e94f42ced..faadc2dff 100644 --- a/packages/integrations/netlify/CHANGELOG.md +++ b/packages/integrations/netlify/CHANGELOG.md @@ -1,5 +1,16 @@ # @astrojs/netlify +## 6.2.6 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + +- Updated dependencies []: + - @astrojs/underscore-redirects@0.6.0 + ## 6.2.5 ### Patch Changes diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json index 955fcd776..eec86017a 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.5", + "version": "6.2.6", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md index 906b64a85..db71c511c 100644 --- a/packages/integrations/preact/CHANGELOG.md +++ b/packages/integrations/preact/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/preact +## 4.0.9 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + ## 4.0.8 ### Patch Changes diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index 78b865428..6d7a9dc96 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.8", + "version": "4.0.9", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index e17acc3e6..b9594715d 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/react +## 4.2.4 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + ## 4.2.3 ### Patch Changes diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index 7b76cf797..77a897a7e 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.3", + "version": "4.2.4", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md index 31298c929..20ab545b4 100644 --- a/packages/integrations/solid/CHANGELOG.md +++ b/packages/integrations/solid/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/solid-js +## 5.0.8 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + ## 5.0.7 ### Patch Changes diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json index e0d2dde5c..f8005dfdd 100644 --- a/packages/integrations/solid/package.json +++ b/packages/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/solid-js", - "version": "5.0.7", + "version": "5.0.8", "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 22605fbcc..025862e5f 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/svelte +## 7.0.10 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + ## 7.0.9 ### Patch Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index 5022188f5..08233a060 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "7.0.9", + "version": "7.0.10", "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 38eddca3e..50f42f4d2 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/vue +## 5.0.10 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + ## 5.0.9 ### Patch Changes diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index 58c88bcc1..6b05637de 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "5.0.9", + "version": "5.0.10", "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 f8d301b65..9cc1e5f20 100644 --- a/packages/studio/CHANGELOG.md +++ b/packages/studio/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/studio +## 0.1.7 + +### Patch Changes + +- [#13596](https://github.com/withastro/astro/pull/13596) [`3752519`](https://github.com/withastro/astro/commit/375251966d1b28a570bff45ff0fe7e7d2fe46f72) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version to fix CVE + +- [#13547](https://github.com/withastro/astro/pull/13547) [`360cb91`](https://github.com/withastro/astro/commit/360cb9199a4314f90825c5639ff4396760e9cfcc) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates vite to the latest version + ## 0.1.6 ### Patch Changes diff --git a/packages/studio/package.json b/packages/studio/package.json index 436dbb6c3..c56435585 100644 --- a/packages/studio/package.json +++ b/packages/studio/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/studio", - "version": "0.1.6", + "version": "0.1.7", "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 79ef0baa9..3f981d49d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -142,13 +142,13 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro examples/blog: dependencies: '@astrojs/mdx': - specifier: ^4.2.3 + specifier: ^4.2.4 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.6.1 + specifier: ^5.6.2 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro examples/container-with-vitest: dependencies: '@astrojs/react': - specifier: ^4.2.3 + specifier: ^4.2.4 version: link:../../packages/integrations/react astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -194,7 +194,7 @@ importers: examples/framework-alpine: dependencies: '@astrojs/alpinejs': - specifier: ^0.4.5 + specifier: ^0.4.6 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.6.1 + specifier: ^5.6.2 version: link:../../packages/astro examples/framework-multiple: dependencies: '@astrojs/preact': - specifier: ^4.0.8 + specifier: ^4.0.9 version: link:../../packages/integrations/preact '@astrojs/react': - specifier: ^4.2.3 + specifier: ^4.2.4 version: link:../../packages/integrations/react '@astrojs/solid-js': - specifier: ^5.0.7 + specifier: ^5.0.8 version: link:../../packages/integrations/solid '@astrojs/svelte': - specifier: ^7.0.9 + specifier: ^7.0.10 version: link:../../packages/integrations/svelte '@astrojs/vue': - specifier: ^5.0.9 + specifier: ^5.0.10 version: link:../../packages/integrations/vue '@types/react': specifier: ^18.3.20 @@ -230,7 +230,7 @@ importers: specifier: ^18.3.6 version: 18.3.6(@types/react@18.3.20) astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -254,13 +254,13 @@ importers: examples/framework-preact: dependencies: '@astrojs/preact': - specifier: ^4.0.8 + specifier: ^4.0.9 version: link:../../packages/integrations/preact '@preact/signals': specifier: ^2.0.3 version: 2.0.3(preact@10.26.5) astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -269,7 +269,7 @@ importers: examples/framework-react: dependencies: '@astrojs/react': - specifier: ^4.2.3 + specifier: ^4.2.4 version: link:../../packages/integrations/react '@types/react': specifier: ^18.3.20 @@ -278,7 +278,7 @@ importers: specifier: ^18.3.6 version: 18.3.6(@types/react@18.3.20) astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -290,10 +290,10 @@ importers: examples/framework-solid: dependencies: '@astrojs/solid-js': - specifier: ^5.0.7 + specifier: ^5.0.8 version: link:../../packages/integrations/solid astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro solid-js: specifier: ^1.9.5 @@ -302,10 +302,10 @@ importers: examples/framework-svelte: dependencies: '@astrojs/svelte': - specifier: ^7.0.9 + specifier: ^7.0.10 version: link:../../packages/integrations/svelte astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro svelte: specifier: ^5.25.7 @@ -314,10 +314,10 @@ importers: examples/framework-vue: dependencies: '@astrojs/vue': - specifier: ^5.0.9 + specifier: ^5.0.10 version: link:../../packages/integrations/vue astro: - specifier: ^5.6.1 + specifier: ^5.6.2 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.6.1 + specifier: ^5.6.2 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.6.1 + specifier: ^5.6.2 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.9 + specifier: ^7.0.10 version: link:../../packages/integrations/svelte astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro svelte: specifier: ^5.25.7 @@ -368,7 +368,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro sass: specifier: ^1.86.3 @@ -383,28 +383,28 @@ importers: specifier: ^18.17.8 version: 18.19.50 astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro examples/with-markdoc: dependencies: '@astrojs/markdoc': - specifier: ^0.13.3 + specifier: ^0.13.4 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro examples/with-mdx: dependencies: '@astrojs/mdx': - specifier: ^4.2.3 + specifier: ^4.2.4 version: link:../../packages/integrations/mdx '@astrojs/preact': - specifier: ^4.0.8 + specifier: ^4.0.9 version: link:../../packages/integrations/preact astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -413,13 +413,13 @@ importers: examples/with-nanostores: dependencies: '@astrojs/preact': - specifier: ^4.0.8 + specifier: ^4.0.9 version: link:../../packages/integrations/preact '@nanostores/preact': specifier: ^0.5.2 version: 0.5.2(nanostores@0.11.4)(preact@10.26.5) astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro nanostores: specifier: ^0.11.4 @@ -431,7 +431,7 @@ importers: examples/with-tailwindcss: dependencies: '@astrojs/mdx': - specifier: ^4.2.3 + specifier: ^4.2.4 version: link:../../packages/integrations/mdx '@tailwindcss/vite': specifier: ^4.1.3 @@ -440,7 +440,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.3 @@ -452,7 +452,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^5.6.1 + specifier: ^5.6.2 version: link:../../packages/astro vitest: specifier: ^3.1.1 @@ -9955,7 +9955,6 @@ packages: libsql@0.5.4: resolution: {integrity: sha512-GEFeWca4SDAQFxjHWJBE6GK52LEtSskiujbG3rqmmeTO9t4sfSBKIURNLLpKDDF7fb7jmTuuRkDAn9BZGITQNw==} - cpu: [x64, arm64, wasm32] os: [darwin, linux, win32] lightningcss-darwin-arm64@1.29.2: |