diff --git a/CHANGELOG.md b/CHANGELOG.md index 56d5f8bb57..3c1adf0fe1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ + + +# [14.2.0](https://github.com/ngrx/platform/compare/14.1.0...14.2.0) (2022-08-18) + +### Bug Fixes + +- **component-store:** make synchronous updater errors catchable ([#3490](https://github.com/ngrx/platform/issues/3490)) ([1a906fd](https://github.com/ngrx/platform/commit/1a906fd)) +- **component-store:** move isInitialized check to queueScheduler context on state update ([#3492](https://github.com/ngrx/platform/issues/3492)) ([53636e4](https://github.com/ngrx/platform/commit/53636e4)), closes [#2991](https://github.com/ngrx/platform/issues/2991) + +### Features + +- **component-store:** handle errors in next callback ([#3533](https://github.com/ngrx/platform/issues/3533)) ([551c8eb](https://github.com/ngrx/platform/commit/551c8eb)) + # [14.1.0](https://github.com/ngrx/platform/compare/14.0.2...14.1.0) (2022-08-09) diff --git a/modules/component-store/package.json b/modules/component-store/package.json index 92ddffdcca..111b0194a8 100644 --- a/modules/component-store/package.json +++ b/modules/component-store/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/component-store", - "version": "14.1.0", + "version": "14.2.0", "description": "Reactive store for component state", "repository": { "type": "git", diff --git a/modules/component-store/schematics-core/utility/libs-version.ts b/modules/component-store/schematics-core/utility/libs-version.ts index e8ae417ffa..02059284d6 100644 --- a/modules/component-store/schematics-core/utility/libs-version.ts +++ b/modules/component-store/schematics-core/utility/libs-version.ts @@ -1 +1 @@ -export const platformVersion = '^14.1.0'; +export const platformVersion = '^14.2.0'; diff --git a/modules/component/package.json b/modules/component/package.json index c13b6082d6..c13208481a 100644 --- a/modules/component/package.json +++ b/modules/component/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/component", - "version": "14.1.0", + "version": "14.2.0", "description": "Reactive Extensions for Angular Components", "repository": { "type": "git", diff --git a/modules/component/schematics-core/utility/libs-version.ts b/modules/component/schematics-core/utility/libs-version.ts index e8ae417ffa..02059284d6 100644 --- a/modules/component/schematics-core/utility/libs-version.ts +++ b/modules/component/schematics-core/utility/libs-version.ts @@ -1 +1 @@ -export const platformVersion = '^14.1.0'; +export const platformVersion = '^14.2.0'; diff --git a/modules/data/package.json b/modules/data/package.json index 1676fdd6fd..c554539ae7 100644 --- a/modules/data/package.json +++ b/modules/data/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/data", - "version": "14.1.0", + "version": "14.2.0", "description": "API management for NgRx", "repository": { "type": "git", @@ -22,9 +22,9 @@ "peerDependencies": { "@angular/common": "^14.0.0", "@angular/core": "^14.0.0", - "@ngrx/store": "14.1.0", - "@ngrx/effects": "14.1.0", - "@ngrx/entity": "14.1.0", + "@ngrx/store": "14.2.0", + "@ngrx/effects": "14.2.0", + "@ngrx/entity": "14.2.0", "rxjs": "^6.5.3 || ^7.5.0" }, "schematics": "./schematics/collection.json", diff --git a/modules/data/schematics-core/utility/libs-version.ts b/modules/data/schematics-core/utility/libs-version.ts index e8ae417ffa..02059284d6 100644 --- a/modules/data/schematics-core/utility/libs-version.ts +++ b/modules/data/schematics-core/utility/libs-version.ts @@ -1 +1 @@ -export const platformVersion = '^14.1.0'; +export const platformVersion = '^14.2.0'; diff --git a/modules/effects/package.json b/modules/effects/package.json index ac500081bd..5b32b599ce 100644 --- a/modules/effects/package.json +++ b/modules/effects/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/effects", - "version": "14.1.0", + "version": "14.2.0", "description": "Side effect model for @ngrx/store", "repository": { "type": "git", @@ -22,7 +22,7 @@ "homepage": "https://github.com/ngrx/platform#readme", "peerDependencies": { "@angular/core": "^14.0.0", - "@ngrx/store": "14.1.0", + "@ngrx/store": "14.2.0", "rxjs": "^6.5.3 || ^7.5.0" }, "schematics": "./schematics/collection.json", diff --git a/modules/effects/schematics-core/utility/libs-version.ts b/modules/effects/schematics-core/utility/libs-version.ts index e8ae417ffa..02059284d6 100644 --- a/modules/effects/schematics-core/utility/libs-version.ts +++ b/modules/effects/schematics-core/utility/libs-version.ts @@ -1 +1 @@ -export const platformVersion = '^14.1.0'; +export const platformVersion = '^14.2.0'; diff --git a/modules/entity/package.json b/modules/entity/package.json index 5118e0da01..daa5fc1ae5 100644 --- a/modules/entity/package.json +++ b/modules/entity/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/entity", - "version": "14.1.0", + "version": "14.2.0", "description": "Common utilities for entity reducers", "repository": { "type": "git", @@ -21,7 +21,7 @@ "homepage": "https://github.com/ngrx/platform#readme", "peerDependencies": { "@angular/core": "^14.0.0", - "@ngrx/store": "14.1.0", + "@ngrx/store": "14.2.0", "rxjs": "^6.5.3 || ^7.5.0" }, "schematics": "./schematics/collection.json", diff --git a/modules/entity/schematics-core/utility/libs-version.ts b/modules/entity/schematics-core/utility/libs-version.ts index e8ae417ffa..02059284d6 100644 --- a/modules/entity/schematics-core/utility/libs-version.ts +++ b/modules/entity/schematics-core/utility/libs-version.ts @@ -1 +1 @@ -export const platformVersion = '^14.1.0'; +export const platformVersion = '^14.2.0'; diff --git a/modules/eslint-plugin/package.json b/modules/eslint-plugin/package.json index 32b22f9390..d0cdb9acdc 100644 --- a/modules/eslint-plugin/package.json +++ b/modules/eslint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/eslint-plugin", - "version": "14.1.0", + "version": "14.2.0", "description": "NgRx ESLint Plugin", "repository": { "type": "git", diff --git a/modules/router-store/package.json b/modules/router-store/package.json index 152bea1c56..b7c27a9795 100644 --- a/modules/router-store/package.json +++ b/modules/router-store/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/router-store", - "version": "14.1.0", + "version": "14.2.0", "description": "Bindings to connect @angular/router to @ngrx/store", "repository": { "type": "git", @@ -23,7 +23,7 @@ "@angular/common": "^14.0.0", "@angular/core": "^14.0.0", "@angular/router": "^14.0.0", - "@ngrx/store": "14.1.0", + "@ngrx/store": "14.2.0", "rxjs": "^6.5.3 || ^7.5.0" }, "schematics": "./schematics/collection.json", diff --git a/modules/router-store/schematics-core/utility/libs-version.ts b/modules/router-store/schematics-core/utility/libs-version.ts index e8ae417ffa..02059284d6 100644 --- a/modules/router-store/schematics-core/utility/libs-version.ts +++ b/modules/router-store/schematics-core/utility/libs-version.ts @@ -1 +1 @@ -export const platformVersion = '^14.1.0'; +export const platformVersion = '^14.2.0'; diff --git a/modules/schematics-core/utility/libs-version.ts b/modules/schematics-core/utility/libs-version.ts index e8ae417ffa..02059284d6 100644 --- a/modules/schematics-core/utility/libs-version.ts +++ b/modules/schematics-core/utility/libs-version.ts @@ -1 +1 @@ -export const platformVersion = '^14.1.0'; +export const platformVersion = '^14.2.0'; diff --git a/modules/schematics/package.json b/modules/schematics/package.json index eeb2653ad7..93149d3d62 100644 --- a/modules/schematics/package.json +++ b/modules/schematics/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/schematics", - "version": "14.1.0", + "version": "14.2.0", "description": "NgRx Schematics for Angular", "repository": { "type": "git", diff --git a/modules/schematics/schematics-core/utility/libs-version.ts b/modules/schematics/schematics-core/utility/libs-version.ts index e8ae417ffa..02059284d6 100644 --- a/modules/schematics/schematics-core/utility/libs-version.ts +++ b/modules/schematics/schematics-core/utility/libs-version.ts @@ -1 +1 @@ -export const platformVersion = '^14.1.0'; +export const platformVersion = '^14.2.0'; diff --git a/modules/store-devtools/package.json b/modules/store-devtools/package.json index d5e4ff6e69..fa5ad27a1f 100644 --- a/modules/store-devtools/package.json +++ b/modules/store-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/store-devtools", - "version": "14.1.0", + "version": "14.2.0", "description": "Developer tools for @ngrx/store", "repository": { "type": "git", @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/ngrx/platform#readme", "peerDependencies": { - "@ngrx/store": "14.1.0", + "@ngrx/store": "14.2.0", "rxjs": "^6.5.3 || ^7.5.0" }, "schematics": "./schematics/collection.json", diff --git a/modules/store-devtools/schematics-core/utility/libs-version.ts b/modules/store-devtools/schematics-core/utility/libs-version.ts index e8ae417ffa..02059284d6 100644 --- a/modules/store-devtools/schematics-core/utility/libs-version.ts +++ b/modules/store-devtools/schematics-core/utility/libs-version.ts @@ -1 +1 @@ -export const platformVersion = '^14.1.0'; +export const platformVersion = '^14.2.0'; diff --git a/modules/store/package.json b/modules/store/package.json index 5c82196293..0b2eaec159 100644 --- a/modules/store/package.json +++ b/modules/store/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/store", - "version": "14.1.0", + "version": "14.2.0", "description": "RxJS powered Redux for Angular apps", "repository": { "type": "git", diff --git a/modules/store/schematics-core/utility/libs-version.ts b/modules/store/schematics-core/utility/libs-version.ts index e8ae417ffa..02059284d6 100644 --- a/modules/store/schematics-core/utility/libs-version.ts +++ b/modules/store/schematics-core/utility/libs-version.ts @@ -1 +1 @@ -export const platformVersion = '^14.1.0'; +export const platformVersion = '^14.2.0'; diff --git a/package.json b/package.json index 5d5f5acc15..9c9a5886fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ngrx/platform", - "version": "14.1.0", + "version": "14.2.0", "description": "monorepo for ngrx development", "scripts": { "ng": "ng",