-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support accessing database with fine-grained access control (#147)
* Bump cloud.google.com/go/spanner to v1.44.0 * Migrate deprecated messages to the new packages * Add support for using database role of fine-grained access control * Omit WITH word from USE statement * Remove accidentially committed file * Fix Regexp * Update README * Fix README * Use Go 1.16 * Use Go 1.17
- Loading branch information
Showing
15 changed files
with
994 additions
and
67 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
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,24 +1,44 @@ | ||
module github.com/cloudspannerecosystem/spanner-cli | ||
|
||
go 1.13 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go v0.93.3 | ||
cloud.google.com/go/spanner v1.25.0 | ||
cloud.google.com/go v0.110.0 | ||
cloud.google.com/go/spanner v1.44.0 | ||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/google/go-cmp v0.5.6 | ||
github.com/googleapis/gax-go/v2 v2.1.0 // indirect | ||
github.com/google/go-cmp v0.5.9 | ||
github.com/jessevdk/go-flags v1.4.0 | ||
github.com/mattn/go-runewidth v0.0.8 // indirect | ||
github.com/olekukonko/tablewriter v0.0.4 | ||
github.com/xlab/treeprint v1.0.1-0.20200715141336-10e0bc383e01 | ||
golang.org/x/net v0.0.0-20210825183410-e898025ed96a // indirect | ||
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect | ||
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/api v0.54.0 | ||
google.golang.org/genproto v0.0.0-20210830153122-0bac4d21c8ea | ||
google.golang.org/grpc v1.40.0 | ||
google.golang.org/protobuf v1.27.1 | ||
google.golang.org/api v0.111.0 | ||
google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488 | ||
google.golang.org/grpc v1.53.0 | ||
google.golang.org/protobuf v1.28.1 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.18.0 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
cloud.google.com/go/iam v0.12.0 // indirect | ||
cloud.google.com/go/longrunning v0.4.1 // indirect | ||
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/chzyer/logex v1.1.10 // indirect | ||
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect | ||
github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect | ||
github.com/cncf/xds/go v0.0.0-20230112175826-46e39c7b9b43 // indirect | ||
github.com/envoyproxy/go-control-plane v0.11.0 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.9.1 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect | ||
github.com/googleapis/gax-go/v2 v2.7.0 // indirect | ||
github.com/mattn/go-runewidth v0.0.8 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
golang.org/x/net v0.8.0 // indirect | ||
golang.org/x/oauth2 v0.6.0 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
) |
Oops, something went wrong.