From d78d705f66ddca4f1e9149073da9e18a3e88c02b Mon Sep 17 00:00:00 2001 From: Ido David <36866853+ido-namely@users.noreply.github.com> Date: Tue, 14 Dec 2021 11:35:43 -0500 Subject: [PATCH] update to grpc 1.41 (#266) * update to grpc 1.41 * Delete Earthfile * Update variables.sh * update gateway go.mod file --- gwy/templates/go.mod.tmpl | 2 +- variables.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gwy/templates/go.mod.tmpl b/gwy/templates/go.mod.tmpl index fe0bc09f..7bd3358f 100644 --- a/gwy/templates/go.mod.tmpl +++ b/gwy/templates/go.mod.tmpl @@ -9,6 +9,6 @@ require ( github.com/sirupsen/logrus v1.7.0 github.com/spf13/pflag v1.0.5 github.com/spf13/viper v1.7.1 - google.golang.org/grpc v1.34.0 + google.golang.org/grpc v1.41.0 google.golang.org/protobuf v1.24.0 ) diff --git a/variables.sh b/variables.sh index 136bf582..e343610b 100755 --- a/variables.sh +++ b/variables.sh @@ -7,8 +7,8 @@ CONTAINER=${DOCKER_REPO}${NAMESPACE} LATEST=${1:false} GO_VERSION=${GO_VERSION:-1.14} -GRPC_VERSION=${GRPC_VERSION:-1.40} -GRPC_JAVA_VERSION=${GRPC_JAVA_VERSION:-1.40} +GRPC_VERSION=${GRPC_VERSION:-1.41} +GRPC_JAVA_VERSION=${GRPC_JAVA_VERSION:-1.41} GRPC_WEB_VERSION=${GRPC_WEB_VERSION:-1.2.1} GRPC_GATEWAY_VERSION=${GRPC_GATEWAY_VERSION:-2.0.1} UBER_PROTOTOOL_VERSION=${UBER_PROTOTOOL_VERSION:-1.3.0}