Skip to content

Commit ad35ce7

Browse files
author
Benjamin E. Coe
authored
fix(grpc): loosen version range on @grpc/grpc-js (GoogleCloudPlatform#153)
The strict `~` version range on `@grpc/grpc-js` makes `grpc-gcp` difficult to use in conjunction with `gax`, because libraries must be upgraded in step with each other. Let's leave the dependency strict in gax, but loose in `grpc-gcp`. _Note: also upgraded mocha to address security warning._
1 parent 5a0ebcd commit ad35ce7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"node": ">=12"
3333
},
3434
"dependencies": {
35-
"@grpc/grpc-js": "~1.7.0"
35+
"@grpc/grpc-js": "^1.7.0"
3636
},
3737
"devDependencies": {
3838
"@grpc/proto-loader": "^0.7.0",
@@ -44,7 +44,7 @@
4444
"grpc": "^1.24.10",
4545
"grpc-tools": "^1.11.1",
4646
"gts": "^3.1.0",
47-
"mocha": "^8.4.0",
47+
"mocha": "^9.2.2",
4848
"typescript": "^4.3.2"
4949
},
5050
"files": [

0 commit comments

Comments
 (0)