Skip to content

Commit

Permalink
chore: release 14.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Aug 18, 2022
1 parent 53636e4 commit aad6b17
Show file tree
Hide file tree
Showing 22 changed files with 41 additions and 28 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,16 @@
<a name="14.2.0"></a>

# [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))

<a name="14.1.0"></a>

# [14.1.0](https://github.com/ngrx/platform/compare/14.0.2...14.1.0) (2022-08-09)
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
@@ -1 +1 @@
export const platformVersion = '^14.1.0';
export const platformVersion = '^14.2.0';
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion modules/component/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.1.0';
export const platformVersion = '^14.2.0';
8 changes: 4 additions & 4 deletions 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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion modules/data/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.1.0';
export const platformVersion = '^14.2.0';
4 changes: 2 additions & 2 deletions 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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion modules/effects/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.1.0';
export const platformVersion = '^14.2.0';
4 changes: 2 additions & 2 deletions 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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion modules/entity/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.1.0';
export const platformVersion = '^14.2.0';
2 changes: 1 addition & 1 deletion 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",
Expand Down
4 changes: 2 additions & 2 deletions 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",
Expand All @@ -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",
Expand Down
@@ -1 +1 @@
export const platformVersion = '^14.1.0';
export const platformVersion = '^14.2.0';
2 changes: 1 addition & 1 deletion modules/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.1.0';
export const platformVersion = '^14.2.0';
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion modules/schematics/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.1.0';
export const platformVersion = '^14.2.0';
4 changes: 2 additions & 2 deletions 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",
Expand All @@ -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",
Expand Down
@@ -1 +1 @@
export const platformVersion = '^14.1.0';
export const platformVersion = '^14.2.0';
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion modules/store/schematics-core/utility/libs-version.ts
@@ -1 +1 @@
export const platformVersion = '^14.1.0';
export const platformVersion = '^14.2.0';
2 changes: 1 addition & 1 deletion 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",
Expand Down

0 comments on commit aad6b17

Please sign in to comment.