Skip to content

Commit b67af2f

Browse files
chore: release 12.3.0
1 parent b24c1e0 commit b67af2f

File tree

21 files changed

+42
-27
lines changed

21 files changed

+42
-27
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
<a name="12.3.0"></a>
2+
3+
# [12.3.0](https://github.com/ngrx/platform/compare/12.2.0...12.3.0) (2021-07-22)
4+
5+
### Bug Fixes
6+
7+
- **component-store:** accept error type in tapResponse with strict generic checks ([#3068](https://github.com/ngrx/platform/issues/3068)) ([3e02e37](https://github.com/ngrx/platform/commit/3e02e37)), closes [#3056](https://github.com/ngrx/platform/issues/3056)
8+
- **data:** immutably delete an entity ([#3040](https://github.com/ngrx/platform/issues/3040)) ([a6c199f](https://github.com/ngrx/platform/commit/a6c199f)), closes [#2553](https://github.com/ngrx/platform/issues/2553)
9+
- **data:** SAVE_ENTITIES_CANCELED type in SaveEntitiesCanceled ([#3079](https://github.com/ngrx/platform/issues/3079)) ([b24c1e0](https://github.com/ngrx/platform/commit/b24c1e0)), closes [#3065](https://github.com/ngrx/platform/issues/3065)
10+
- **store:** make readonly usage consistent ([#3050](https://github.com/ngrx/platform/issues/3050)) ([#3069](https://github.com/ngrx/platform/issues/3069)) ([a39b278](https://github.com/ngrx/platform/commit/a39b278))
11+
12+
### Features
13+
14+
- **store:** make reducers accessible from ReducerManager ([#3064](https://github.com/ngrx/platform/issues/3064)) ([bf2bd1a](https://github.com/ngrx/platform/commit/bf2bd1a))
15+
116
<a name="12.2.0"></a>
217

318
# [12.2.0](https://github.com/ngrx/platform/compare/12.1.0...12.2.0) (2021-06-29)

modules/component-store/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/component-store",
3-
"version": "12.2.0",
3+
"version": "12.3.0",
44
"description": "Reactive store for component state",
55
"repository": {
66
"type": "git",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^12.2.0';
1+
export const platformVersion = '^12.3.0';

modules/component/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/component",
3-
"version": "12.2.0",
3+
"version": "12.3.0",
44
"description": "Reactive Extensions for Angular Components",
55
"repository": {
66
"type": "git",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^12.2.0';
1+
export const platformVersion = '^12.3.0';

modules/data/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/data",
3-
"version": "12.2.0",
3+
"version": "12.3.0",
44
"description": "API management for NgRx",
55
"repository": {
66
"type": "git",
@@ -22,9 +22,9 @@
2222
"peerDependencies": {
2323
"@angular/common": "^12.0.0",
2424
"@angular/core": "^12.0.0",
25-
"@ngrx/store": "12.2.0",
26-
"@ngrx/effects": "12.2.0",
27-
"@ngrx/entity": "12.2.0",
25+
"@ngrx/store": "12.3.0",
26+
"@ngrx/effects": "12.3.0",
27+
"@ngrx/entity": "12.3.0",
2828
"rxjs": "^6.5.3"
2929
},
3030
"schematics": "./schematics/collection.json",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^12.2.0';
1+
export const platformVersion = '^12.3.0';

modules/effects/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/effects",
3-
"version": "12.2.0",
3+
"version": "12.3.0",
44
"description": "Side effect model for @ngrx/store",
55
"repository": {
66
"type": "git",
@@ -22,7 +22,7 @@
2222
"homepage": "https://github.com/ngrx/platform#readme",
2323
"peerDependencies": {
2424
"@angular/core": "^12.0.0",
25-
"@ngrx/store": "12.2.0",
25+
"@ngrx/store": "12.3.0",
2626
"rxjs": "^6.5.3"
2727
},
2828
"schematics": "./schematics/collection.json",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^12.2.0';
1+
export const platformVersion = '^12.3.0';

modules/entity/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/entity",
3-
"version": "12.2.0",
3+
"version": "12.3.0",
44
"description": "Common utilities for entity reducers",
55
"repository": {
66
"type": "git",
@@ -21,7 +21,7 @@
2121
"homepage": "https://github.com/ngrx/platform#readme",
2222
"peerDependencies": {
2323
"@angular/core": "^12.0.0",
24-
"@ngrx/store": "12.2.0",
24+
"@ngrx/store": "12.3.0",
2525
"rxjs": "^6.5.3"
2626
},
2727
"schematics": "./schematics/collection.json",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^12.2.0';
1+
export const platformVersion = '^12.3.0';

modules/router-store/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/router-store",
3-
"version": "12.2.0",
3+
"version": "12.3.0",
44
"description": "Bindings to connect @angular/router to @ngrx/store",
55
"repository": {
66
"type": "git",
@@ -23,7 +23,7 @@
2323
"@angular/common": "^12.0.0",
2424
"@angular/core": "^12.0.0",
2525
"@angular/router": "^12.0.0",
26-
"@ngrx/store": "12.2.0",
26+
"@ngrx/store": "12.3.0",
2727
"rxjs": "^6.5.3"
2828
},
2929
"schematics": "./schematics/collection.json",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^12.2.0';
1+
export const platformVersion = '^12.3.0';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^12.2.0';
1+
export const platformVersion = '^12.3.0';

modules/schematics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/schematics",
3-
"version": "12.2.0",
3+
"version": "12.3.0",
44
"description": "NgRx Schematics for Angular",
55
"repository": {
66
"type": "git",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^12.2.0';
1+
export const platformVersion = '^12.3.0';

modules/store-devtools/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/store-devtools",
3-
"version": "12.2.0",
3+
"version": "12.3.0",
44
"description": "Developer tools for @ngrx/store",
55
"repository": {
66
"type": "git",
@@ -20,7 +20,7 @@
2020
},
2121
"homepage": "https://github.com/ngrx/platform#readme",
2222
"peerDependencies": {
23-
"@ngrx/store": "12.2.0",
23+
"@ngrx/store": "12.3.0",
2424
"rxjs": "^6.5.3"
2525
},
2626
"schematics": "./schematics/collection.json",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^12.2.0';
1+
export const platformVersion = '^12.3.0';

modules/store/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/store",
3-
"version": "12.2.0",
3+
"version": "12.3.0",
44
"description": "RxJS powered Redux for Angular apps",
55
"repository": {
66
"type": "git",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^12.2.0';
1+
export const platformVersion = '^12.3.0';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/platform",
3-
"version": "12.2.0",
3+
"version": "12.3.0",
44
"description": "monorepo for ngrx development",
55
"scripts": {
66
"ng": "ng",

0 commit comments

Comments
 (0)