diff --git a/.changeset/good-jars-mix.md b/.changeset/good-jars-mix.md deleted file mode 100644 index 6672be7303a..00000000000 --- a/.changeset/good-jars-mix.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -'@builder.io/qwik': minor ---- - -CHORE: Prepare backwards compatibility for V1 libraries in V2. - -We move internal fields `immutableProps` and `flags` out of JSXNode as they are not meant for public use. - -This will allow projects using older V1 libraries to continue to work with the Qwik V2 by adding the following `package.json` changes: - -```json -{ - "dependencies": { - "@builder.io/qwik": "^1.11.0", - "@qwik.dev/core": "^2.0.0" - } -} -``` - -And will prevent typescript errors when using libraries which haven't upgraded to V2 yet. diff --git a/.changeset/tiny-pants-scream.md b/.changeset/tiny-pants-scream.md deleted file mode 100644 index c7689f9e9b5..00000000000 --- a/.changeset/tiny-pants-scream.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@builder.io/qwik': minor ---- - -FEAT: add monorepo support to the `qwik add` command by adding a `projectDir` param - -That way you can run `qwik add --projectDir=packages/my-package` and it will add the feature to the specified project/package (sub) folder, instead of the root folder. diff --git a/packages/create-qwik/CHANGELOG.md b/packages/create-qwik/CHANGELOG.md index c50a1b42313..a0cce1eb376 100644 --- a/packages/create-qwik/CHANGELOG.md +++ b/packages/create-qwik/CHANGELOG.md @@ -1,5 +1,7 @@ # create-qwik +## 1.11.0 + ## 1.10.0 ### Patch Changes diff --git a/packages/create-qwik/package.json b/packages/create-qwik/package.json index 93ac0d10f38..995ad3d0567 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.10.0", + "version": "1.11.0", "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 783b4f43cd7..81c28e18bb9 100644 --- a/packages/eslint-plugin-qwik/CHANGELOG.md +++ b/packages/eslint-plugin-qwik/CHANGELOG.md @@ -1,5 +1,7 @@ # eslint-plugin-qwik +## 1.11.0 + ## 1.10.0 ### Patch Changes diff --git a/packages/eslint-plugin-qwik/package.json b/packages/eslint-plugin-qwik/package.json index 263fe1a99f9..035621196e6 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.10.0", + "version": "1.11.0", "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 7ba912a5b7e..38987595b33 100644 --- a/packages/qwik-city/CHANGELOG.md +++ b/packages/qwik-city/CHANGELOG.md @@ -1,5 +1,7 @@ # @builder.io/qwik-city +## 1.11.0 + ## 1.10.0 ### Patch Changes diff --git a/packages/qwik-city/package.json b/packages/qwik-city/package.json index ba6bd98461d..dfe66cc60f8 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.10.0", + "version": "1.11.0", "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 0b98884c918..de39b7afd7a 100644 --- a/packages/qwik/CHANGELOG.md +++ b/packages/qwik/CHANGELOG.md @@ -1,5 +1,30 @@ # @builder.io/qwik +## 1.11.0 + +### Minor Changes + +- CHORE: Prepare backwards compatibility for V1 libraries in V2. (by [@wmertens](https://github.com/wmertens) in [#7044](https://github.com/QwikDev/qwik/pull/7044)) + + We move internal fields `immutableProps` and `flags` out of JSXNode as they are not meant for public use. + + This will allow projects using older V1 libraries to continue to work with the Qwik V2 by adding the following `package.json` changes: + + ```json + { + "dependencies": { + "@builder.io/qwik": "^1.11.0", + "@qwik.dev/core": "^2.0.0" + } + } + ``` + + And will prevent typescript errors when using libraries which haven't upgraded to V2 yet. + +- ✨ add monorepo support to the `qwik add` command by adding a `projectDir` param (by [@shairez](https://github.com/shairez) in [#7059](https://github.com/QwikDev/qwik/pull/7059)) + + That way you can run `qwik add --projectDir=packages/my-package` and it will add the feature to the specified project/package (sub) folder, instead of the root folder. + ## 1.10.0 ### Minor Changes diff --git a/packages/qwik/package.json b/packages/qwik/package.json index 13514913ce6..389aecdaa05 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.10.0", + "version": "1.11.0", "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": "./qwik-cli.cjs"