From 3786754b869eb665bc28f0a635b779625280ecdd Mon Sep 17 00:00:00 2001 From: jack shelton Date: Tue, 24 Dec 2024 21:38:31 -0600 Subject: [PATCH 1/3] 0.7 changeset --- .changeset/warm-badgers-nail.md | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .changeset/warm-badgers-nail.md diff --git a/.changeset/warm-badgers-nail.md b/.changeset/warm-badgers-nail.md new file mode 100644 index 00000000..ce80535f --- /dev/null +++ b/.changeset/warm-badgers-nail.md @@ -0,0 +1,34 @@ +--- +"@qwikdev/astro": minor +--- + +### ✨ What's New + +- 🚀 Added support for Astro 5 +- 🔄 Integrated Qwik's next-gen buffering system (First framework to support this!) +- 📚 Added support for Qwik libraries +- 🔍 New debug mode: `{ debug: true }` +- 💨 Switched to `renderToStream` for better performance +- 🧩 Improved inline Qwik components support ([#158](https://github.com/QwikDev/astro/issues/158)) + +### 🛠️ Under the Hood + +- ⚡️ Faster builds: Now using Vite for entrypoint detection +- 🪟 Fixed Windows compatibility issues +- 📁 Better `@astrojs/mdx` compatibility +- 📁 A temp directory is no longer needed +- 🌐 Full support for all deployment platforms ([#179](https://github.com/QwikDev/astro/issues/179)): + - Netlify + - Vercel + - Cloudflare + - And more! + +### 📦 Package Cleanup + +- Removed unnecessary dependencies: + - `fs-extra` + - `fs-move` + - `vite-tsconfig-paths` +- Simplified peer dependencies to `@builder.io/qwik >= 1.9.0` +- Fixed missing dependencies ([#161](https://github.com/QwikDev/astro/issues/161)) +- Better respect for Astro config options ([#74](https://github.com/QwikDev/astro/issues/74), [#172](https://github.com/QwikDev/astro/issues/172)) \ No newline at end of file From 00c008eee5433bbc0dd981da3c6831239d9d64ac Mon Sep 17 00:00:00 2001 From: jack shelton Date: Tue, 24 Dec 2024 21:39:36 -0600 Subject: [PATCH 2/3] add title --- .changeset/warm-badgers-nail.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.changeset/warm-badgers-nail.md b/.changeset/warm-badgers-nail.md index ce80535f..b2643661 100644 --- a/.changeset/warm-badgers-nail.md +++ b/.changeset/warm-badgers-nail.md @@ -2,6 +2,8 @@ "@qwikdev/astro": minor --- +## 🎄 Qwik Astro Holiday Update! (0.7) 🎅 + ### ✨ What's New - 🚀 Added support for Astro 5 From 960ca080fc109c7a498a8d569e9592ac1388856b Mon Sep 17 00:00:00 2001 From: jack shelton Date: Tue, 24 Dec 2024 21:46:17 -0600 Subject: [PATCH 3/3] better node --- .changeset/config.json | 8 +++++++- .changeset/warm-badgers-nail.md | 5 ++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index a109e23b..0224c52c 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -7,5 +7,11 @@ "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", - "ignore": ["@qwikdev/astro-website", "astro-deno-demo", "astro-node-demo", "astro-demo"] + "ignore": [ + "@qwikdev/astro-website", + "astro-deno-demo", + "astro-node-demo", + "astro-demo", + "minimal-fixture" + ] } diff --git a/.changeset/warm-badgers-nail.md b/.changeset/warm-badgers-nail.md index b2643661..b0173b4d 100644 --- a/.changeset/warm-badgers-nail.md +++ b/.changeset/warm-badgers-nail.md @@ -4,6 +4,8 @@ ## 🎄 Qwik Astro Holiday Update! (0.7) 🎅 +Special thanks to [Luiz Ferraz (Fryuni)](https://github.com/Fryuni) for his help with this release! + ### ✨ What's New - 🚀 Added support for Astro 5 @@ -16,10 +18,11 @@ ### 🛠️ Under the Hood - ⚡️ Faster builds: Now using Vite for entrypoint detection +- 🔧 Using latest version of Astro Integration Kit (18.0) - 🪟 Fixed Windows compatibility issues - 📁 Better `@astrojs/mdx` compatibility - 📁 A temp directory is no longer needed -- 🌐 Full support for all deployment platforms ([#179](https://github.com/QwikDev/astro/issues/179)): +- 🌐 Full support for all Astro deployment platforms ([#179](https://github.com/QwikDev/astro/issues/179)): - Netlify - Vercel - Cloudflare