Skip to content

Commit

Permalink
chore: release 17.0.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Nov 10, 2023
1 parent 79b0708 commit 18227cc
Show file tree
Hide file tree
Showing 27 changed files with 45 additions and 34 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<a name="17.0.0-rc.0"></a>

# [17.0.0-rc.0](https://github.com/ngrx/platform/compare/17.0.0-beta.0...17.0.0-rc.0) (2023-11-10)

### Features

- **signals:** add `getState` function ([#4118](https://github.com/ngrx/platform/issues/4118)) ([79b0708](https://github.com/ngrx/platform/commit/79b0708))
- **signals:** add entities subpackage ([#4090](https://github.com/ngrx/platform/issues/4090)) ([f01bcd1](https://github.com/ngrx/platform/commit/f01bcd1))
- **store-devtools:** add migration for connectInZone ([#4106](https://github.com/ngrx/platform/issues/4106)) ([73fda59](https://github.com/ngrx/platform/commit/73fda59))
- **store-devtools:** change connectOutsideZone to be 'true' by default ([#4103](https://github.com/ngrx/platform/issues/4103)) ([d3b4db0](https://github.com/ngrx/platform/commit/d3b4db0)), closes [#4093](https://github.com/ngrx/platform/issues/4093)

<a name="17.0.0-beta.0"></a>

# [17.0.0-beta.0](https://github.com/ngrx/platform/compare/16.3.0...17.0.0-beta.0) (2023-10-30)
Expand Down
4 changes: 2 additions & 2 deletions MIGRATION.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# V16 Migration guide
# V17 Migration guide

This document has been moved to https://ngrx.io/guide/migration/v16.
This document has been moved to https://ngrx.io/guide/migration/v17.
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": "17.0.0-beta.0",
"version": "17.0.0-rc.0",
"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 = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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": "17.0.0-beta.0",
"version": "17.0.0-rc.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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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": "17.0.0-beta.0",
"version": "17.0.0-rc.0",
"description": "API management for NgRx",
"repository": {
"type": "git",
Expand All @@ -22,9 +22,9 @@
"peerDependencies": {
"@angular/common": "^17.0.0",
"@angular/core": "^17.0.0",
"@ngrx/store": "17.0.0-beta.0",
"@ngrx/effects": "17.0.0-beta.0",
"@ngrx/entity": "17.0.0-beta.0",
"@ngrx/store": "17.0.0-rc.0",
"@ngrx/effects": "17.0.0-rc.0",
"@ngrx/entity": "17.0.0-rc.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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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": "17.0.0-beta.0",
"version": "17.0.0-rc.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": "^17.0.0",
"@ngrx/store": "17.0.0-beta.0",
"@ngrx/store": "17.0.0-rc.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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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": "17.0.0-beta.0",
"version": "17.0.0-rc.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": "^17.0.0",
"@ngrx/store": "17.0.0-beta.0",
"@ngrx/store": "17.0.0-rc.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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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": "17.0.0-beta.0",
"version": "17.0.0-rc.0",
"description": "NgRx ESLint Plugin",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion modules/operators/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/operators",
"version": "17.0.0-beta.0",
"version": "17.0.0-rc.0",
"description": "Shared RxJS Operators for NgRx libraries",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion modules/operators/schematics-core/utility/libs-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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": "17.0.0-beta.0",
"version": "17.0.0-rc.0",
"description": "Bindings to connect @angular/router to @ngrx/store",
"repository": {
"type": "git",
Expand All @@ -23,7 +23,7 @@
"@angular/common": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/router": "^17.0.0",
"@ngrx/store": "17.0.0-beta.0",
"@ngrx/store": "17.0.0-rc.0",
"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 = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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 = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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": "17.0.0-beta.0",
"version": "17.0.0-rc.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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
2 changes: 1 addition & 1 deletion modules/signals/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/signals",
"version": "17.0.0-beta.0",
"version": "17.0.0-rc.0",
"description": "Reactive State Management with Angular Signals",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion modules/signals/schematics-core/utility/libs-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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": "17.0.0-beta.0",
"version": "17.0.0-rc.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": "17.0.0-beta.0",
"@ngrx/store": "17.0.0-rc.0",
"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 = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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": "17.0.0-beta.0",
"version": "17.0.0-rc.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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^17.0.0-beta.0';
export const platformVersion = '^17.0.0-rc.0';
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": "17.0.0-beta.0",
"version": "17.0.0-rc.0",
"description": "monorepo for ngrx development",
"scripts": {
"ng": "ng",
Expand Down

0 comments on commit 18227cc

Please sign in to comment.