Skip to content

Commit

Permalink
fix grpc node version (#210)
Browse files Browse the repository at this point in the history
fix #209

Signed-off-by: shanghaikid <[email protected]>
  • Loading branch information
shanghaikid authored Jul 25, 2023
1 parent d693c10 commit be66524
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 96 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@zilliz/milvus2-sdk-node",
"author": "[email protected]",
"version": "2.2.20",
"version": "2.2.21",
"milvusVersion": "v2.2.12",
"main": "dist/milvus",
"files": [
Expand All @@ -20,11 +20,11 @@
"doc-json": "npx typedoc milvus --json"
},
"dependencies": {
"@grpc/grpc-js": "^1.8.17",
"@grpc/proto-loader": "^0.7.7",
"@grpc/grpc-js": "1.8.17",
"@grpc/proto-loader": "0.7.7",
"dayjs": "^1.11.7",
"lru-cache": "^9.1.2",
"protobufjs": "^7.2.4",
"protobufjs": "7.2.4",
"winston": "^3.9.0"
},
"devDependencies": {
Expand Down
80 changes: 0 additions & 80 deletions test/BinarySearch.spec.ts

This file was deleted.

24 changes: 12 additions & 12 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -329,35 +329,35 @@
enabled "2.0.x"
kuler "^2.0.0"

"@grpc/grpc-js@^1.8.17":
"@grpc/[email protected]":
version "1.8.17"
resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.8.17.tgz#a3a2f826fc033eae7d2f5ee41e0ab39cee948838"
integrity sha512-DGuSbtMFbaRsyffMf+VEkVu8HkSXEUfO3UyGJNtqxW9ABdtTIA+2UXAJpwbJS+xfQxuwqLUeELmL6FuZkOqPxw==
dependencies:
"@grpc/proto-loader" "^0.7.0"
"@types/node" ">=12.12.47"

"@grpc/proto-loader@^0.7.0":
version "0.7.3"
resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.3.tgz#75a6f95b51b85c5078ac7394da93850c32d36bb8"
integrity sha512-5dAvoZwna2Py3Ef96Ux9jIkp3iZ62TUsV00p3wVBPNX5K178UbNi8Q7gQVqwXT1Yq9RejIGG9G2IPEo93T6RcA==
"@grpc/[email protected].7":
version "0.7.7"
resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.7.tgz#d33677a77eea8407f7c66e2abd97589b60eb4b21"
integrity sha512-1TIeXOi8TuSCQprPItwoMymZXxWT0CPxUhkrkeCUH+D8U7QDwQ6b7SUz2MaLuWM2llT+J/TVFLmQI5KtML3BhQ==
dependencies:
"@types/long" "^4.0.1"
lodash.camelcase "^4.3.0"
long "^4.0.0"
protobufjs "^7.0.0"
yargs "^16.2.0"
yargs "^17.7.2"

"@grpc/proto-loader@^0.7.7":
version "0.7.7"
resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.7.tgz#d33677a77eea8407f7c66e2abd97589b60eb4b21"
integrity sha512-1TIeXOi8TuSCQprPItwoMymZXxWT0CPxUhkrkeCUH+D8U7QDwQ6b7SUz2MaLuWM2llT+J/TVFLmQI5KtML3BhQ==
"@grpc/proto-loader@^0.7.0":
version "0.7.3"
resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.3.tgz#75a6f95b51b85c5078ac7394da93850c32d36bb8"
integrity sha512-5dAvoZwna2Py3Ef96Ux9jIkp3iZ62TUsV00p3wVBPNX5K178UbNi8Q7gQVqwXT1Yq9RejIGG9G2IPEo93T6RcA==
dependencies:
"@types/long" "^4.0.1"
lodash.camelcase "^4.3.0"
long "^4.0.0"
protobufjs "^7.0.0"
yargs "^17.7.2"
yargs "^16.2.0"

"@istanbuljs/load-nyc-config@^1.0.0":
version "1.1.0"
Expand Down Expand Up @@ -2292,7 +2292,7 @@ prompts@^2.0.1:
kleur "^3.0.3"
sisteransi "^1.0.5"

protobufjs@^7.0.0, protobufjs@^7.2.4:
protobufjs@7.2.4, protobufjs@^7.0.0:
version "7.2.4"
resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.2.4.tgz#3fc1ec0cdc89dd91aef9ba6037ba07408485c3ae"
integrity sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==
Expand Down

0 comments on commit be66524

Please sign in to comment.