Skip to content

Commit f15dd1e

Browse files
feat: update Angular packages to latest v14 RC (#3425)
Closes #3417 BREAKING CHANGE: Minimum version of Angular has been updated BEFORE: Minimum version of Angular was 13.x AFTER: Minimum version of Angular is 14.x
1 parent f233dae commit f15dd1e

File tree

47 files changed

+2578
-2183
lines changed

Some content is hidden

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

47 files changed

+2578
-2183
lines changed

MIGRATION.md

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

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

modules/component-store/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-store",
3-
"version": "13.1.0",
3+
"version": "14.0.0-beta.0",
44
"description": "Reactive store for component state",
55
"repository": {
66
"type": "git",
@@ -22,8 +22,8 @@
2222
},
2323
"homepage": "https://github.com/ngrx/platform#readme",
2424
"peerDependencies": {
25-
"@angular/core": "^13.0.0",
26-
"rxjs": "^6.5.3 || ^7.4.0"
25+
"@angular/core": "^14.0.0",
26+
"rxjs": "^6.5.3 || ^7.5.0"
2727
},
2828
"schematics": "./schematics/collection.json",
2929
"sideEffects": false,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^13.1.0';
1+
export const platformVersion = '^14.0.0-beta.0';

modules/component-store/tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"sourceMap": true,
1717
"inlineSources": true,
1818
"lib": ["es2018", "dom"],
19-
"target": "es2015",
19+
"target": "es2020",
2020
"skipLibCheck": true
2121
},
2222
"files": ["public_api.ts"],

modules/component/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/component",
3-
"version": "13.1.0",
3+
"version": "14.0.0-beta.0",
44
"description": "Reactive Extensions for Angular Components",
55
"repository": {
66
"type": "git",
@@ -20,9 +20,9 @@
2020
},
2121
"homepage": "https://github.com/ngrx/platform#readme",
2222
"peerDependencies": {
23-
"@angular/common": "^13.0.0",
24-
"@angular/core": "^13.0.0",
25-
"rxjs": "^6.5.3 || ^7.4.0"
23+
"@angular/common": "^14.0.0",
24+
"@angular/core": "^14.0.0",
25+
"rxjs": "^6.5.3 || ^7.5.0"
2626
},
2727
"schematics": "./schematics/collection.json",
2828
"sideEffects": false,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^13.1.0';
1+
export const platformVersion = '^14.0.0-beta.0';

modules/component/tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"sourceMap": true,
1818
"inlineSources": true,
1919
"lib": ["es2015", "dom"],
20-
"target": "es2015",
20+
"target": "es2020",
2121
"skipLibCheck": true
2222
},
2323
"files": ["public_api.ts"],

modules/data/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/data",
3-
"version": "13.1.0",
3+
"version": "14.0.0-beta.0",
44
"description": "API management for NgRx",
55
"repository": {
66
"type": "git",
@@ -20,12 +20,12 @@
2020
},
2121
"homepage": "https://github.com/ngrx/platform#readme",
2222
"peerDependencies": {
23-
"@angular/common": "^13.0.0",
24-
"@angular/core": "^13.0.0",
25-
"@ngrx/store": "13.1.0",
26-
"@ngrx/effects": "13.1.0",
27-
"@ngrx/entity": "13.1.0",
28-
"rxjs": "^6.5.3 || ^7.4.0"
23+
"@angular/common": "^14.0.0",
24+
"@angular/core": "^14.0.0",
25+
"@ngrx/store": "14.0.0-beta.0",
26+
"@ngrx/effects": "14.0.0-beta.0",
27+
"@ngrx/entity": "14.0.0-beta.0",
28+
"rxjs": "^6.5.3 || ^7.5.0"
2929
},
3030
"schematics": "./schematics/collection.json",
3131
"ng-update": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const platformVersion = '^13.1.0';
1+
export const platformVersion = '^14.0.0-beta.0';

modules/data/tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"sourceMap": true,
1717
"inlineSources": true,
1818
"lib": ["es2018", "dom"],
19-
"target": "es2015",
19+
"target": "es2020",
2020
"skipLibCheck": true
2121
},
2222
"files": ["public_api.ts"],

0 commit comments

Comments
 (0)