Skip to content

Commit d07830e

Browse files
Bump typescript from 5.7.3 to 5.8.2 (#120)
* Bump typescript from 5.7.3 to 5.8.2 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.7.3 to 5.8.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](microsoft/TypeScript@v5.7.3...v5.8.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Fix errors related to latest typescript --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ryan Lubke <[email protected]>
1 parent b146d78 commit d07830e

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"nyc": "^15.1",
2626
"source-map-support": "^0.5",
2727
"ts-node": "^10.9",
28-
"typescript": "^5.7"
28+
"typescript": "^5.8"
2929
},
3030
"scripts": {
3131
"grpc": "bin/npm-post-install.sh",

src/named-cache-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1488,7 +1488,7 @@ export class NamedCacheClient<K = any, V = any>
14881488
*
14891489
* @return the deserialized value
14901490
*/
1491-
protected toValue<V> (value: Uint8Array): V {
1491+
protected toValue<V> (value: Uint8Array): V | null {
14921492
return (value && value.length > 0)
14931493
? this.getRequestFactory().serializer.deserialize(value)
14941494
: null

0 commit comments

Comments
 (0)