diff options
51 files changed, 184 insertions, 115 deletions
diff --git a/.changeset/young-boxes-admire.md b/.changeset/young-boxes-admire.md deleted file mode 100644 index d208c7c5a..000000000 --- a/.changeset/young-boxes-admire.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 for fixing CVE diff --git a/examples/basics/package.json b/examples/basics/package.json index 28e7bae8b..35733c4a6 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.7.9" + "astro": "^5.7.10" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 3f437c7a1..b40d0807a 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.2.5", + "@astrojs/mdx": "^4.2.6", "@astrojs/rss": "^4.0.11", "@astrojs/sitemap": "^3.3.1", - "astro": "^5.7.9" + "astro": "^5.7.10" } } diff --git a/examples/component/package.json b/examples/component/package.json index 1f7a8088d..111415c40 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.7.9" + "astro": "^5.7.10" }, "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 652fa3ead..040099ecc 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.6", - "astro": "^5.7.9", + "@astrojs/react": "^4.2.7", + "astro": "^5.7.10", "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 4e164caec..e7498caba 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/alpinejs": "^0.4.7", + "@astrojs/alpinejs": "^0.4.8", "@types/alpinejs": "^3.13.11", "alpinejs": "^3.14.9", - "astro": "^5.7.9" + "astro": "^5.7.10" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 54f42c0a1..de12c9f75 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -10,14 +10,14 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.10", - "@astrojs/react": "^4.2.6", - "@astrojs/solid-js": "^5.0.9", - "@astrojs/svelte": "^7.0.12", - "@astrojs/vue": "^5.0.12", + "@astrojs/preact": "^4.0.11", + "@astrojs/react": "^4.2.7", + "@astrojs/solid-js": "^5.0.10", + "@astrojs/svelte": "^7.0.13", + "@astrojs/vue": "^5.0.13", "@types/react": "^18.3.20", "@types/react-dom": "^18.3.6", - "astro": "^5.7.9", + "astro": "^5.7.10", "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 b31c41267..d8a801657 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.10", + "@astrojs/preact": "^4.0.11", "@preact/signals": "^2.0.3", - "astro": "^5.7.9", + "astro": "^5.7.10", "preact": "^10.26.5" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index e93533494..a1af8624f 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/react": "^4.2.6", + "@astrojs/react": "^4.2.7", "@types/react": "^18.3.20", "@types/react-dom": "^18.3.6", - "astro": "^5.7.9", + "astro": "^5.7.10", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index b35a264ee..207049906 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.9", - "astro": "^5.7.9", + "@astrojs/solid-js": "^5.0.10", + "astro": "^5.7.10", "solid-js": "^1.9.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 423f48bd0..f2770144e 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^7.0.12", - "astro": "^5.7.9", + "@astrojs/svelte": "^7.0.13", + "astro": "^5.7.10", "svelte": "^5.25.7" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index f6a2af5bf..7d05a1bf3 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/vue": "^5.0.12", - "astro": "^5.7.9", + "@astrojs/vue": "^5.0.13", + "astro": "^5.7.10", "vue": "^3.5.13" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 48b13d27d..b6188d25e 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.2.1", - "astro": "^5.7.9" + "astro": "^5.7.10" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index b436c2ad4..a6d8c0e72 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.7.9" + "astro": "^5.7.10" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 56173be9f..ec9663432 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.7.9" + "astro": "^5.7.10" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 83c039f00..468201283 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.7.9" + "astro": "^5.7.10" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 0fa922943..4a7c01747 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@astrojs/node": "^9.2.1", - "@astrojs/svelte": "^7.0.12", - "astro": "^5.7.9", + "@astrojs/svelte": "^7.0.13", + "astro": "^5.7.10", "svelte": "^5.25.7" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index 5605af133..3a3e9f578 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.7.9", + "astro": "^5.7.10", "sass": "^1.86.3", "sharp": "^0.33.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 1ba430b10..0cd772b60 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.7.9" + "astro": "^5.7.10" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 264efe7df..5c18315d1 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.14.1", - "astro": "^5.7.9" + "@astrojs/markdoc": "^0.14.2", + "astro": "^5.7.10" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index eada9df3e..537cf968c 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.2.5", - "@astrojs/preact": "^4.0.10", - "astro": "^5.7.9", + "@astrojs/mdx": "^4.2.6", + "@astrojs/preact": "^4.0.11", + "astro": "^5.7.10", "preact": "^10.26.5" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index babc8c1a3..7926d4945 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.10", + "@astrojs/preact": "^4.0.11", "@nanostores/preact": "^0.5.2", - "astro": "^5.7.9", + "astro": "^5.7.10", "nanostores": "^0.11.4", "preact": "^10.26.5" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index ce9cea893..64746012d 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.2.5", + "@astrojs/mdx": "^4.2.6", "@tailwindcss/vite": "^4.1.3", "@types/canvas-confetti": "^1.9.0", - "astro": "^5.7.9", + "astro": "^5.7.10", "canvas-confetti": "^1.9.3", "tailwindcss": "^4.1.3" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index bf664996b..a49f94194 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.7.9", + "astro": "^5.7.10", "vitest": "^3.1.1" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 1672fd2d1..ecc59e348 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,11 @@ # astro +## 5.7.10 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + ## 5.7.9 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 9bff3482b..44261ecd3 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "5.7.9", + "version": "5.7.10", "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 85ac56b02..826c6fec2 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,14 @@ # @astrojs/db +## 0.14.13 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + +- Updated dependencies [[`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146)]: + - @astrojs/studio@0.1.9 + ## 0.14.12 ### Patch Changes diff --git a/packages/db/package.json b/packages/db/package.json index e727540a9..582debc44 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/db", - "version": "0.14.12", + "version": "0.14.13", "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 1c6b40623..4c0bd60b8 100644 --- a/packages/integrations/alpinejs/CHANGELOG.md +++ b/packages/integrations/alpinejs/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/alpinejs +## 0.4.8 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + ## 0.4.7 ### Patch Changes diff --git a/packages/integrations/alpinejs/package.json b/packages/integrations/alpinejs/package.json index 8ac4397b3..2d674e5ef 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.7", + "version": "0.4.8", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md index 16d48f38a..f6ab4f154 100644 --- a/packages/integrations/cloudflare/CHANGELOG.md +++ b/packages/integrations/cloudflare/CHANGELOG.md @@ -1,5 +1,14 @@ # @astrojs/cloudflare +## 12.5.2 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + +- Updated dependencies []: + - @astrojs/underscore-redirects@0.6.1 + ## 12.5.1 ### Patch Changes diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index 09fb8e16b..a2436e3d1 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.5.1", + "version": "12.5.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md index 7da5c379e..18b11f673 100644 --- a/packages/integrations/markdoc/CHANGELOG.md +++ b/packages/integrations/markdoc/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/markdoc +## 0.14.2 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + ## 0.14.1 ### Patch Changes diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json index ce219508c..2e993858c 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.14.1", + "version": "0.14.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index 4f0d9dad2..59b5ac258 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/mdx +## 4.2.6 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + ## 4.2.5 ### Patch Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index 8ed172722..6d470690d 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.5", + "version": "4.2.6", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md index 9b04a4997..0da4ed0cb 100644 --- a/packages/integrations/netlify/CHANGELOG.md +++ b/packages/integrations/netlify/CHANGELOG.md @@ -1,5 +1,14 @@ # @astrojs/netlify +## 6.3.2 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + +- Updated dependencies []: + - @astrojs/underscore-redirects@0.6.1 + ## 6.3.1 ### Patch Changes diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json index 9d3db5ee5..8ab6016ad 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.3.1", + "version": "6.3.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md index cd8cc9435..5573b0b68 100644 --- a/packages/integrations/preact/CHANGELOG.md +++ b/packages/integrations/preact/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/preact +## 4.0.11 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + ## 4.0.10 ### Patch Changes diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index a7602f8ad..a0129286e 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.10", + "version": "4.0.11", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index 7c00ef126..04e31f3bb 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/react +## 4.2.7 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + ## 4.2.6 ### Patch Changes diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index 43a83381b..a7fcc1e91 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.6", + "version": "4.2.7", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md index dfbee01f7..9007bc16b 100644 --- a/packages/integrations/solid/CHANGELOG.md +++ b/packages/integrations/solid/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/solid-js +## 5.0.10 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + ## 5.0.9 ### Patch Changes diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json index 444704a57..3900be03a 100644 --- a/packages/integrations/solid/package.json +++ b/packages/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/solid-js", - "version": "5.0.9", + "version": "5.0.10", "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 747695e43..8525119f1 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/svelte +## 7.0.13 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + ## 7.0.12 ### Patch Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index 727057bbf..71035212a 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "7.0.12", + "version": "7.0.13", "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 a480bc971..5a273de48 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/vue +## 5.0.13 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + ## 5.0.12 ### Patch Changes diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index 0373de83a..b34f98726 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "5.0.12", + "version": "5.0.13", "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 35e5c5246..d9876af2b 100644 --- a/packages/studio/CHANGELOG.md +++ b/packages/studio/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/studio +## 0.1.9 + +### Patch Changes + +- [#13731](https://github.com/withastro/astro/pull/13731) [`c3e80c2`](https://github.com/withastro/astro/commit/c3e80c25b90c803e2798b752583a8e77cdad3146) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update vite to latest version for fixing CVE + ## 0.1.8 ### Patch Changes diff --git a/packages/studio/package.json b/packages/studio/package.json index 7316c8b91..646bb77b1 100644 --- a/packages/studio/package.json +++ b/packages/studio/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/studio", - "version": "0.1.8", + "version": "0.1.9", "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 3e510260d..0f3682e7f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -145,13 +145,13 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro examples/blog: dependencies: '@astrojs/mdx': - specifier: ^4.2.5 + specifier: ^4.2.6 version: link:../../packages/integrations/mdx '@astrojs/rss': specifier: ^4.0.11 @@ -160,22 +160,22 @@ importers: specifier: ^3.3.1 version: link:../../packages/integrations/sitemap astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro examples/container-with-vitest: dependencies: '@astrojs/react': - specifier: ^4.2.6 + specifier: ^4.2.7 version: link:../../packages/integrations/react astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -197,7 +197,7 @@ importers: examples/framework-alpine: dependencies: '@astrojs/alpinejs': - specifier: ^0.4.7 + specifier: ^0.4.8 version: link:../../packages/integrations/alpinejs '@types/alpinejs': specifier: ^3.13.11 @@ -206,25 +206,25 @@ importers: specifier: ^3.14.9 version: 3.14.9 astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro examples/framework-multiple: dependencies: '@astrojs/preact': - specifier: ^4.0.10 + specifier: ^4.0.11 version: link:../../packages/integrations/preact '@astrojs/react': - specifier: ^4.2.6 + specifier: ^4.2.7 version: link:../../packages/integrations/react '@astrojs/solid-js': - specifier: ^5.0.9 + specifier: ^5.0.10 version: link:../../packages/integrations/solid '@astrojs/svelte': - specifier: ^7.0.12 + specifier: ^7.0.13 version: link:../../packages/integrations/svelte '@astrojs/vue': - specifier: ^5.0.12 + specifier: ^5.0.13 version: link:../../packages/integrations/vue '@types/react': specifier: ^18.3.20 @@ -233,7 +233,7 @@ importers: specifier: ^18.3.6 version: 18.3.6(@types/react@18.3.20) astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -257,13 +257,13 @@ importers: examples/framework-preact: dependencies: '@astrojs/preact': - specifier: ^4.0.10 + specifier: ^4.0.11 version: link:../../packages/integrations/preact '@preact/signals': specifier: ^2.0.3 version: 2.0.4(preact@10.26.5) astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -272,7 +272,7 @@ importers: examples/framework-react: dependencies: '@astrojs/react': - specifier: ^4.2.6 + specifier: ^4.2.7 version: link:../../packages/integrations/react '@types/react': specifier: ^18.3.20 @@ -281,7 +281,7 @@ importers: specifier: ^18.3.6 version: 18.3.6(@types/react@18.3.20) astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -293,10 +293,10 @@ importers: examples/framework-solid: dependencies: '@astrojs/solid-js': - specifier: ^5.0.9 + specifier: ^5.0.10 version: link:../../packages/integrations/solid astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro solid-js: specifier: ^1.9.5 @@ -305,10 +305,10 @@ importers: examples/framework-svelte: dependencies: '@astrojs/svelte': - specifier: ^7.0.12 + specifier: ^7.0.13 version: link:../../packages/integrations/svelte astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro svelte: specifier: ^5.25.7 @@ -317,10 +317,10 @@ importers: examples/framework-vue: dependencies: '@astrojs/vue': - specifier: ^5.0.12 + specifier: ^5.0.13 version: link:../../packages/integrations/vue astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro vue: specifier: ^3.5.13 @@ -332,25 +332,25 @@ importers: specifier: ^9.2.1 version: link:../../packages/integrations/node astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro examples/ssr: @@ -359,10 +359,10 @@ importers: specifier: ^9.2.1 version: link:../../packages/integrations/node '@astrojs/svelte': - specifier: ^7.0.12 + specifier: ^7.0.13 version: link:../../packages/integrations/svelte astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro svelte: specifier: ^5.25.7 @@ -371,7 +371,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro sass: specifier: ^1.86.3 @@ -386,28 +386,28 @@ importers: specifier: ^18.17.8 version: 18.19.50 astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro examples/with-markdoc: dependencies: '@astrojs/markdoc': - specifier: ^0.14.1 + specifier: ^0.14.2 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro examples/with-mdx: dependencies: '@astrojs/mdx': - specifier: ^4.2.5 + specifier: ^4.2.6 version: link:../../packages/integrations/mdx '@astrojs/preact': - specifier: ^4.0.10 + specifier: ^4.0.11 version: link:../../packages/integrations/preact astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -416,13 +416,13 @@ importers: examples/with-nanostores: dependencies: '@astrojs/preact': - specifier: ^4.0.10 + specifier: ^4.0.11 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.7.9 + specifier: ^5.7.10 version: link:../../packages/astro nanostores: specifier: ^0.11.4 @@ -434,7 +434,7 @@ importers: examples/with-tailwindcss: dependencies: '@astrojs/mdx': - specifier: ^4.2.5 + specifier: ^4.2.6 version: link:../../packages/integrations/mdx '@tailwindcss/vite': specifier: ^4.1.3 @@ -443,7 +443,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.3 @@ -455,7 +455,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^5.7.9 + specifier: ^5.7.10 version: link:../../packages/astro vitest: specifier: ^3.1.1 @@ -9969,7 +9969,6 @@ packages: libsql@0.5.4: resolution: {integrity: sha512-GEFeWca4SDAQFxjHWJBE6GK52LEtSskiujbG3rqmmeTO9t4sfSBKIURNLLpKDDF7fb7jmTuuRkDAn9BZGITQNw==} - cpu: [x64, arm64, wasm32] os: [darwin, linux, win32] lightningcss-darwin-arm64@1.29.2: |