Skip to content

Commit 5b95c95

Browse files
Merge branch 'main' into signals/feat/user-defined-signals-in-state
2 parents 2484d5a + c8b15dd commit 5b95c95

File tree

41 files changed

+478
-595
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+478
-595
lines changed

CHANGELOG.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,63 @@
1+
<a name="20.0.0-beta.0"></a>
2+
3+
# [20.0.0-beta.0](https://github.com/ngrx/platform/compare/19.2.1...20.0.0-beta.0) (2025-06-10)
4+
5+
### Bug Fixes
6+
7+
- **www:** Add padding to code snippets ([#4812](https://github.com/ngrx/platform/issues/4812)) ([9e942db](https://github.com/ngrx/platform/commit/9e942db)), closes [#4811](https://github.com/ngrx/platform/issues/4811)
8+
- **www:** remove horizontal scrollbar ([#4808](https://github.com/ngrx/platform/issues/4808)) ([2639f67](https://github.com/ngrx/platform/commit/2639f67))
9+
10+
### build
11+
12+
- update to Angular 20 ([#4778](https://github.com/ngrx/platform/issues/4778)) ([8a4ecd9](https://github.com/ngrx/platform/commit/8a4ecd9))
13+
14+
### Features
15+
16+
- **eslint-plugin:** add new rule enforce type call ([#4809](https://github.com/ngrx/platform/issues/4809)) ([9b82e67](https://github.com/ngrx/platform/commit/9b82e67)), closes [#4797](https://github.com/ngrx/platform/issues/4797)
17+
- **www:** add sidebar for mobile view and make home page responsive ([#4813](https://github.com/ngrx/platform/issues/4813)) ([4397bfb](https://github.com/ngrx/platform/commit/4397bfb)), closes [#4807](https://github.com/ngrx/platform/issues/4807)
18+
19+
### BREAKING CHANGES
20+
21+
- The minimum required version of Angular has been updated.
22+
23+
BEFORE:
24+
25+
The minimum required version is Angular 19.x
26+
27+
AFTER:
28+
29+
The minimum required version is Angular 20.x
30+
31+
<a name="20.0.0"></a>
32+
33+
# [20.0.0](https://github.com/ngrx/platform/compare/19.2.1...20.0.0) (2025-06-09)
34+
35+
### Bug Fixes
36+
37+
- **www:** Add padding to code snippets ([#4812](https://github.com/ngrx/platform/issues/4812)) ([9e942db](https://github.com/ngrx/platform/commit/9e942db)), closes [#4811](https://github.com/ngrx/platform/issues/4811)
38+
- **www:** remove horizontal scrollbar ([#4808](https://github.com/ngrx/platform/issues/4808)) ([2639f67](https://github.com/ngrx/platform/commit/2639f67))
39+
40+
### build
41+
42+
- update to Angular 20 ([#4778](https://github.com/ngrx/platform/issues/4778)) ([8a4ecd9](https://github.com/ngrx/platform/commit/8a4ecd9))
43+
44+
### Features
45+
46+
- **eslint-plugin:** add new rule enforce type call ([#4809](https://github.com/ngrx/platform/issues/4809)) ([9b82e67](https://github.com/ngrx/platform/commit/9b82e67)), closes [#4797](https://github.com/ngrx/platform/issues/4797)
47+
- **www:** add sidebar for mobile view and make home page responsive ([#4813](https://github.com/ngrx/platform/issues/4813)) ([4397bfb](https://github.com/ngrx/platform/commit/4397bfb)), closes [#4807](https://github.com/ngrx/platform/issues/4807)
48+
49+
### BREAKING CHANGES
50+
51+
- The minimum required version of Angular has been updated.
52+
53+
BEFORE:
54+
55+
The minimum required version is Angular 19.x
56+
57+
AFTER:
58+
59+
The minimum required version is Angular 20.x
60+
161
<a name="19.2.1"></a>
262

363
## [19.2.1](https://github.com/ngrx/platform/compare/19.2.0...19.2.1) (2025-05-29)

MIGRATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# V19 Migration guide
1+
# V20 Migration guide
22

3-
This document has been moved to https://ngrx.io/guide/migration/v19.
3+
This document has been moved to https://ngrx.io/guide/migration/v20.

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": "19.2.1",
3+
"version": "20.0.0-beta.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": "^19.0.0",
25+
"@angular/core": "^20.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 = '^19.2.1';
1+
export const platformVersion = '^20.0.0-beta.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": "19.2.1",
3+
"version": "20.0.0-beta.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": "^19.0.0",
24-
"@angular/core": "^19.0.0",
23+
"@angular/common": "^20.0.0",
24+
"@angular/core": "^20.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 = '^19.2.1';
1+
export const platformVersion = '^20.0.0-beta.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": "19.2.1",
3+
"version": "20.0.0-beta.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": "^19.0.0",
24-
"@angular/core": "^19.0.0",
25-
"@ngrx/store": "19.2.1",
26-
"@ngrx/effects": "19.2.1",
27-
"@ngrx/entity": "19.2.1",
23+
"@angular/common": "^20.0.0",
24+
"@angular/core": "^20.0.0",
25+
"@ngrx/store": "20.0.0-beta.0",
26+
"@ngrx/effects": "20.0.0-beta.0",
27+
"@ngrx/entity": "20.0.0-beta.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 = '^19.2.1';
1+
export const platformVersion = '^20.0.0-beta.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": "19.2.1",
3+
"version": "20.0.0-beta.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": "^19.0.0",
25-
"@ngrx/store": "19.2.1",
24+
"@angular/core": "^20.0.0",
25+
"@ngrx/store": "20.0.0-beta.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 = '^19.2.1';
1+
export const platformVersion = '^20.0.0-beta.0';

0 commit comments

Comments
 (0)