Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #186

Merged
merged 1 commit into from
Dec 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions .changeset/warm-badgers-nail.md

This file was deleted.

40 changes: 40 additions & 0 deletions libs/qwikdev-astro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
# @qwikdev/astro

## 0.7.0

### Minor Changes

- 3786754: ## πŸŽ„ 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
- πŸ”„ 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
- πŸ”§ 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 Astro 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))

## 0.6.3

### Patch Changes
Expand Down
9 changes: 7 additions & 2 deletions libs/qwikdev-astro/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@qwikdev/astro",
"description": "Use Qwik components and Resumability within Astro",
"version": "0.6.3",
"version": "0.7.0",
"contributors": [
{
"name": "Jack Shelton",
Expand Down Expand Up @@ -40,7 +40,12 @@
"./utils": "./src/utils.ts",
"./q-astro-manifest.json": "./q-astro-manifest.json"
},
"files": ["src", "src/index.ts", "server.ts", "env.d.ts"],
"files": [
"src",
"src/index.ts",
"server.ts",
"env.d.ts"
],
"keywords": [
"astro-integration",
"astro-component",
Expand Down