Skip to content

Commit b215849

Browse files
chore(deps): update misc non-major dependencies
1 parent 075b661 commit b215849

File tree

4 files changed

+23
-16
lines changed

4 files changed

+23
-16
lines changed

all/test/go.mod

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ module github.com/namely/docker-protoc/test
33
go 1.19
44

55
require (
6-
github.com/otiai10/copy v1.9.0
7-
github.com/stretchr/testify v1.8.1
6+
github.com/otiai10/copy v1.14.0
7+
github.com/stretchr/testify v1.9.0
88
)
99

1010
require (
1111
github.com/davecgh/go-spew v1.1.1 // indirect
1212
github.com/pmezard/go-difflib v1.0.0 // indirect
13+
golang.org/x/sync v0.3.0 // indirect
1314
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
1415
gopkg.in/yaml.v3 v3.0.1 // indirect
1516
)

all/test/go.sum

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
33
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
44
github.com/otiai10/copy v1.9.0 h1:7KFNiCgZ91Ru4qW4CWPf/7jqtxLagGRmIxWldPP9VY4=
55
github.com/otiai10/copy v1.9.0/go.mod h1:hsfX19wcn0UWIHUQ3/4fHuehhk2UyArQ9dVFAn3FczI=
6+
github.com/otiai10/copy v1.14.0 h1:dCI/t1iTdYGtkvCuBG2BgR6KZa83PTclw4U5n2wAllU=
7+
github.com/otiai10/copy v1.14.0/go.mod h1:ECfuL02W+/FkTWZWgQqXPWZgW9oeKCSQ5qVfSc4qc4w=
68
github.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95/go.mod h1:9qAhocn7zKJG+0mI8eUu6xqkFDYS2kb2saOteoSB3cE=
79
github.com/otiai10/curr v1.0.0/go.mod h1:LskTG5wDwr8Rs+nNQ+1LlxRjAtTZZjtJW4rMXl6j4vs=
810
github.com/otiai10/mint v1.3.0/go.mod h1:F5AjcsTsWUqX+Na9fpHb52P8pcRX2CI6A3ctIT91xUo=
@@ -17,6 +19,10 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
1719
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
1820
github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk=
1921
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
22+
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
23+
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
24+
golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=
25+
golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=
2026
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 h1:0A+M6Uqn+Eje4kHMK80dtF3JCXC4ykBgQG4Fe06QRhQ=
2127
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
2228
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=

gwy/templates/go.mod.tmpl

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ module gateway
33
go 1.19
44

55
require (
6-
github.com/gorilla/handlers v1.5.1
6+
github.com/gorilla/handlers v1.5.2
77
github.com/grpc-ecosystem/grpc-gateway v1.16.0
88
github.com/grpc-ecosystem/grpc-gateway/v2 v2.0.1
9-
github.com/sirupsen/logrus v1.9.0
9+
github.com/sirupsen/logrus v1.9.3
1010
github.com/spf13/pflag v1.0.5
11-
github.com/spf13/viper v1.14.0
11+
github.com/spf13/viper v1.19.0
1212
google.golang.org/grpc v1.51.0
13-
google.golang.org/protobuf v1.28.1
13+
google.golang.org/protobuf v1.34.2
1414
)

variables.sh

+10-10
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ DEBIAN_VERSION=${DEBIAN_VERSION:-bullseye}
1010
GO_VERSION=${GO_VERSION:-1.19}
1111
GRPC_VERSION=${GRPC_VERSION:-1.51}
1212
GRPC_JAVA_VERSION=${GRPC_JAVA_VERSION:-1.51}
13-
GRPC_WEB_VERSION=${GRPC_WEB_VERSION:-1.4.2}
13+
GRPC_WEB_VERSION=${GRPC_WEB_VERSION:-1.5.0}
1414
GRPC_GATEWAY_VERSION=${GRPC_GATEWAY_VERSION:-v2.0.1}
15-
PROTOBUF_JS_VERSION=${PROTOBUF_JS_VERSION:-v3.21.2}
15+
PROTOBUF_JS_VERSION=${PROTOBUF_JS_VERSION:-v3.21.4}
1616
UBER_PROTOTOOL_VERSION=${UBER_PROTOTOOL_VERSION:-1.10.0}
1717
SCALA_PB_VERSION=${SCALA_PB_VERSION:-0.11.0}
18-
MYPY_VERSION=${MYPY_VERSION:-3.4.0}
18+
MYPY_VERSION=${MYPY_VERSION:-3.6.0}
1919
NODE_VERSION=${NODE_VERSION:-18}
20-
NODE_GRPC_TOOLS_NODE_PROTOC_TS_VERSION=${NODE_GRPC_TOOLS_NODE_PROTOC_TS_VERSION:-5.3.2}
21-
NODE_GRPC_TOOLS_VERSION=${NODE_GRPC_TOOLS_VERSION:-1.12.3}
22-
NODE_PROTOC_GEN_GRPC_WEB_VERSION=${NODE_PROTOC_GEN_GRPC_WEB_VERSION:-1.4.1}
23-
TS_PROTO_VERSION=${TS_PROTO_VERSION:-1.138.0}
24-
GO_ENVOYPROXY_PGV_VERSION=${GO_ENVOYPROXY_PGV_VERSION:-0.9.1}
20+
NODE_GRPC_TOOLS_NODE_PROTOC_TS_VERSION=${NODE_GRPC_TOOLS_NODE_PROTOC_TS_VERSION:-5.3.3}
21+
NODE_GRPC_TOOLS_VERSION=${NODE_GRPC_TOOLS_VERSION:-1.12.4}
22+
NODE_PROTOC_GEN_GRPC_WEB_VERSION=${NODE_PROTOC_GEN_GRPC_WEB_VERSION:-1.5.0}
23+
TS_PROTO_VERSION=${TS_PROTO_VERSION:-1.181.1}
24+
GO_ENVOYPROXY_PGV_VERSION=${GO_ENVOYPROXY_PGV_VERSION:-0.10.1}
2525
GO_MWITKOW_GPV_VERSION=${GO_MWITKOW_GPV_VERSION:-0.3.2}
26-
GO_PROTOC_GEN_GO_VERSION=${GO_PROTOC_GEN_GO_VERSION:-v1.28.1}
27-
GO_PROTOC_GEN_GO_GRPC_VERSION=${GO_PROTOC_GEN_GO_GRPC_VERSION:-v1.2.0}
26+
GO_PROTOC_GEN_GO_VERSION=${GO_PROTOC_GEN_GO_VERSION:-v1.34.2}
27+
GO_PROTOC_GEN_GO_GRPC_VERSION=${GO_PROTOC_GEN_GO_GRPC_VERSION:-v1.4.0}
2828
BUILD_VERSION="${BUILD_VERSION:-local}"
2929
VERSION="${VERSION:-${GRPC_VERSION}_${BUILD_VERSION}}"

0 commit comments

Comments
 (0)