Skip to content

Commit 8b4e0bd

Browse files
chore(angular-query): update to angular 20 RC (#9153)
* chore(angular-query): update to angular 20 * ci: apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent 2be8cca commit 8b4e0bd

Some content is hidden

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

61 files changed

+3216
-3066
lines changed

examples/angular/auto-refetching/angular.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,31 @@
100100
}
101101
}
102102
}
103+
},
104+
"schematics": {
105+
"@schematics/angular:component": {
106+
"type": "component"
107+
},
108+
"@schematics/angular:directive": {
109+
"type": "directive"
110+
},
111+
"@schematics/angular:service": {
112+
"type": "service"
113+
},
114+
"@schematics/angular:guard": {
115+
"typeSeparator": "."
116+
},
117+
"@schematics/angular:interceptor": {
118+
"typeSeparator": "."
119+
},
120+
"@schematics/angular:module": {
121+
"typeSeparator": "."
122+
},
123+
"@schematics/angular:pipe": {
124+
"typeSeparator": "."
125+
},
126+
"@schematics/angular:resolver": {
127+
"typeSeparator": "."
128+
}
103129
}
104130
}

examples/angular/auto-refetching/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@
99
},
1010
"private": true,
1111
"dependencies": {
12-
"@angular/common": "^19.2.4",
13-
"@angular/compiler": "^19.2.4",
14-
"@angular/core": "^19.2.4",
15-
"@angular/platform-browser": "^19.2.4",
16-
"@angular/platform-browser-dynamic": "^19.2.4",
12+
"@angular/common": "^20.0.0-rc.0",
13+
"@angular/compiler": "^20.0.0-rc.0",
14+
"@angular/core": "^20.0.0-rc.0",
15+
"@angular/platform-browser": "^20.0.0-rc.0",
16+
"@angular/platform-browser-dynamic": "^20.0.0-rc.0",
1717
"@tanstack/angular-query-experimental": "^5.76.0",
1818
"rxjs": "^7.8.2",
1919
"tslib": "^2.8.1",
2020
"zone.js": "0.15.0"
2121
},
2222
"devDependencies": {
23-
"@angular/build": "^19.2.5",
24-
"@angular/cli": "^19.2.5",
25-
"@angular/compiler-cli": "^19.2.4",
23+
"@angular/build": "^20.0.0-rc.2",
24+
"@angular/cli": "^20.0.0-rc.2",
25+
"@angular/compiler-cli": "^20.0.0-rc.0",
2626
"typescript": "5.8.3"
2727
}
2828
}

examples/angular/basic-persister/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99
},
1010
"private": true,
1111
"dependencies": {
12-
"@angular/common": "^19.2.4",
13-
"@angular/compiler": "^19.2.4",
14-
"@angular/core": "^19.2.4",
15-
"@angular/platform-browser": "^19.2.4",
16-
"@angular/platform-browser-dynamic": "^19.2.4",
12+
"@angular/common": "^20.0.0-rc.0",
13+
"@angular/compiler": "^20.0.0-rc.0",
14+
"@angular/core": "^20.0.0-rc.0",
15+
"@angular/platform-browser": "^20.0.0-rc.0",
16+
"@angular/platform-browser-dynamic": "^20.0.0-rc.0",
1717
"@tanstack/angular-query-experimental": "^5.76.0",
1818
"@tanstack/angular-query-persist-client": "^5.62.7",
1919
"@tanstack/query-sync-storage-persister": "^5.76.1",
2020
"rxjs": "^7.8.2",
2121
"tslib": "^2.8.1",
22-
"zone.js": "^0.15.0"
22+
"zone.js": "0.15.0"
2323
},
2424
"devDependencies": {
25-
"@angular/build": "^19.2.5",
26-
"@angular/cli": "^19.2.5",
27-
"@angular/compiler-cli": "^19.2.4",
25+
"@angular/build": "^20.0.0-rc.2",
26+
"@angular/cli": "^20.0.0-rc.2",
27+
"@angular/compiler-cli": "^20.0.0-rc.0",
2828
"typescript": "5.8.3"
2929
}
3030
}

examples/angular/basic/angular.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,31 @@
100100
}
101101
}
102102
}
103+
},
104+
"schematics": {
105+
"@schematics/angular:component": {
106+
"type": "component"
107+
},
108+
"@schematics/angular:directive": {
109+
"type": "directive"
110+
},
111+
"@schematics/angular:service": {
112+
"type": "service"
113+
},
114+
"@schematics/angular:guard": {
115+
"typeSeparator": "."
116+
},
117+
"@schematics/angular:interceptor": {
118+
"typeSeparator": "."
119+
},
120+
"@schematics/angular:module": {
121+
"typeSeparator": "."
122+
},
123+
"@schematics/angular:pipe": {
124+
"typeSeparator": "."
125+
},
126+
"@schematics/angular:resolver": {
127+
"typeSeparator": "."
128+
}
103129
}
104130
}

examples/angular/basic/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@
99
},
1010
"private": true,
1111
"dependencies": {
12-
"@angular/common": "^19.2.4",
13-
"@angular/compiler": "^19.2.4",
14-
"@angular/core": "^19.2.4",
15-
"@angular/platform-browser": "^19.2.4",
16-
"@angular/platform-browser-dynamic": "^19.2.4",
12+
"@angular/common": "^20.0.0-rc.0",
13+
"@angular/compiler": "^20.0.0-rc.0",
14+
"@angular/core": "^20.0.0-rc.0",
15+
"@angular/platform-browser": "^20.0.0-rc.0",
16+
"@angular/platform-browser-dynamic": "^20.0.0-rc.0",
1717
"@tanstack/angular-query-experimental": "^5.76.0",
1818
"rxjs": "^7.8.2",
1919
"tslib": "^2.8.1",
2020
"zone.js": "0.15.0"
2121
},
2222
"devDependencies": {
23-
"@angular/build": "^19.2.5",
24-
"@angular/cli": "^19.2.5",
25-
"@angular/compiler-cli": "^19.2.4",
23+
"@angular/build": "^20.0.0-rc.2",
24+
"@angular/cli": "^20.0.0-rc.2",
25+
"@angular/compiler-cli": "^20.0.0-rc.0",
2626
"typescript": "5.8.3"
2727
}
2828
}

examples/angular/devtools-panel/angular.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,31 @@
9898
}
9999
}
100100
}
101+
},
102+
"schematics": {
103+
"@schematics/angular:component": {
104+
"type": "component"
105+
},
106+
"@schematics/angular:directive": {
107+
"type": "directive"
108+
},
109+
"@schematics/angular:service": {
110+
"type": "service"
111+
},
112+
"@schematics/angular:guard": {
113+
"typeSeparator": "."
114+
},
115+
"@schematics/angular:interceptor": {
116+
"typeSeparator": "."
117+
},
118+
"@schematics/angular:module": {
119+
"typeSeparator": "."
120+
},
121+
"@schematics/angular:pipe": {
122+
"typeSeparator": "."
123+
},
124+
"@schematics/angular:resolver": {
125+
"typeSeparator": "."
126+
}
101127
}
102128
}

examples/angular/devtools-panel/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99
},
1010
"private": true,
1111
"dependencies": {
12-
"@angular/common": "^19.2.4",
13-
"@angular/compiler": "^19.2.4",
14-
"@angular/core": "^19.2.4",
15-
"@angular/platform-browser": "^19.2.4",
16-
"@angular/platform-browser-dynamic": "^19.2.4",
17-
"@angular/router": "^19.2.4",
12+
"@angular/common": "^20.0.0-rc.0",
13+
"@angular/compiler": "^20.0.0-rc.0",
14+
"@angular/core": "^20.0.0-rc.0",
15+
"@angular/platform-browser": "^20.0.0-rc.0",
16+
"@angular/platform-browser-dynamic": "^20.0.0-rc.0",
17+
"@angular/router": "^20.0.0-rc.0",
1818
"@tanstack/angular-query-devtools-experimental": "^5.76.0",
1919
"@tanstack/angular-query-experimental": "^5.76.0",
2020
"rxjs": "^7.8.2",
2121
"tslib": "^2.8.1",
2222
"zone.js": "0.15.0"
2323
},
2424
"devDependencies": {
25-
"@angular/build": "^19.2.5",
26-
"@angular/cli": "^19.2.5",
27-
"@angular/compiler-cli": "^19.2.4",
25+
"@angular/build": "^20.0.0-rc.2",
26+
"@angular/cli": "^20.0.0-rc.2",
27+
"@angular/compiler-cli": "^20.0.0-rc.0",
2828
"typescript": "5.8.3"
2929
}
3030
}

examples/angular/infinite-query-with-max-pages/angular.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,31 @@
100100
}
101101
}
102102
}
103+
},
104+
"schematics": {
105+
"@schematics/angular:component": {
106+
"type": "component"
107+
},
108+
"@schematics/angular:directive": {
109+
"type": "directive"
110+
},
111+
"@schematics/angular:service": {
112+
"type": "service"
113+
},
114+
"@schematics/angular:guard": {
115+
"typeSeparator": "."
116+
},
117+
"@schematics/angular:interceptor": {
118+
"typeSeparator": "."
119+
},
120+
"@schematics/angular:module": {
121+
"typeSeparator": "."
122+
},
123+
"@schematics/angular:pipe": {
124+
"typeSeparator": "."
125+
},
126+
"@schematics/angular:resolver": {
127+
"typeSeparator": "."
128+
}
103129
}
104130
}

examples/angular/infinite-query-with-max-pages/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@
99
"watch": "ng build --watch --configuration development"
1010
},
1111
"dependencies": {
12-
"@angular/common": "^19.2.4",
13-
"@angular/compiler": "^19.2.4",
14-
"@angular/core": "^19.2.4",
15-
"@angular/platform-browser": "^19.2.4",
16-
"@angular/platform-browser-dynamic": "^19.2.4",
12+
"@angular/common": "^20.0.0-rc.0",
13+
"@angular/compiler": "^20.0.0-rc.0",
14+
"@angular/core": "^20.0.0-rc.0",
15+
"@angular/platform-browser": "^20.0.0-rc.0",
16+
"@angular/platform-browser-dynamic": "^20.0.0-rc.0",
1717
"@tanstack/angular-query-experimental": "^5.76.0",
1818
"rxjs": "^7.8.2",
1919
"tslib": "^2.8.1",
2020
"zone.js": "0.15.0"
2121
},
2222
"devDependencies": {
23-
"@angular/build": "^19.2.5",
24-
"@angular/cli": "^19.2.5",
25-
"@angular/compiler-cli": "^19.2.4",
23+
"@angular/build": "^20.0.0-rc.2",
24+
"@angular/cli": "^20.0.0-rc.2",
25+
"@angular/compiler-cli": "^20.0.0-rc.0",
2626
"typescript": "5.8.3"
2727
}
2828
}

examples/angular/optimistic-updates/angular.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,31 @@
100100
}
101101
}
102102
}
103+
},
104+
"schematics": {
105+
"@schematics/angular:component": {
106+
"type": "component"
107+
},
108+
"@schematics/angular:directive": {
109+
"type": "directive"
110+
},
111+
"@schematics/angular:service": {
112+
"type": "service"
113+
},
114+
"@schematics/angular:guard": {
115+
"typeSeparator": "."
116+
},
117+
"@schematics/angular:interceptor": {
118+
"typeSeparator": "."
119+
},
120+
"@schematics/angular:module": {
121+
"typeSeparator": "."
122+
},
123+
"@schematics/angular:pipe": {
124+
"typeSeparator": "."
125+
},
126+
"@schematics/angular:resolver": {
127+
"typeSeparator": "."
128+
}
103129
}
104130
}

examples/angular/optimistic-updates/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@
99
},
1010
"private": true,
1111
"dependencies": {
12-
"@angular/common": "^19.2.4",
13-
"@angular/compiler": "^19.2.4",
14-
"@angular/core": "^19.2.4",
15-
"@angular/forms": "^19.2.4",
16-
"@angular/platform-browser": "^19.2.4",
17-
"@angular/platform-browser-dynamic": "^19.2.4",
12+
"@angular/common": "^20.0.0-rc.0",
13+
"@angular/compiler": "^20.0.0-rc.0",
14+
"@angular/core": "^20.0.0-rc.0",
15+
"@angular/forms": "^20.0.0-rc.0",
16+
"@angular/platform-browser": "^20.0.0-rc.0",
17+
"@angular/platform-browser-dynamic": "^20.0.0-rc.0",
1818
"@tanstack/angular-query-experimental": "^5.76.0",
1919
"rxjs": "^7.8.2",
2020
"tslib": "^2.8.1",
2121
"zone.js": "0.15.0"
2222
},
2323
"devDependencies": {
24-
"@angular/build": "^19.2.5",
25-
"@angular/cli": "^19.2.5",
26-
"@angular/compiler-cli": "^19.2.4",
24+
"@angular/build": "^20.0.0-rc.2",
25+
"@angular/cli": "^20.0.0-rc.2",
26+
"@angular/compiler-cli": "^20.0.0-rc.0",
2727
"typescript": "5.8.3"
2828
}
2929
}

examples/angular/pagination/angular.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,31 @@
100100
}
101101
}
102102
}
103+
},
104+
"schematics": {
105+
"@schematics/angular:component": {
106+
"type": "component"
107+
},
108+
"@schematics/angular:directive": {
109+
"type": "directive"
110+
},
111+
"@schematics/angular:service": {
112+
"type": "service"
113+
},
114+
"@schematics/angular:guard": {
115+
"typeSeparator": "."
116+
},
117+
"@schematics/angular:interceptor": {
118+
"typeSeparator": "."
119+
},
120+
"@schematics/angular:module": {
121+
"typeSeparator": "."
122+
},
123+
"@schematics/angular:pipe": {
124+
"typeSeparator": "."
125+
},
126+
"@schematics/angular:resolver": {
127+
"typeSeparator": "."
128+
}
103129
}
104130
}

0 commit comments

Comments
 (0)