Skip to content

Commit c88a6ed

Browse files
authored
deps: upgrade typescript to 5.9 (#8412)
**Motivation** Upgrade typescript to latest version. **Description** - Upgrade typescript to latest version. - Need this version upgrade to be used in #8320 to allow `module: node20>` **Steps to test or reproduce** Run all tests
1 parent 7931b71 commit c88a6ed

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"stream-http": "^3.2.0",
6868
"supertest": "^6.3.3",
6969
"ts-node": "^10.9.2",
70-
"typescript": "^5.7.3",
70+
"typescript": "^5.9.2",
7171
"typescript-docs-verifier": "^2.5.3",
7272
"vite": "^6.0.11",
7373
"vite-plugin-dts": "^4.5.0",

packages/beacon-node/test/spec/presets/shuffling.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const shuffling: TestRunnerFn<ShufflingTestCase, string> = () => {
1616
seed,
1717
SHUFFLE_ROUND_COUNT
1818
);
19-
return Buffer.from(output).toString("hex");
19+
return Buffer.from(Array.from(output)).toString("hex");
2020
},
2121
options: {
2222
inputTypes: {mapping: InputType.YAML},

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12527,10 +12527,10 @@ typescript@^3.9:
1252712527
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8"
1252812528
integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==
1252912529

12530-
typescript@^5.7.3:
12531-
version "5.7.3"
12532-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.3.tgz#919b44a7dbb8583a9b856d162be24a54bf80073e"
12533-
integrity sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==
12530+
typescript@^5.9.2:
12531+
version "5.9.2"
12532+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.2.tgz#d93450cddec5154a2d5cabe3b8102b83316fb2a6"
12533+
integrity sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==
1253412534

1253512535
ufo@^1.5.4:
1253612536
version "1.5.4"

0 commit comments

Comments
 (0)