Skip to content

Commit 56d04e4

Browse files
authored
Merge pull request #66 from TheThingsIndustries/feature/update
2 parents d2ca60b + 8f5d8a0 commit 56d04e4

File tree

4 files changed

+348
-22
lines changed

4 files changed

+348
-22
lines changed

Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,9 @@ RUN mkdir -p ${GOPATH}/src/github.com/danielvladco/go-proto-gql && \
109109
curl -sSL https://api.github.com/repos/danielvladco/go-proto-gql/tarball/v${PROTOC_GEN_GQL_VERSION} | tar xz --strip 1 -C ${GOPATH}/src/github.com/danielvladco/go-proto-gql && \
110110
cd ${GOPATH}/src/github.com/danielvladco/go-proto-gql && \
111111
go build -ldflags '-w -s' -o /go-proto-gql-out/protoc-gen-gql ./protoc-gen-gql && \
112-
go build -ldflags '-w -s' -o /go-proto-gql-out/protoc-gen-gogqlgen ./protoc-gen-gogqlgen && \
113-
go build -ldflags '-w -s' -o /go-proto-gql-out/protoc-gen-gqlgencfg ./protoc-gen-gqlgencfg && \
112+
go build -ldflags '-w -s' -o /go-proto-gql-out/protoc-gen-gogql ./protoc-gen-gogql && \
114113
install -Ds /go-proto-gql-out/protoc-gen-gql /out/usr/bin/protoc-gen-gql && \
115-
install -Ds /go-proto-gql-out/protoc-gen-gogqlgen /out/usr/bin/protoc-gen-gogqlgen && \
116-
install -Ds /go-proto-gql-out/protoc-gen-gqlgencfg /out/usr/bin/protoc-gen-gqlgencfg
114+
install -Ds /go-proto-gql-out/protoc-gen-gogql /out/usr/bin/protoc-gen-gogql
117115

118116
ARG PROTOC_GEN_LINT_VERSION
119117
RUN cd / && \

build.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@ docker build \
33
--build-arg ALPINE_VERSION="${ALPINE_VERSION:-"3.12"}" \
44
--build-arg DART_PROTOBUF_VERSION="${DART_PROTOBUF_VERSION:-"1.1.0"}" \
55
--build-arg DART_VERSION="${DART_VERSION:-"2.10.4"}" \
6-
--build-arg GO_VERSION="${GO_VERSION:-"1.15.3"}" \
6+
--build-arg GO_VERSION="${GO_VERSION:-"1.15.6"}" \
77
--build-arg GRPC_GATEWAY_VERSION="${GRPC_GATEWAY_VERSION:-"1.16.0"}" \
8-
--build-arg GRPC_JAVA_VERSION="${GRPC_JAVA_VERSION:-"1.33.0"}" \
8+
--build-arg GRPC_JAVA_VERSION="${GRPC_JAVA_VERSION:-"1.34.0"}" \
99
--build-arg GRPC_RUST_VERSION="${GRPC_RUST_VERSION:-"0.8.2"}" \
10-
--build-arg GRPC_SWIFT_VERSION="${GRPC_SWIFT_VERSION:-"0.11.0"}" \
11-
--build-arg GRPC_VERSION="${GRPC_VERSION:-"1.33.2"}" \
10+
--build-arg GRPC_SWIFT_VERSION="${GRPC_SWIFT_VERSION:-"0.9.2"}" \
11+
--build-arg GRPC_VERSION="${GRPC_VERSION:-"1.34.0"}" \
1212
--build-arg GRPC_WEB_VERSION="${GRPC_WEB_VERSION:-"1.2.1"}" \
13-
--build-arg NODE_VERSION="${NODE_VERSION:-"14.15.0"}" \
13+
--build-arg NODE_VERSION="${NODE_VERSION:-"14.15.1"}" \
1414
--build-arg PROTOBUF_C_VERSION="${PROTOBUF_C_VERSION:-"1.3.3"}" \
1515
--build-arg PROTOC_GEN_DOC_VERSION="${PROTOC_GEN_DOC_VERSION:-"1.3.2"}" \
1616
--build-arg PROTOC_GEN_FIELDMASK_VERSION="${PROTOC_GEN_FIELDMASK_VERSION:-"0.4.5"}" \
1717
--build-arg PROTOC_GEN_GO_VERSION="${PROTOC_GEN_GO_VERSION:-"1.4.3"}" \
1818
--build-arg PROTOC_GEN_GOGO_VERSION="${PROTOC_GEN_GOGO_VERSION:-"1.3.1"}" \
1919
--build-arg PROTOC_GEN_GOGOTTN_VERSION="${PROTOC_GEN_GOGOTTN_VERSION:-"3.0.14"}" \
20-
--build-arg PROTOC_GEN_GQL_VERSION="${PROTOC_GEN_GQL_VERSION:-"0.7.3"}" \
20+
--build-arg PROTOC_GEN_GQL_VERSION="${PROTOC_GEN_GQL_VERSION:-"0.8.0"}" \
2121
--build-arg PROTOC_GEN_LINT_VERSION="${PROTOC_GEN_LINT_VERSION:-"0.2.1"}" \
2222
--build-arg PROTOC_GEN_VALIDATE_VERSION="${PROTOC_GEN_VALIDATE_VERSION:-"0.4.1"}" \
23-
--build-arg RUST_PROTOBUF_VERSION="${RUST_PROTOBUF_VERSION:-"2.18.0"}" \
24-
--build-arg RUST_VERSION="${RUST_VERSION:-"1.47.0"}" \
23+
--build-arg RUST_PROTOBUF_VERSION="${RUST_PROTOBUF_VERSION:-"2.18.1"}" \
24+
--build-arg RUST_VERSION="${RUST_VERSION:-"1.48.0"}" \
2525
--build-arg SWIFT_VERSION="${SWIFT_VERSION:-"5.1.5"}" \
2626
--build-arg TS_PROTOC_GEN_VERSION="${TS_PROTOC_GEN_VERSION:-"0.13.0"}" \
2727
--build-arg UPX_VERSION="${UPX_VERSION:-"3.96"}" \

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ go 1.13
33
module github.com/TheThingsIndustries/docker-protobuf
44

55
require (
6-
github.com/golang/protobuf v1.4.1 // indirect
6+
github.com/golang/protobuf v1.4.3 // indirect
77
github.com/google/go-github v17.0.0+incompatible
88
github.com/google/go-querystring v1.0.0 // indirect
9-
golang.org/x/net v0.0.0-20200506145744-7e3656a0809f // indirect
10-
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
11-
google.golang.org/appengine v1.6.6 // indirect
9+
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11 // indirect
10+
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5
11+
google.golang.org/appengine v1.6.7 // indirect
1212
)

0 commit comments

Comments
 (0)