diff --git a/.changeset/clean-queens-reflect.md b/.changeset/clean-queens-reflect.md deleted file mode 100644 index f555f355a0f..00000000000 --- a/.changeset/clean-queens-reflect.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@builder.io/qwik': patch ---- - -FEAT: showing qrl parent names. -in dev mode, qrl segments now start with their parent filename so it's easy to see where they came from. Furthermore, in production builds these filenames are also used so that origins in `q-manifest.json` are easy to understand. diff --git a/.changeset/curvy-turtles-marry.md b/.changeset/curvy-turtles-marry.md deleted file mode 100644 index cda30352995..00000000000 --- a/.changeset/curvy-turtles-marry.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@builder.io/qwik-city': patch ---- - -FEAT: Experimental feature - `noSPA`. -This disables history patching, slightly reducing code size and startup time. Use this when your application is MPA only, meaning you don't use the Link component. To enable this, add it to the `experimental` array of the `qwikVite` plugin (not the `qwikCity` plugin). diff --git a/.changeset/quiet-grapes-sit.md b/.changeset/quiet-grapes-sit.md deleted file mode 100644 index 1e685db8f26..00000000000 --- a/.changeset/quiet-grapes-sit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@builder.io/qwik': patch ---- - -FIX: Optimizer now ignores unknown deps in graph that caused crashes during build diff --git a/.changeset/tender-files-press.md b/.changeset/tender-files-press.md deleted file mode 100644 index bcf2bc22fe5..00000000000 --- a/.changeset/tender-files-press.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@builder.io/qwik': patch ---- - -FIX: Do not allow object methods to be serialized with style prop diff --git a/.changeset/wise-kings-fry.md b/.changeset/wise-kings-fry.md deleted file mode 100644 index d1c43a96c37..00000000000 --- a/.changeset/wise-kings-fry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@builder.io/qwik': patch ---- - -FIX: In dev mode, changes to QRLs now explicitly invalidate the segment so that the browser will reload it diff --git a/packages/create-qwik/CHANGELOG.md b/packages/create-qwik/CHANGELOG.md index 6bc45216b01..8f3021c0eb2 100644 --- a/packages/create-qwik/CHANGELOG.md +++ b/packages/create-qwik/CHANGELOG.md @@ -1,5 +1,7 @@ # create-qwik +## 1.9.1 + ## 1.9.0 ### Patch Changes diff --git a/packages/create-qwik/package.json b/packages/create-qwik/package.json index e0660f84664..d93400e05ba 100644 --- a/packages/create-qwik/package.json +++ b/packages/create-qwik/package.json @@ -1,7 +1,7 @@ { "name": "create-qwik", "description": "Interactive CLI for create Qwik projects and adding features.", - "version": "1.9.0", + "version": "1.9.1", "author": "Builder.io Team", "bin": "./create-qwik.cjs", "bugs": "https://github.com/QwikDev/qwik/issues", diff --git a/packages/eslint-plugin-qwik/CHANGELOG.md b/packages/eslint-plugin-qwik/CHANGELOG.md index c0f6b5ff9e2..872eb337ad5 100644 --- a/packages/eslint-plugin-qwik/CHANGELOG.md +++ b/packages/eslint-plugin-qwik/CHANGELOG.md @@ -1,5 +1,7 @@ # eslint-plugin-qwik +## 1.9.1 + ## 1.9.0 ## 1.8.0 diff --git a/packages/eslint-plugin-qwik/package.json b/packages/eslint-plugin-qwik/package.json index baf217bd71f..0c204125e80 100644 --- a/packages/eslint-plugin-qwik/package.json +++ b/packages/eslint-plugin-qwik/package.json @@ -1,7 +1,7 @@ { "name": "eslint-plugin-qwik", "description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.", - "version": "1.9.0", + "version": "1.9.1", "author": "Builder Team", "bugs": "https://github.com/QwikDev/qwik/issues", "dependencies": { diff --git a/packages/qwik-city/CHANGELOG.md b/packages/qwik-city/CHANGELOG.md index 0938bbefd8c..bf18189fd92 100644 --- a/packages/qwik-city/CHANGELOG.md +++ b/packages/qwik-city/CHANGELOG.md @@ -1,5 +1,12 @@ # @builder.io/qwik-city +## 1.9.1 + +### Patch Changes + +- ✨ Experimental feature - `noSPA`. (by [@wmertens](https://github.com/wmertens) in [#6937](https://github.com/QwikDev/qwik/pull/6937)) + This disables history patching, slightly reducing code size and startup time. Use this when your application is MPA only, meaning you don't use the Link component. To enable this, add it to the `experimental` array of the `qwikVite` plugin (not the `qwikCity` plugin). + ## 1.9.0 ### Minor Changes diff --git a/packages/qwik-city/package.json b/packages/qwik-city/package.json index 46e0beea090..2c487321dde 100644 --- a/packages/qwik-city/package.json +++ b/packages/qwik-city/package.json @@ -1,7 +1,7 @@ { "name": "@builder.io/qwik-city", "description": "The meta-framework for Qwik.", - "version": "1.9.0", + "version": "1.9.1", "bugs": "https://github.com/QwikDev/qwik/issues", "dependencies": { "@mdx-js/mdx": "^3", diff --git a/packages/qwik/CHANGELOG.md b/packages/qwik/CHANGELOG.md index 88393a3c71e..704e99cf174 100644 --- a/packages/qwik/CHANGELOG.md +++ b/packages/qwik/CHANGELOG.md @@ -1,5 +1,18 @@ # @builder.io/qwik +## 1.9.1 + +### Patch Changes + +- ✨ showing qrl parent names. (by [@wmertens](https://github.com/wmertens) in [#6881](https://github.com/QwikDev/qwik/pull/6881)) + in dev mode, qrl segments now start with their parent filename so it's easy to see where they came from. Furthermore, in production builds these filenames are also used so that origins in `q-manifest.json` are easy to understand. + +- 🐞🩹 Optimizer now ignores unknown deps in graph that caused crashes during build (by [@wmertens](https://github.com/wmertens) in [#6888](https://github.com/QwikDev/qwik/pull/6888)) + +- 🐞🩹 Do not allow object methods to be serialized with style prop (by [@jakovljevic-mladen](https://github.com/jakovljevic-mladen) in [#6932](https://github.com/QwikDev/qwik/pull/6932)) + +- 🐞🩹 In dev mode, changes to QRLs now explicitly invalidate the segment so that the browser will reload it (by [@wmertens](https://github.com/wmertens) in [#6938](https://github.com/QwikDev/qwik/pull/6938)) + ## 1.9.0 ### Patch Changes diff --git a/packages/qwik/package.json b/packages/qwik/package.json index 5fd7b2c13e3..f913a5b3139 100644 --- a/packages/qwik/package.json +++ b/packages/qwik/package.json @@ -1,7 +1,7 @@ { "name": "@builder.io/qwik", "description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.", - "version": "1.9.0", + "version": "1.9.1", "annotation": "This package.json is for internal use in the monorepo, the build actually makes a new package.json for the published package via scripts/package-json.ts", "bin": { "qwik": "./dist/qwik-cli.cjs"