Update dependency typescript to v5.8.2 (#29417)
* Update dependency typescript to v5.8.2 * Fix types Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@@ -290,7 +290,7 @@
|
|||||||
"terser-webpack-plugin": "^5.3.9",
|
"terser-webpack-plugin": "^5.3.9",
|
||||||
"testcontainers": "^10.16.0",
|
"testcontainers": "^10.16.0",
|
||||||
"ts-node": "^10.9.1",
|
"ts-node": "^10.9.1",
|
||||||
"typescript": "5.7.3",
|
"typescript": "5.8.2",
|
||||||
"util": "^0.12.5",
|
"util": "^0.12.5",
|
||||||
"web-streams-polyfill": "^4.0.0",
|
"web-streams-polyfill": "^4.0.0",
|
||||||
"webpack": "^5.89.0",
|
"webpack": "^5.89.0",
|
||||||
|
|||||||
@@ -18,5 +18,5 @@ export const locationEventGeoUri = (mxEvent: MatrixEvent): string => {
|
|||||||
// https://github.com/matrix-org/matrix-doc/issues/3516
|
// https://github.com/matrix-org/matrix-doc/issues/3516
|
||||||
const content = mxEvent.getContent();
|
const content = mxEvent.getContent();
|
||||||
const loc = M_LOCATION.findIn(content) as { uri?: string };
|
const loc = M_LOCATION.findIn(content) as { uri?: string };
|
||||||
return loc ? loc.uri : content["geo_uri"];
|
return loc?.uri ?? content["geo_uri"];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -263,6 +263,7 @@ describe("<SessionManagerTab />", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
afterAll(() => {
|
afterAll(() => {
|
||||||
|
// @ts-expect-error
|
||||||
window.location = realWindowLocation;
|
window.location = realWindowLocation;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -65,6 +65,7 @@ describe("OIDC authorization", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
afterAll(() => {
|
afterAll(() => {
|
||||||
|
// @ts-expect-error
|
||||||
window.location = realWindowLocation;
|
window.location = realWindowLocation;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -12231,10 +12231,10 @@ typed-array-length@^1.0.7:
|
|||||||
possible-typed-array-names "^1.0.0"
|
possible-typed-array-names "^1.0.0"
|
||||||
reflect.getprototypeof "^1.0.6"
|
reflect.getprototypeof "^1.0.6"
|
||||||
|
|
||||||
typescript@5.7.3:
|
typescript@5.8.2:
|
||||||
version "5.7.3"
|
version "5.8.2"
|
||||||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.3.tgz#919b44a7dbb8583a9b856d162be24a54bf80073e"
|
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.2.tgz#8170b3702f74b79db2e5a96207c15e65807999e4"
|
||||||
integrity sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==
|
integrity sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==
|
||||||
|
|
||||||
ua-parser-js@^1.0.2:
|
ua-parser-js@^1.0.2:
|
||||||
version "1.0.40"
|
version "1.0.40"
|
||||||
|
|||||||
Reference in New Issue
Block a user