Skip to content

Commit

Permalink
Merge branch 'master' into psm-interop-common-prod-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiitk committed May 3, 2024
2 parents 9f9f6e7 + 0ae86b1 commit 0e078c6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/grpc-health-check/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grpc-health-check",
"version": "2.0.1",
"version": "2.0.2",
"author": "Google Inc.",
"description": "Health check client and service for use with gRPC-node",
"repository": {
Expand All @@ -21,7 +21,7 @@
"generate-test-types": "proto-loader-gen-types --keepCase --longs String --enums String --defaults --oneofs --includeComments --includeDirs proto/ -O test/generated --grpcLib=@grpc/grpc-js health/v1/health.proto"
},
"dependencies": {
"@grpc/proto-loader": "^0.7.10"
"@grpc/proto-loader": "^0.7.13"
},
"files": [
"LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions packages/grpc-reflection/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grpc/reflection",
"version": "1.0.3",
"version": "1.0.4",
"author": {
"name": "Google Inc."
},
Expand Down Expand Up @@ -31,7 +31,7 @@
"generate-types": "proto-loader-gen-types --longs String --enums String --bytes Array --defaults --oneofs --includeComments --includeDirs proto/ -O src/generated grpc/reflection/v1/reflection.proto grpc/reflection/v1alpha/reflection.proto"
},
"dependencies": {
"@grpc/proto-loader": "^0.7.10",
"@grpc/proto-loader": "^0.7.13",
"protobufjs": "^7.2.5"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/proto-loader/bin/proto-loader-gen-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ function generateServiceClientInterface(formatter: TextFormatter, serviceType: P
formatter.indent();
for (const methodName of Object.keys(serviceType.methods).sort()) {
const method = serviceType.methods[methodName];
for (const name of [methodName, camelCase(methodName)]) {
for (const name of new Set([methodName, camelCase(methodName)])) {
if (CLIENT_RESERVED_METHOD_NAMES.has(name)) {
continue;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/proto-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grpc/proto-loader",
"version": "0.7.12",
"version": "0.7.13",
"author": "Google Inc.",
"contributors": [
{
Expand Down Expand Up @@ -47,7 +47,7 @@
"dependencies": {
"lodash.camelcase": "^4.3.0",
"long": "^5.0.0",
"protobufjs": "^7.2.4",
"protobufjs": "^7.2.5",
"yargs": "^17.7.2"
},
"devDependencies": {
Expand Down

0 comments on commit 0e078c6

Please sign in to comment.