Skip to content

Commit 1271ee9

Browse files
chore: release 16.0.0-rc.0
1 parent 74c287f commit 1271ee9

File tree

22 files changed

+53
-39
lines changed

22 files changed

+53
-39
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
<a name="16.0.0-rc.0"></a>
2+
3+
# [16.0.0-rc.0](https://github.com/ngrx/platform/compare/16.0.0-beta.0...16.0.0-rc.0) (2023-05-04)
4+
5+
### Bug Fixes
6+
7+
- **data:** make non-optimistic add command entity partial ([#3859](https://github.com/ngrx/platform/issues/3859)) ([93ee1db](https://github.com/ngrx/platform/commit/93ee1db))
8+
9+
### Features
10+
11+
- **component-store:** add selectSignal options ([503e9d8](https://github.com/ngrx/platform/commit/503e9d8))
12+
- **component-store:** add selectSignal signature that combines provided signals ([#3863](https://github.com/ngrx/platform/issues/3863)) ([07ba3fa](https://github.com/ngrx/platform/commit/07ba3fa))
13+
- **store:** add selectSignal options ([0a13c4d](https://github.com/ngrx/platform/commit/0a13c4d))
14+
115
<a name="16.0.0-beta.0"></a>
216

317
# [16.0.0-beta.0](https://github.com/ngrx/platform/compare/15.4.0...16.0.0-beta.0) (2023-04-27)

modules/component-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/component-store",
3-
"version": "16.0.0-beta.0",
3+
"version": "16.0.0-rc.0",
44
"description": "Reactive store for component state",
55
"repository": {
66
"type": "git",
@@ -22,7 +22,7 @@
2222
},
2323
"homepage": "https://github.com/ngrx/platform#readme",
2424
"peerDependencies": {
25-
"@angular/core": "^16.0.0-next.0",
25+
"@angular/core": "^16.0.0",
2626
"rxjs": "^6.5.3 || ^7.5.0"
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 = '^16.0.0-beta.0';
1+
export const platformVersion = '^16.0.0-rc.0';

modules/component/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/component",
3-
"version": "16.0.0-beta.0",
3+
"version": "16.0.0-rc.0",
44
"description": "Reactive Extensions for Angular Components",
55
"repository": {
66
"type": "git",
@@ -20,8 +20,8 @@
2020
},
2121
"homepage": "https://github.com/ngrx/platform#readme",
2222
"peerDependencies": {
23-
"@angular/common": "^16.0.0-next.0",
24-
"@angular/core": "^16.0.0-next.0",
23+
"@angular/common": "^16.0.0",
24+
"@angular/core": "^16.0.0",
2525
"rxjs": "^6.5.3 || ^7.5.0"
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 = '^16.0.0-beta.0';
1+
export const platformVersion = '^16.0.0-rc.0';

modules/data/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/data",
3-
"version": "16.0.0-beta.0",
3+
"version": "16.0.0-rc.0",
44
"description": "API management for NgRx",
55
"repository": {
66
"type": "git",
@@ -20,11 +20,11 @@
2020
},
2121
"homepage": "https://github.com/ngrx/platform#readme",
2222
"peerDependencies": {
23-
"@angular/common": "^16.0.0-next.0",
24-
"@angular/core": "^16.0.0-next.0",
25-
"@ngrx/store": "16.0.0-beta.0",
26-
"@ngrx/effects": "16.0.0-beta.0",
27-
"@ngrx/entity": "16.0.0-beta.0",
23+
"@angular/common": "^16.0.0",
24+
"@angular/core": "^16.0.0",
25+
"@ngrx/store": "16.0.0-rc.0",
26+
"@ngrx/effects": "16.0.0-rc.0",
27+
"@ngrx/entity": "16.0.0-rc.0",
2828
"rxjs": "^6.5.3 || ^7.5.0"
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 = '^16.0.0-beta.0';
1+
export const platformVersion = '^16.0.0-rc.0';

modules/effects/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/effects",
3-
"version": "16.0.0-beta.0",
3+
"version": "16.0.0-rc.0",
44
"description": "Side effect model for @ngrx/store",
55
"repository": {
66
"type": "git",
@@ -21,8 +21,8 @@
2121
},
2222
"homepage": "https://github.com/ngrx/platform#readme",
2323
"peerDependencies": {
24-
"@angular/core": "^16.0.0-next.0",
25-
"@ngrx/store": "16.0.0-beta.0",
24+
"@angular/core": "^16.0.0",
25+
"@ngrx/store": "16.0.0-rc.0",
2626
"rxjs": "^6.5.3 || ^7.5.0"
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 = '^16.0.0-beta.0';
1+
export const platformVersion = '^16.0.0-rc.0';

modules/entity/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/entity",
3-
"version": "16.0.0-beta.0",
3+
"version": "16.0.0-rc.0",
44
"description": "Common utilities for entity reducers",
55
"repository": {
66
"type": "git",
@@ -20,8 +20,8 @@
2020
},
2121
"homepage": "https://github.com/ngrx/platform#readme",
2222
"peerDependencies": {
23-
"@angular/core": "^16.0.0-next.0",
24-
"@ngrx/store": "16.0.0-beta.0",
23+
"@angular/core": "^16.0.0",
24+
"@ngrx/store": "16.0.0-rc.0",
2525
"rxjs": "^6.5.3 || ^7.5.0"
2626
},
2727
"schematics": "./schematics/collection.json",

0 commit comments

Comments
 (0)