-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from cloverrose/fix-issue82
define ListDatabaseRoles to follow spanner update
- Loading branch information
Showing
5 changed files
with
131 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,39 @@ | ||
module github.com/gcpug/handy-spanner | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go v0.100.2 | ||
cloud.google.com/go/spanner v1.30.1 | ||
cloud.google.com/go v0.103.0 | ||
cloud.google.com/go/spanner v1.36.0 | ||
github.com/MakeNowJust/memefish v0.0.0-20211014154734-dbfb8b28907d | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect | ||
github.com/cncf/xds/go v0.0.0-20220330162227-eded343319d0 // indirect | ||
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 | ||
github.com/envoyproxy/go-control-plane v0.10.1 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/go-cmp v0.5.7 | ||
github.com/google/go-cmp v0.5.8 | ||
github.com/google/uuid v1.3.0 | ||
github.com/mattn/go-sqlite3 v1.14.10 | ||
golang.org/x/net v0.0.0-20220403103023-749bd193bc2b // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
golang.org/x/sys v0.0.0-20220403205710-6acee93ad0eb // indirect | ||
google.golang.org/api v0.74.0 | ||
google.golang.org/genproto v0.0.0-20220401170504-314d38edb7de | ||
google.golang.org/grpc v1.45.0 | ||
google.golang.org/protobuf v1.28.0 | ||
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f | ||
google.golang.org/api v0.90.0 | ||
google.golang.org/genproto v0.0.0-20220728213248-dd149ef739b9 | ||
google.golang.org/grpc v1.48.0 | ||
google.golang.org/protobuf v1.28.1 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.7.0 // indirect | ||
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect | ||
github.com/cncf/xds/go v0.0.0-20220520190051-1e77728a1eaa // indirect | ||
github.com/envoyproxy/go-control-plane v0.10.3 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.1.0 // indirect | ||
github.com/googleapis/gax-go/v2 v2.4.0 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/net v0.0.0-20220728211354-c7608f3a8462 // indirect | ||
golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c // indirect | ||
golang.org/x/sys v0.0.0-20220731174439-a90be440212d // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
) |
Oops, something went wrong.