diff --git a/.changeset/cuddly-rings-sing.md b/.changeset/cuddly-rings-sing.md deleted file mode 100644 index a5200c47ca2c..000000000000 --- a/.changeset/cuddly-rings-sing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes the issue that audit incorrectly flag images as above the fold when the scrolling container is not body diff --git a/.changeset/heavy-fireants-melt.md b/.changeset/heavy-fireants-melt.md deleted file mode 100644 index b8010626aab7..000000000000 --- a/.changeset/heavy-fireants-melt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a bug that caused references to be incorrectly reported as invalid diff --git a/.changeset/kind-horses-smile.md b/.changeset/kind-horses-smile.md deleted file mode 100644 index 720557b2b047..000000000000 --- a/.changeset/kind-horses-smile.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a bug in dev where files would stop being watched if the Astro config file was edited diff --git a/.changeset/large-cherries-explain.md b/.changeset/large-cherries-explain.md deleted file mode 100644 index 118e4d5945ba..000000000000 --- a/.changeset/large-cherries-explain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a bug where the content layer would use an outdated version of the Astro config if it was edited in dev diff --git a/.changeset/many-pianos-develop.md b/.changeset/many-pianos-develop.md deleted file mode 100644 index 6a8716e5f048..000000000000 --- a/.changeset/many-pianos-develop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/react': patch ---- - -Removes hardcoded `ssr.external: ['react-dom/server', 'react-dom/client']` config that causes issues with adapters that bundle all dependencies (e.g. Cloudflare). These externals should already be inferred by default by Vite when deploying to a server environment. diff --git a/.changeset/orange-suits-suffer.md b/.changeset/orange-suits-suffer.md deleted file mode 100644 index a2681beb57e8..000000000000 --- a/.changeset/orange-suits-suffer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes an issue where server islands do not work in projects that use an adapter but only have prerendered pages. If an adapter is added, the server island endpoint will now be added by default. diff --git a/.changeset/real-hairs-scream.md b/.changeset/real-hairs-scream.md deleted file mode 100644 index e35a4943b63c..000000000000 --- a/.changeset/real-hairs-scream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a case where `astro:actions` types would not work when using `src/actions.ts` diff --git a/.changeset/tiny-otters-hear.md b/.changeset/tiny-otters-hear.md deleted file mode 100644 index a46e90559056..000000000000 --- a/.changeset/tiny-otters-hear.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -'@astrojs/alpinejs': patch -'@astrojs/tailwind': patch -'@astrojs/markdoc': 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 ---- - -Upgrades Vite diff --git a/.changeset/twenty-cherries-switch.md b/.changeset/twenty-cherries-switch.md deleted file mode 100644 index c79c53284e21..000000000000 --- a/.changeset/twenty-cherries-switch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a bug that caused the dev server to return an error if requesting "//" diff --git a/.changeset/warm-pandas-lick.md b/.changeset/warm-pandas-lick.md deleted file mode 100644 index e3d4c5af339f..000000000000 --- a/.changeset/warm-pandas-lick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a bug that caused Astro to attempt to inject environment variables into non-source files, causing performance problems and broken builds diff --git a/examples/basics/package.json b/examples/basics/package.json index 7f1ebac340e3..63810e5385c8 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.1.7" + "astro": "^5.1.8" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index ed82cbc5de9f..1af7959c16bb 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.0.6", + "@astrojs/mdx": "^4.0.7", "@astrojs/rss": "^4.0.11", "@astrojs/sitemap": "^3.2.1", - "astro": "^5.1.7" + "astro": "^5.1.8" } } diff --git a/examples/component/package.json b/examples/component/package.json index d138e3784139..1b71f00eb7a8 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.1.7" + "astro": "^5.1.8" }, "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 5db964c310ba..5919e09ff0ae 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.1.5", - "astro": "^5.1.7", + "@astrojs/react": "^4.1.6", + "astro": "^5.1.8", "react": "^18.3.1", "react-dom": "^18.3.1", "vitest": "^3.0.2" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 26268b2421ac..09962b6860a4 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/alpinejs": "^0.4.1", + "@astrojs/alpinejs": "^0.4.2", "@types/alpinejs": "^3.13.11", "alpinejs": "^3.14.8", - "astro": "^5.1.7" + "astro": "^5.1.8" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 2171a84ebc03..a6fed4ff31da 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -10,14 +10,14 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.2", - "@astrojs/react": "^4.1.5", - "@astrojs/solid-js": "^5.0.3", - "@astrojs/svelte": "^7.0.3", - "@astrojs/vue": "^5.0.5", + "@astrojs/preact": "^4.0.3", + "@astrojs/react": "^4.1.6", + "@astrojs/solid-js": "^5.0.4", + "@astrojs/svelte": "^7.0.4", + "@astrojs/vue": "^5.0.6", "@types/react": "^18.3.18", "@types/react-dom": "^18.3.5", - "astro": "^5.1.7", + "astro": "^5.1.8", "preact": "^10.25.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 420f80631346..08bebf88cf26 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.2", + "@astrojs/preact": "^4.0.3", "@preact/signals": "^2.0.1", - "astro": "^5.1.7", + "astro": "^5.1.8", "preact": "^10.25.4" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 26e13c4675ae..552c1d87ce3d 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/react": "^4.1.5", + "@astrojs/react": "^4.1.6", "@types/react": "^18.3.18", "@types/react-dom": "^18.3.5", - "astro": "^5.1.7", + "astro": "^5.1.8", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 584936f148c7..996a240d971b 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.3", - "astro": "^5.1.7", + "@astrojs/solid-js": "^5.0.4", + "astro": "^5.1.8", "solid-js": "^1.9.4" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index eea1290f2aad..96868253cf8b 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^7.0.3", - "astro": "^5.1.7", + "@astrojs/svelte": "^7.0.4", + "astro": "^5.1.8", "svelte": "^5.19.0" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index e53cd3335d28..92f25f0c4e68 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/vue": "^5.0.5", - "astro": "^5.1.7", + "@astrojs/vue": "^5.0.6", + "astro": "^5.1.8", "vue": "^3.5.13" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index de535f622f7b..c3db4fa3f5b2 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.0.1", - "astro": "^5.1.7" + "astro": "^5.1.8" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 9e058d3c6e82..f9fb6d63fb94 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.1.7" + "astro": "^5.1.8" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 45f046143e0e..d167eebe51bd 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.1.7" + "astro": "^5.1.8" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index f6c1e3bf0b19..2fd651030b41 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.1.7" + "astro": "^5.1.8" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index bcd5d2781ac9..403ad64f9485 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@astrojs/node": "^9.0.1", - "@astrojs/svelte": "^7.0.3", - "astro": "^5.1.7", + "@astrojs/svelte": "^7.0.4", + "astro": "^5.1.8", "svelte": "^5.19.0" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index 1dd8872ffe0b..a1c111797127 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.1.7", + "astro": "^5.1.8", "sass": "^1.83.4", "sharp": "^0.33.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index ee625d39b1b2..9a574cf85620 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.1.7" + "astro": "^5.1.8" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 356387be4679..a222c706bcaf 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.12.6", - "astro": "^5.1.7" + "@astrojs/markdoc": "^0.12.7", + "astro": "^5.1.8" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index e5e951cc78e6..f8aa963c2a41 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.0.6", - "@astrojs/preact": "^4.0.2", - "astro": "^5.1.7", + "@astrojs/mdx": "^4.0.7", + "@astrojs/preact": "^4.0.3", + "astro": "^5.1.8", "preact": "^10.25.4" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 1c58c94bd44e..db49afe81d11 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.2", + "@astrojs/preact": "^4.0.3", "@nanostores/preact": "^0.5.2", - "astro": "^5.1.7", + "astro": "^5.1.8", "nanostores": "^0.11.3", "preact": "^10.25.4" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index c2bfaaddc9fa..2513470fea6d 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.0.6", - "@astrojs/tailwind": "^5.1.4", + "@astrojs/mdx": "^4.0.7", + "@astrojs/tailwind": "^5.1.5", "@types/canvas-confetti": "^1.9.0", - "astro": "^5.1.7", + "astro": "^5.1.8", "autoprefixer": "^10.4.20", "canvas-confetti": "^1.9.3", "postcss": "^8.5.1", diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 9d4410b1fcf8..54d6a240b504 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.1.7", + "astro": "^5.1.8", "vitest": "^3.0.2" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 60d0353198f7..b2b43d9267a3 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,27 @@ # astro +## 5.1.8 + +### Patch Changes + +- [#12998](https://github.com/withastro/astro/pull/12998) [`9ce0038`](https://github.com/withastro/astro/commit/9ce003802109f704cc1f081759f3d2af2c1ea2c2) Thanks [@Kynson](https://github.com/Kynson)! - Fixes the issue that audit incorrectly flag images as above the fold when the scrolling container is not body + +- [#12990](https://github.com/withastro/astro/pull/12990) [`2e12f1d`](https://github.com/withastro/astro/commit/2e12f1d7526f12fa0e1e63482f100bbb81a8b36e) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused references to be incorrectly reported as invalid + +- [#12984](https://github.com/withastro/astro/pull/12984) [`2d259cf`](https://github.com/withastro/astro/commit/2d259cf4abf27a4f0a067bedb32d0459c4fce507) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug in dev where files would stop being watched if the Astro config file was edited + +- [#12984](https://github.com/withastro/astro/pull/12984) [`2d259cf`](https://github.com/withastro/astro/commit/2d259cf4abf27a4f0a067bedb32d0459c4fce507) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug where the content layer would use an outdated version of the Astro config if it was edited in dev + +- [#12982](https://github.com/withastro/astro/pull/12982) [`429aa75`](https://github.com/withastro/astro/commit/429aa7547572915b5f7f9a4146529e704069128b) Thanks [@bluwy](https://github.com/bluwy)! - Fixes an issue where server islands do not work in projects that use an adapter but only have prerendered pages. If an adapter is added, the server island endpoint will now be added by default. + +- [#12995](https://github.com/withastro/astro/pull/12995) [`78fd73a`](https://github.com/withastro/astro/commit/78fd73a0dfbfab120111d5f1d1eaecd563bc82a6) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where `astro:actions` types would not work when using `src/actions.ts` + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + +- [#12733](https://github.com/withastro/astro/pull/12733) [`bbf1d88`](https://github.com/withastro/astro/commit/bbf1d8894e6ce5d2ebe45452a27072b9929053a8) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused the dev server to return an error if requesting "//" + +- [#13001](https://github.com/withastro/astro/pull/13001) [`627aec3`](https://github.com/withastro/astro/commit/627aec3f04de424ec144cefac4a5a3b70d9ba0fb) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused Astro to attempt to inject environment variables into non-source files, causing performance problems and broken builds + ## 5.1.7 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index c3c335e3f54c..2af7c5fc788a 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "5.1.7", + "version": "5.1.8", "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 b7e9bae00725..25d58907c002 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,14 @@ # @astrojs/db +## 0.14.6 + +### Patch Changes + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + +- Updated dependencies [[`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398)]: + - @astrojs/studio@0.1.4 + ## 0.14.5 ### Patch Changes diff --git a/packages/db/package.json b/packages/db/package.json index 3258c93eb1ee..d809a46971f0 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/db", - "version": "0.14.5", + "version": "0.14.6", "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 47b9b119398e..b102fc45b351 100644 --- a/packages/integrations/alpinejs/CHANGELOG.md +++ b/packages/integrations/alpinejs/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/alpinejs +## 0.4.2 + +### Patch Changes + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + ## 0.4.1 ### Patch Changes diff --git a/packages/integrations/alpinejs/package.json b/packages/integrations/alpinejs/package.json index 4442e264f9b1..19f7271b6607 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.1", + "version": "0.4.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 af653d86f886..5f941e07b4f6 100644 --- a/packages/integrations/markdoc/CHANGELOG.md +++ b/packages/integrations/markdoc/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/markdoc +## 0.12.7 + +### Patch Changes + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + ## 0.12.6 ### Patch Changes diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json index c599b78992ab..faf7372761bb 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.12.6", + "version": "0.12.7", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index 93b9757e6195..c323f978c33e 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/mdx +## 4.0.7 + +### Patch Changes + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + ## 4.0.6 ### Patch Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index bcd553b5a490..1a9c33ecb881 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.0.6", + "version": "4.0.7", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md index a86705a67c74..95edf7325db4 100644 --- a/packages/integrations/preact/CHANGELOG.md +++ b/packages/integrations/preact/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/preact +## 4.0.3 + +### Patch Changes + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + ## 4.0.2 ### Patch Changes diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index ebbb9a51c08f..57cdd982f533 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.2", + "version": "4.0.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index 1120a0d9666f..28336d442df1 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/react +## 4.1.6 + +### Patch Changes + +- [#12996](https://github.com/withastro/astro/pull/12996) [`80c6801`](https://github.com/withastro/astro/commit/80c6801b4f2b9da44ed69d6da7e4dbd4d65aae69) Thanks [@bluwy](https://github.com/bluwy)! - Removes hardcoded `ssr.external: ['react-dom/server', 'react-dom/client']` config that causes issues with adapters that bundle all dependencies (e.g. Cloudflare). These externals should already be inferred by default by Vite when deploying to a server environment. + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + ## 4.1.5 ### Patch Changes diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index 00978d425ea0..788b6e0e833f 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.1.5", + "version": "4.1.6", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md index 8453f94ab969..8ff4dd69e834 100644 --- a/packages/integrations/solid/CHANGELOG.md +++ b/packages/integrations/solid/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/solid-js +## 5.0.4 + +### Patch Changes + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + ## 5.0.3 ### Patch Changes diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json index cd4c36fe3b3a..59a3b4519745 100644 --- a/packages/integrations/solid/package.json +++ b/packages/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/solid-js", - "version": "5.0.3", + "version": "5.0.4", "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 9d44d3f6d273..9eb3c0cb406b 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/svelte +## 7.0.4 + +### Patch Changes + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + ## 7.0.3 ### Patch Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index a27386023b17..aeb1ef9085bf 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "7.0.3", + "version": "7.0.4", "description": "Use Svelte components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/tailwind/CHANGELOG.md b/packages/integrations/tailwind/CHANGELOG.md index f4be96ff4891..84920ba39949 100644 --- a/packages/integrations/tailwind/CHANGELOG.md +++ b/packages/integrations/tailwind/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/tailwind +## 5.1.5 + +### Patch Changes + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + ## 5.1.4 ### Patch Changes diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json index 5eba739be3a1..faf78790477f 100644 --- a/packages/integrations/tailwind/package.json +++ b/packages/integrations/tailwind/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/tailwind", "description": "Use Tailwind CSS to style your Astro site", - "version": "5.1.4", + "version": "5.1.5", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md index 700cc354b422..5281434384e0 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/vue +## 5.0.6 + +### Patch Changes + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + ## 5.0.5 ### Patch Changes diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index 24ce1e40b2e7..f3f266c71b0c 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "5.0.5", + "version": "5.0.6", "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 bf9df1bc3d63..c6a9eacf7d69 100644 --- a/packages/studio/CHANGELOG.md +++ b/packages/studio/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/studio +## 0.1.4 + +### Patch Changes + +- [#13011](https://github.com/withastro/astro/pull/13011) [`cf30880`](https://github.com/withastro/astro/commit/cf3088060d45227dcb48e041c4ed5e0081d71398) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite + ## 0.1.3 ### Patch Changes diff --git a/packages/studio/package.json b/packages/studio/package.json index 7bd37b4cf446..f995208cb875 100644 --- a/packages/studio/package.json +++ b/packages/studio/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/studio", - "version": "0.1.3", + "version": "0.1.4", "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 972b2650306f..70fc33040545 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -142,13 +142,13 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro examples/blog: dependencies: '@astrojs/mdx': - specifier: ^4.0.6 + specifier: ^4.0.7 version: link:../../packages/integrations/mdx '@astrojs/rss': specifier: ^4.0.11 @@ -157,22 +157,22 @@ importers: specifier: ^3.2.1 version: link:../../packages/integrations/sitemap astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro examples/container-with-vitest: dependencies: '@astrojs/react': - specifier: ^4.1.5 + specifier: ^4.1.6 version: link:../../packages/integrations/react astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -194,7 +194,7 @@ importers: examples/framework-alpine: dependencies: '@astrojs/alpinejs': - specifier: ^0.4.1 + specifier: ^0.4.2 version: link:../../packages/integrations/alpinejs '@types/alpinejs': specifier: ^3.13.11 @@ -203,25 +203,25 @@ importers: specifier: ^3.14.8 version: 3.14.8 astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro examples/framework-multiple: dependencies: '@astrojs/preact': - specifier: ^4.0.2 + specifier: ^4.0.3 version: link:../../packages/integrations/preact '@astrojs/react': - specifier: ^4.1.5 + specifier: ^4.1.6 version: link:../../packages/integrations/react '@astrojs/solid-js': - specifier: ^5.0.3 + specifier: ^5.0.4 version: link:../../packages/integrations/solid '@astrojs/svelte': - specifier: ^7.0.3 + specifier: ^7.0.4 version: link:../../packages/integrations/svelte '@astrojs/vue': - specifier: ^5.0.5 + specifier: ^5.0.6 version: link:../../packages/integrations/vue '@types/react': specifier: ^18.3.18 @@ -230,7 +230,7 @@ importers: specifier: ^18.3.5 version: 18.3.5(@types/react@18.3.18) astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro preact: specifier: ^10.25.4 @@ -254,13 +254,13 @@ importers: examples/framework-preact: dependencies: '@astrojs/preact': - specifier: ^4.0.2 + specifier: ^4.0.3 version: link:../../packages/integrations/preact '@preact/signals': specifier: ^2.0.1 version: 2.0.1(preact@10.25.4) astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro preact: specifier: ^10.25.4 @@ -269,7 +269,7 @@ importers: examples/framework-react: dependencies: '@astrojs/react': - specifier: ^4.1.5 + specifier: ^4.1.6 version: link:../../packages/integrations/react '@types/react': specifier: ^18.3.18 @@ -278,7 +278,7 @@ importers: specifier: ^18.3.5 version: 18.3.5(@types/react@18.3.18) astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -290,10 +290,10 @@ importers: examples/framework-solid: dependencies: '@astrojs/solid-js': - specifier: ^5.0.3 + specifier: ^5.0.4 version: link:../../packages/integrations/solid astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro solid-js: specifier: ^1.9.4 @@ -302,10 +302,10 @@ importers: examples/framework-svelte: dependencies: '@astrojs/svelte': - specifier: ^7.0.3 + specifier: ^7.0.4 version: link:../../packages/integrations/svelte astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro svelte: specifier: ^5.19.0 @@ -314,10 +314,10 @@ importers: examples/framework-vue: dependencies: '@astrojs/vue': - specifier: ^5.0.5 + specifier: ^5.0.6 version: link:../../packages/integrations/vue astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro vue: specifier: ^3.5.13 @@ -329,25 +329,25 @@ importers: specifier: ^9.0.1 version: 9.0.1(astro@packages+astro) astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro examples/ssr: @@ -356,10 +356,10 @@ importers: specifier: ^9.0.1 version: 9.0.1(astro@packages+astro) '@astrojs/svelte': - specifier: ^7.0.3 + specifier: ^7.0.4 version: link:../../packages/integrations/svelte astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro svelte: specifier: ^5.19.0 @@ -368,7 +368,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro sass: specifier: ^1.83.4 @@ -383,28 +383,28 @@ importers: specifier: ^18.17.8 version: 18.19.50 astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro examples/with-markdoc: dependencies: '@astrojs/markdoc': - specifier: ^0.12.6 + specifier: ^0.12.7 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro examples/with-mdx: dependencies: '@astrojs/mdx': - specifier: ^4.0.6 + specifier: ^4.0.7 version: link:../../packages/integrations/mdx '@astrojs/preact': - specifier: ^4.0.2 + specifier: ^4.0.3 version: link:../../packages/integrations/preact astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro preact: specifier: ^10.25.4 @@ -413,13 +413,13 @@ importers: examples/with-nanostores: dependencies: '@astrojs/preact': - specifier: ^4.0.2 + specifier: ^4.0.3 version: link:../../packages/integrations/preact '@nanostores/preact': specifier: ^0.5.2 version: 0.5.2(nanostores@0.11.3)(preact@10.25.4) astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro nanostores: specifier: ^0.11.3 @@ -431,16 +431,16 @@ importers: examples/with-tailwindcss: dependencies: '@astrojs/mdx': - specifier: ^4.0.6 + specifier: ^4.0.7 version: link:../../packages/integrations/mdx '@astrojs/tailwind': - specifier: ^5.1.4 + specifier: ^5.1.5 version: link:../../packages/integrations/tailwind '@types/canvas-confetti': specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro autoprefixer: specifier: ^10.4.20 @@ -458,7 +458,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^5.1.7 + specifier: ^5.1.8 version: link:../../packages/astro vitest: specifier: ^3.0.2 @@ -8828,7 +8828,6 @@ packages: libsql@0.4.5: resolution: {integrity: sha512-sorTJV6PNt94Wap27Sai5gtVLIea4Otb2LUiAUyr3p6BPOScGMKGt5F1b5X/XgkNtcsDKeX5qfeBDj+PdShclQ==} - cpu: [x64, arm64, wasm32] os: [darwin, linux, win32] lilconfig@3.1.3: