Skip to content

Commit 0c2b8a9

Browse files
authored
Merge pull request #83 from cloverrose/fix-issue82
define ListDatabaseRoles to follow spanner update
2 parents 03329b0 + 7d4e7be commit 0c2b8a9

File tree

5 files changed

+131
-52
lines changed

5 files changed

+131
-52
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
jobs:
44
test:
55
docker:
6-
- image: golang:1.15.8-buster
6+
- image: golang:1.17.12-buster
77
environment:
88
GO111MODULE: 'on'
99
working_directory: /go/src/handy-spanner

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.15.8-alpine3.13 AS builder
1+
FROM golang:1.17.12-alpine3.16 AS builder
22

33
RUN set -eux \
44
&& apk --no-cache add \
@@ -13,7 +13,7 @@ WORKDIR /go/src/handy-spanner
1313

1414
RUN make build
1515

16-
FROM alpine:3.13.1
16+
FROM alpine:3.16.1
1717

1818
COPY --from=builder /go/src/handy-spanner/handy-spanner /usr/local/bin/handy-spanner
1919

go.mod

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,39 @@
11
module github.com/gcpug/handy-spanner
22

3-
go 1.15
3+
go 1.17
44

55
require (
6-
cloud.google.com/go v0.100.2
7-
cloud.google.com/go/spanner v1.30.1
6+
cloud.google.com/go v0.103.0
7+
cloud.google.com/go/spanner v1.36.0
88
github.com/MakeNowJust/memefish v0.0.0-20211014154734-dbfb8b28907d
9-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
10-
github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect
11-
github.com/cncf/xds/go v0.0.0-20220330162227-eded343319d0 // indirect
129
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13
13-
github.com/envoyproxy/go-control-plane v0.10.1 // indirect
14-
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect
15-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
1610
github.com/golang/protobuf v1.5.2
17-
github.com/google/go-cmp v0.5.7
11+
github.com/google/go-cmp v0.5.8
1812
github.com/google/uuid v1.3.0
1913
github.com/mattn/go-sqlite3 v1.14.10
20-
golang.org/x/net v0.0.0-20220403103023-749bd193bc2b // indirect
21-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
22-
golang.org/x/sys v0.0.0-20220403205710-6acee93ad0eb // indirect
23-
google.golang.org/api v0.74.0
24-
google.golang.org/genproto v0.0.0-20220401170504-314d38edb7de
25-
google.golang.org/grpc v1.45.0
26-
google.golang.org/protobuf v1.28.0
14+
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f
15+
google.golang.org/api v0.90.0
16+
google.golang.org/genproto v0.0.0-20220728213248-dd149ef739b9
17+
google.golang.org/grpc v1.48.0
18+
google.golang.org/protobuf v1.28.1
19+
)
20+
21+
require (
22+
cloud.google.com/go/compute v1.7.0 // indirect
23+
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
24+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
25+
github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect
26+
github.com/cncf/xds/go v0.0.0-20220520190051-1e77728a1eaa // indirect
27+
github.com/envoyproxy/go-control-plane v0.10.3 // indirect
28+
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect
29+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
30+
github.com/googleapis/enterprise-certificate-proxy v0.1.0 // indirect
31+
github.com/googleapis/gax-go/v2 v2.4.0 // indirect
32+
go.opencensus.io v0.23.0 // indirect
33+
golang.org/x/net v0.0.0-20220728211354-c7608f3a8462 // indirect
34+
golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c // indirect
35+
golang.org/x/sys v0.0.0-20220731174439-a90be440212d // indirect
36+
golang.org/x/text v0.3.7 // indirect
37+
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
38+
google.golang.org/appengine v1.6.7 // indirect
2739
)

0 commit comments

Comments
 (0)