From 6d6fabed2a650058fd075a7deefea07954b4de6d Mon Sep 17 00:00:00 2001 From: Julian Jandl Date: Mon, 23 Dec 2024 23:48:43 +0100 Subject: [PATCH 1/9] release(cdk): 19.0.1 --- libs/cdk/CHANGELOG.md | 9 +++++++++ libs/cdk/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/libs/cdk/CHANGELOG.md b/libs/cdk/CHANGELOG.md index c5a301eee4..bbd03c3f50 100644 --- a/libs/cdk/CHANGELOG.md +++ b/libs/cdk/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [19.0.1](https://github.com/rx-angular/rx-angular/compare/cdk@19.0.0...cdk@19.0.1) (2024-12-23) + + +### Bug Fixes + +* replace toObservableMicrotask private API with proper solution ([339b2e3](https://github.com/rx-angular/rx-angular/commit/339b2e3e69e2ed49d368f33c45fa0bdaac8820f4)) + + + # [19.0.0](https://github.com/rx-angular/rx-angular/compare/cdk@18.0.0...cdk@19.0.0) (2024-12-05) diff --git a/libs/cdk/package.json b/libs/cdk/package.json index c8c33f973c..11171abbb7 100644 --- a/libs/cdk/package.json +++ b/libs/cdk/package.json @@ -1,6 +1,6 @@ { "name": "@rx-angular/cdk", - "version": "19.0.0", + "version": "19.0.1", "description": "@rx-angular/cdk is a Component Development Kit for ergonomic and highly performant angular applications. It helps to to build Large scale applications, UI libs, state management, rendering systems and much more. Furthermore the unique way of mixing reactive as well as imperative code leads to best DX and speed.", "publishConfig": { "access": "public" From 58cd4b02384dce345e82c49bbbfaea08cdcf9735 Mon Sep 17 00:00:00 2001 From: Julian Jandl Date: Mon, 23 Dec 2024 23:52:38 +0100 Subject: [PATCH 2/9] release(template): 19.1.0 --- libs/template/CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ libs/template/package.json | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/libs/template/CHANGELOG.md b/libs/template/CHANGELOG.md index 348b075ca0..d1ff19cc7e 100644 --- a/libs/template/CHANGELOG.md +++ b/libs/template/CHANGELOG.md @@ -2,6 +2,36 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +# [19.1.0](https://github.com/rx-angular/rx-angular/compare/template@19.0.0...template@19.1.0) (2024-12-23) + + +### Bug Fixes + +* replace toObservableMicrotask private API with proper solution ([339b2e3](https://github.com/rx-angular/rx-angular/commit/339b2e3e69e2ed49d368f33c45fa0bdaac8820f4)) +* **template:** destroy cached views ([ce61bd9](https://github.com/rx-angular/rx-angular/commit/ce61bd9fd01e8856471b6f4147a648741f87ab14)) +* **template:** fix API usage ([7c21631](https://github.com/rx-angular/rx-angular/commit/7c21631ddde6b53d92734696c5c1bb20c68ba8f0)) +* **template:** fix memory leaks in observers ([c15f3fd](https://github.com/rx-angular/rx-angular/commit/c15f3fdde25a39ea9ed94e51fcea099f4db09169)) +* **template:** properly handle subscriptions & cleanup ([8accd30](https://github.com/rx-angular/rx-angular/commit/8accd30f36236ee1032b46ae69ceec73e1f2d279)) +* **template:** rxjs 6 compat ([061b4fa](https://github.com/rx-angular/rx-angular/commit/061b4fa453eff5748fe58aebde1f9876f3575a8b)) + + +### Features + +* **template:** add developer preview jsdoc ([4bc010f](https://github.com/rx-angular/rx-angular/commit/4bc010fd058f38b7b95156c9c3decb390bcfbc35)) +* **template:** add jsdocs and token-based configuration ([a8460cf](https://github.com/rx-angular/rx-angular/commit/a8460cf1c08852c7c619c7ba56b3b1f546b6e14a)) +* **template:** add more docs for directives ([441a2e7](https://github.com/rx-angular/rx-angular/commit/441a2e7865c85013f17f2f40ef982cf7a030bce0)) +* **template:** introduce rx-virtual-view ([ca4c7d0](https://github.com/rx-angular/rx-angular/commit/ca4c7d0153a9419c76b585cd1e923fdbf9629655)) +* **template:** make virtual-view use config defaults ([caf5cf4](https://github.com/rx-angular/rx-angular/commit/caf5cf4df559d954d442f347b83e7173881b4396)) +* **template:** rename template to content ([70f7426](https://github.com/rx-angular/rx-angular/commit/70f7426c693a8353002aec8bd9991996cf9d005c)) +* **template:** slightly better types ([98a447e](https://github.com/rx-angular/rx-angular/commit/98a447e0bd427ac062e5a9a8f2f6fc0d148d8f45)) + + +### Performance Improvements + +* **template:** fix memory leaks in view cache ([4c496b4](https://github.com/rx-angular/rx-angular/commit/4c496b447056f97ff02cbffbf472274671d8cbdb)) + + + # [19.0.0](https://github.com/rx-angular/rx-angular/compare/template@18.0.3...template@19.0.0) (2024-12-05) diff --git a/libs/template/package.json b/libs/template/package.json index 705274c662..3fa4c2c318 100644 --- a/libs/template/package.json +++ b/libs/template/package.json @@ -1,6 +1,6 @@ { "name": "@rx-angular/template", - "version": "19.0.0", + "version": "19.1.0", "description": "**Fully** Reactive Component Template Rendering in Angular. @rx-angular/template aims to be a reflection of Angular's built in renderings just reactive.", "publishConfig": { "access": "public" From d0096fca680eb38a5895a9808508d46fa62228b6 Mon Sep 17 00:00:00 2001 From: Julian Jandl Date: Tue, 24 Dec 2024 00:02:28 +0100 Subject: [PATCH 3/9] chore: fix template changelog --- libs/template/CHANGELOG.md | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/libs/template/CHANGELOG.md b/libs/template/CHANGELOG.md index d1ff19cc7e..13065c508a 100644 --- a/libs/template/CHANGELOG.md +++ b/libs/template/CHANGELOG.md @@ -8,28 +8,11 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Bug Fixes * replace toObservableMicrotask private API with proper solution ([339b2e3](https://github.com/rx-angular/rx-angular/commit/339b2e3e69e2ed49d368f33c45fa0bdaac8820f4)) -* **template:** destroy cached views ([ce61bd9](https://github.com/rx-angular/rx-angular/commit/ce61bd9fd01e8856471b6f4147a648741f87ab14)) -* **template:** fix API usage ([7c21631](https://github.com/rx-angular/rx-angular/commit/7c21631ddde6b53d92734696c5c1bb20c68ba8f0)) -* **template:** fix memory leaks in observers ([c15f3fd](https://github.com/rx-angular/rx-angular/commit/c15f3fdde25a39ea9ed94e51fcea099f4db09169)) -* **template:** properly handle subscriptions & cleanup ([8accd30](https://github.com/rx-angular/rx-angular/commit/8accd30f36236ee1032b46ae69ceec73e1f2d279)) -* **template:** rxjs 6 compat ([061b4fa](https://github.com/rx-angular/rx-angular/commit/061b4fa453eff5748fe58aebde1f9876f3575a8b)) ### Features -* **template:** add developer preview jsdoc ([4bc010f](https://github.com/rx-angular/rx-angular/commit/4bc010fd058f38b7b95156c9c3decb390bcfbc35)) -* **template:** add jsdocs and token-based configuration ([a8460cf](https://github.com/rx-angular/rx-angular/commit/a8460cf1c08852c7c619c7ba56b3b1f546b6e14a)) -* **template:** add more docs for directives ([441a2e7](https://github.com/rx-angular/rx-angular/commit/441a2e7865c85013f17f2f40ef982cf7a030bce0)) -* **template:** introduce rx-virtual-view ([ca4c7d0](https://github.com/rx-angular/rx-angular/commit/ca4c7d0153a9419c76b585cd1e923fdbf9629655)) -* **template:** make virtual-view use config defaults ([caf5cf4](https://github.com/rx-angular/rx-angular/commit/caf5cf4df559d954d442f347b83e7173881b4396)) -* **template:** rename template to content ([70f7426](https://github.com/rx-angular/rx-angular/commit/70f7426c693a8353002aec8bd9991996cf9d005c)) -* **template:** slightly better types ([98a447e](https://github.com/rx-angular/rx-angular/commit/98a447e0bd427ac062e5a9a8f2f6fc0d148d8f45)) - - -### Performance Improvements - -* **template:** fix memory leaks in view cache ([4c496b4](https://github.com/rx-angular/rx-angular/commit/4c496b447056f97ff02cbffbf472274671d8cbdb)) - +* **template:** introduce virtual-view subpackage ([0bfa4fe9](https://github.com/rx-angular/rx-angular/commit/0bfa4fe9b2e395d0df7a534f8277e37134f2d5ff)) # [19.0.0](https://github.com/rx-angular/rx-angular/compare/template@18.0.3...template@19.0.0) (2024-12-05) From 9817f4b8d9817bc98c45f5329a5a4b00f3b51633 Mon Sep 17 00:00:00 2001 From: Julian Jandl Date: Tue, 24 Dec 2024 14:23:06 +0100 Subject: [PATCH 4/9] fix(template): expose virtual-view config tokens --- libs/template/virtual-view/src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/template/virtual-view/src/index.ts b/libs/template/virtual-view/src/index.ts index 11bfc12b94..047474b5c8 100644 --- a/libs/template/virtual-view/src/index.ts +++ b/libs/template/virtual-view/src/index.ts @@ -1,3 +1,7 @@ +export { + provideVirtualViewConfig, + RxVirtualViewConfig, +} from './lib/virtual-view.config'; export { RxVirtualView } from './lib/virtual-view.directive'; export { RxVirtualViewContent } from './lib/virtual-view-content.directive'; export { RxVirtualViewObserver } from './lib/virtual-view-observer.directive'; From 23572f1fcbbbf0f3c0d20725598b7d93f23b0b2c Mon Sep 17 00:00:00 2001 From: Julian Jandl Date: Tue, 24 Dec 2024 14:30:32 +0100 Subject: [PATCH 5/9] release(template): 19.1.1 --- libs/template/CHANGELOG.md | 9 +++++++++ libs/template/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/libs/template/CHANGELOG.md b/libs/template/CHANGELOG.md index 13065c508a..2770e58ce5 100644 --- a/libs/template/CHANGELOG.md +++ b/libs/template/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [19.1.1](https://github.com/rx-angular/rx-angular/compare/template@19.1.0...template@19.1.1) (2024-12-24) + + +### Bug Fixes + +* **template:** expose virtual-view config tokens ([9817f4b](https://github.com/rx-angular/rx-angular/commit/9817f4b8d9817bc98c45f5329a5a4b00f3b51633)) + + + # [19.1.0](https://github.com/rx-angular/rx-angular/compare/template@19.0.0...template@19.1.0) (2024-12-23) diff --git a/libs/template/package.json b/libs/template/package.json index 3fa4c2c318..e12bde0736 100644 --- a/libs/template/package.json +++ b/libs/template/package.json @@ -1,6 +1,6 @@ { "name": "@rx-angular/template", - "version": "19.1.0", + "version": "19.1.1", "description": "**Fully** Reactive Component Template Rendering in Angular. @rx-angular/template aims to be a reflection of Angular's built in renderings just reactive.", "publishConfig": { "access": "public" From 5528b689688de828cccb30418af3a55ac24fcaf3 Mon Sep 17 00:00:00 2001 From: Julian Jandl Date: Fri, 27 Dec 2024 14:41:56 +0100 Subject: [PATCH 6/9] fix(template): update peerDependency to cdk --- libs/template/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/template/package.json b/libs/template/package.json index e12bde0736..3e38ddec0f 100644 --- a/libs/template/package.json +++ b/libs/template/package.json @@ -44,7 +44,7 @@ }, "peerDependencies": { "@angular/core": "^19.0.0", - "@rx-angular/cdk": "^19.0.0", + "@rx-angular/cdk": "^19.0.1", "rxjs": "^6.5.3 || ^7.4.0" }, "dependencies": { From 715edade00b12f2df12221ab717d9099373668ca Mon Sep 17 00:00:00 2001 From: Julian Jandl Date: Fri, 27 Dec 2024 14:42:03 +0100 Subject: [PATCH 7/9] fix(state): update peerDependency to cdk --- libs/state/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/state/package.json b/libs/state/package.json index a292fe8adf..6bdf5d54dc 100644 --- a/libs/state/package.json +++ b/libs/state/package.json @@ -43,6 +43,7 @@ }, "peerDependencies": { "@angular/core": "^19.0.0", + "@rx-angular/cdk": "^19.0.1", "rxjs": "^6.5.3 || ^7.4.0" }, "dependencies": { From 1f6f942d39bb0e52022b59ad6b1ddde8d46cf181 Mon Sep 17 00:00:00 2001 From: Julian Jandl Date: Fri, 27 Dec 2024 14:44:39 +0100 Subject: [PATCH 8/9] chore: update yarn.lock --- yarn.lock | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yarn.lock b/yarn.lock index 705680a612..f3d82cbf0d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9455,6 +9455,7 @@ __metadata: tslib: "npm:^2.4.1" peerDependencies: "@angular/core": ^19.0.0 + "@rx-angular/cdk": ^19.0.1 rxjs: ^6.5.3 || ^7.4.0 languageName: unknown linkType: soft @@ -9467,7 +9468,7 @@ __metadata: tslib: "npm:^2.4.1" peerDependencies: "@angular/core": ^19.0.0 - "@rx-angular/cdk": ^19.0.0 + "@rx-angular/cdk": ^19.0.1 rxjs: ^6.5.3 || ^7.4.0 languageName: unknown linkType: soft From 6c56c0ae1594e324c70f2b6b2ab91b464f5dc2f9 Mon Sep 17 00:00:00 2001 From: Julian Jandl Date: Sat, 28 Dec 2024 20:06:26 +0100 Subject: [PATCH 9/9] release(state): 19.0.2 --- libs/state/CHANGELOG.md | 9 +++++++++ libs/state/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/libs/state/CHANGELOG.md b/libs/state/CHANGELOG.md index 9f2516823f..7c8a214af7 100644 --- a/libs/state/CHANGELOG.md +++ b/libs/state/CHANGELOG.md @@ -2,6 +2,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). +## [19.0.2](https://github.com/rx-angular/rx-angular/compare/state@19.0.1...state@19.0.2) (2024-12-28) + + +### Bug Fixes + +* **state:** update peerDependency to cdk ([715edad](https://github.com/rx-angular/rx-angular/commit/715edade00b12f2df12221ab717d9099373668ca)) + + + ## [19.0.1](https://github.com/rx-angular/rx-angular/compare/state@19.0.0...state@19.0.1) (2024-12-23) diff --git a/libs/state/package.json b/libs/state/package.json index 6bdf5d54dc..1d9a305703 100644 --- a/libs/state/package.json +++ b/libs/state/package.json @@ -1,6 +1,6 @@ { "name": "@rx-angular/state", - "version": "19.0.1", + "version": "19.0.2", "description": "@rx-angular/state is a light-weight, flexible, strongly typed and tested tool dedicated to reduce the complexity of managing component state and side effects in angular", "publishConfig": { "access": "public"