Skip to content

Commit 7b8d478

Browse files
committed
build: update to TypeScript 5.9 final
Updates to the latest stable version of TypeScript.
1 parent 8459e5d commit 7b8d478

File tree

9 files changed

+93
-94
lines changed

9 files changed

+93
-94
lines changed

WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ http_archive(
204204
load("@aspect_rules_ts//ts:repositories.bzl", "rules_ts_dependencies")
205205

206206
rules_ts_dependencies(
207-
# Obtained by: curl --silent https://registry.npmjs.org/typescript/5.9.1-rc | jq -r '.dist.integrity'
208-
ts_integrity = "sha512-pWar+9HGLkLwxu2PX1ItWnWg80r6nZ8qVEyWVRsnlZyZeFkHeR+eCrZ9PcYeVZjdLvcd5p/WgycViI+lsTh2qg==",
207+
# Obtained by: curl --silent https://registry.npmjs.org/typescript/5.9.2 | jq -r '.dist.integrity'
208+
ts_integrity = "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
209209
ts_version_from = "//:package.json",
210210
)
211211

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
"tar": "^7.0.0",
141141
"ts-node": "^10.9.1",
142142
"tslib": "2.8.1",
143-
"typescript": "5.9.1-rc",
143+
"typescript": "5.9.2",
144144
"undici": "7.13.0",
145145
"unenv": "^1.10.0",
146146
"verdaccio": "6.1.6",
@@ -173,6 +173,6 @@
173173
}
174174
},
175175
"resolutions": {
176-
"typescript": "5.9.1-rc"
176+
"typescript": "5.9.2"
177177
}
178178
}

packages/angular_devkit/schematics_cli/blank/project-files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"dependencies": {
1616
"@angular-devkit/core": "^<%= coreVersion %>",
1717
"@angular-devkit/schematics": "^<%= schematicsVersion %>",
18-
"typescript": "~5.8.2"
18+
"typescript": "~5.9.2"
1919
},
2020
"devDependencies": {
2121
"@types/node": "^20.17.19",

packages/angular_devkit/schematics_cli/schematic/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"dependencies": {
1616
"@angular-devkit/core": "^<%= coreVersion %>",
1717
"@angular-devkit/schematics": "^<%= schematicsVersion %>",
18-
"typescript": "~5.8.2"
18+
"typescript": "~5.9.2"
1919
},
2020
"devDependencies": {
2121
"@types/node": "^20.17.19",

packages/ngtools/webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
3030
"@angular/compiler": "20.2.0-next.3",
3131
"@angular/compiler-cli": "20.2.0-next.3",
32-
"typescript": "5.8.3",
32+
"typescript": "5.9.2",
3333
"webpack": "5.101.0"
3434
}
3535
}

packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
load("//tools:defaults.bzl", "ts_project")
22

3-
# files fetched on 2025-07-25
3+
# files fetched on 2025-08-01
44

55
# Commands to update from node_modules:
66
# cp node_modules/typescript/lib/typescript.d.ts packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/lib/typescript.d.ts

packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/lib/typescript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2285,7 +2285,7 @@ module.exports = __toCommonJS(typescript_exports);
22852285

22862286
// src/compiler/corePublic.ts
22872287
var versionMajorMinor = "5.9";
2288-
var version = "5.9.1-rc";
2288+
var version = "5.9.2";
22892289
var Comparison = /* @__PURE__ */ ((Comparison3) => {
22902290
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
22912291
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";

packages/schematics/angular/utility/latest-versions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"rxjs": "~7.8.0",
2222
"tslib": "^2.3.0",
2323
"ts-node": "~10.9.0",
24-
"typescript": "~5.8.2",
24+
"typescript": "~5.9.2",
2525
"zone.js": "~0.15.0"
2626
}
2727
}

0 commit comments

Comments
 (0)