Skip to content

Commit

Permalink
chore: release 16.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed May 9, 2023
1 parent 5843e7f commit b4431f7
Show file tree
Hide file tree
Showing 22 changed files with 45 additions and 28 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<a name="16.0.0-rc.1"></a>

# [16.0.0-rc.1](https://github.com/ngrx/platform/compare/16.0.0-rc.0...16.0.0-rc.1) (2023-05-09)

### Bug Fixes

- **component-store:** use default equality function for selectSignal ([#3884](https://github.com/ngrx/platform/issues/3884)) ([5843e7f](https://github.com/ngrx/platform/commit/5843e7f))
- **store:** add Signal equal function for immutable object comparison ([#3883](https://github.com/ngrx/platform/issues/3883)) ([634fdcb](https://github.com/ngrx/platform/commit/634fdcb))
- **store:** move Angular Signal interop into State service ([#3879](https://github.com/ngrx/platform/issues/3879)) ([8cb5795](https://github.com/ngrx/platform/commit/8cb5795)), closes [#3869](https://github.com/ngrx/platform/issues/3869)

### Features

- add ng add support for standalone config to NgRx packages ([#3881](https://github.com/ngrx/platform/issues/3881)) ([58508e3](https://github.com/ngrx/platform/commit/58508e3))
- **component:** add migration for LetModule and PushModule ([#3872](https://github.com/ngrx/platform/issues/3872)) ([5f07eda](https://github.com/ngrx/platform/commit/5f07eda))
- **component:** make LetDirective and PushPipe standalone ([#3826](https://github.com/ngrx/platform/issues/3826)) ([985d80c](https://github.com/ngrx/platform/commit/985d80c)), closes [#3804](https://github.com/ngrx/platform/issues/3804)
- **store:** add support of standalone API for ng add store ([#3874](https://github.com/ngrx/platform/issues/3874)) ([7aec84d](https://github.com/ngrx/platform/commit/7aec84d))

<a name="16.0.0-rc.0"></a>

# [16.0.0-rc.0](https://github.com/ngrx/platform/compare/16.0.0-beta.0...16.0.0-rc.0) (2023-05-04)
Expand Down
2 changes: 1 addition & 1 deletion modules/component-store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/component-store",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"description": "Reactive store for component state",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^16.0.0-rc.0';
export const platformVersion = '^16.0.0-rc.1';
2 changes: 1 addition & 1 deletion modules/component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/component",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^16.0.0-rc.0';
export const platformVersion = '^16.0.0-rc.1';
8 changes: 4 additions & 4 deletions modules/data/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/data",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"description": "API management for NgRx",
"repository": {
"type": "git",
Expand All @@ -22,9 +22,9 @@
"peerDependencies": {
"@angular/common": "^16.0.0",
"@angular/core": "^16.0.0",
"@ngrx/store": "16.0.0-rc.0",
"@ngrx/effects": "16.0.0-rc.0",
"@ngrx/entity": "16.0.0-rc.0",
"@ngrx/store": "16.0.0-rc.1",
"@ngrx/effects": "16.0.0-rc.1",
"@ngrx/entity": "16.0.0-rc.1",
"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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^16.0.0-rc.0';
export const platformVersion = '^16.0.0-rc.1';
4 changes: 2 additions & 2 deletions modules/effects/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/effects",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"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": "^16.0.0",
"@ngrx/store": "16.0.0-rc.0",
"@ngrx/store": "16.0.0-rc.1",
"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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^16.0.0-rc.0';
export const platformVersion = '^16.0.0-rc.1';
4 changes: 2 additions & 2 deletions modules/entity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/entity",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"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": "^16.0.0",
"@ngrx/store": "16.0.0-rc.0",
"@ngrx/store": "16.0.0-rc.1",
"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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^16.0.0-rc.0';
export const platformVersion = '^16.0.0-rc.1';
2 changes: 1 addition & 1 deletion modules/eslint-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/eslint-plugin",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"description": "NgRx ESLint Plugin",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions modules/router-store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/router-store",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"description": "Bindings to connect @angular/router to @ngrx/store",
"repository": {
"type": "git",
Expand All @@ -23,7 +23,7 @@
"@angular/common": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/router": "^16.0.0",
"@ngrx/store": "16.0.0-rc.0",
"@ngrx/store": "16.0.0-rc.1",
"rxjs": "^6.5.3 || ^7.5.0"
},
"schematics": "./schematics/collection.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^16.0.0-rc.0';
export const platformVersion = '^16.0.0-rc.1';
2 changes: 1 addition & 1 deletion modules/schematics-core/utility/libs-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^16.0.0-rc.0';
export const platformVersion = '^16.0.0-rc.1';
2 changes: 1 addition & 1 deletion modules/schematics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/schematics",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"description": "NgRx Schematics for Angular",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion modules/schematics/schematics-core/utility/libs-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^16.0.0-rc.0';
export const platformVersion = '^16.0.0-rc.1';
4 changes: 2 additions & 2 deletions modules/store-devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/store-devtools",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"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": "16.0.0-rc.0",
"@ngrx/store": "16.0.0-rc.1",
"rxjs": "^6.5.3 || ^7.5.0"
},
"schematics": "./schematics/collection.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^16.0.0-rc.0';
export const platformVersion = '^16.0.0-rc.1';
2 changes: 1 addition & 1 deletion modules/store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/store",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^16.0.0-rc.0';
export const platformVersion = '^16.0.0-rc.1';
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/platform",
"version": "16.0.0-rc.0",
"version": "16.0.0-rc.1",
"description": "monorepo for ngrx development",
"scripts": {
"ng": "ng",
Expand Down

0 comments on commit b4431f7

Please sign in to comment.