From c2679fe8ac2e5b8d98767c1adda573fe4a493d9c Mon Sep 17 00:00:00 2001 From: Patrik Sundberg Date: Wed, 24 Jan 2024 12:43:30 +0000 Subject: [PATCH 1/2] chore(deps): update grpc and protobuf golang packages. --- gwy/templates/go.mod.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gwy/templates/go.mod.tmpl b/gwy/templates/go.mod.tmpl index 52a22a51..1eaf9637 100644 --- a/gwy/templates/go.mod.tmpl +++ b/gwy/templates/go.mod.tmpl @@ -9,6 +9,6 @@ require ( github.com/sirupsen/logrus v1.9.0 github.com/spf13/pflag v1.0.5 github.com/spf13/viper v1.14.0 - google.golang.org/grpc v1.51.0 - google.golang.org/protobuf v1.28.1 + google.golang.org/grpc v1.60.1 + google.golang.org/protobuf v1.32.0 ) From 2bc03861fefd0f0c7cd11f9fc7f22846220115bf Mon Sep 17 00:00:00 2001 From: Patrik Sundberg Date: Wed, 24 Jan 2024 12:44:08 +0000 Subject: [PATCH 2/2] chore(deps): update go and grpc java versions. --- variables.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/variables.sh b/variables.sh index cffbc9e5..92f9de20 100755 --- a/variables.sh +++ b/variables.sh @@ -7,10 +7,10 @@ CONTAINER=${DOCKER_REPO}${NAMESPACE} LATEST=${1:false} DEBIAN_VERSION=${DEBIAN_VERSION:-bullseye} -GO_VERSION=${GO_VERSION:-1.19} -GRPC_VERSION=${GRPC_VERSION:-1.51} -GRPC_JAVA_VERSION=${GRPC_JAVA_VERSION:-1.51} -GRPC_WEB_VERSION=${GRPC_WEB_VERSION:-1.4.2} +GO_VERSION=${GO_VERSION:-1.21.6} +GRPC_VERSION=${GRPC_VERSION:-1.60} +GRPC_JAVA_VERSION=${GRPC_JAVA_VERSION:-1.60} +GRPC_WEB_VERSION=${GRPC_WEB_VERSION:-1.5.0} GRPC_GATEWAY_VERSION=${GRPC_GATEWAY_VERSION:-v2.0.1} PROTOBUF_JS_VERSION=${PROTOBUF_JS_VERSION:-v3.21.2} UBER_PROTOTOOL_VERSION=${UBER_PROTOTOOL_VERSION:-1.10.0}