-
Notifications
You must be signed in to change notification settings - Fork 6
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 #4 from cloudspannerecosystem/fgac
Support Fine-Grained Access Control (with small API change)
- Loading branch information
Showing
5 changed files
with
869 additions
and
61 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,38 @@ | ||
module github.com/cloudspannerecosystem/spanner-change-streams-tail | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go v0.101.1 // indirect | ||
cloud.google.com/go/spanner v1.32.0 | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
cloud.google.com/go/spanner v1.44.0 | ||
github.com/google/go-cmp v0.5.9 | ||
golang.org/x/sync v0.1.0 | ||
google.golang.org/api v0.112.0 | ||
google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.110.0 // indirect | ||
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/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect | ||
github.com/cncf/xds/go v0.0.0-20220520190051-1e77728a1eaa // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect | ||
github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195 // 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/google/go-cmp v0.5.9 | ||
github.com/googleapis/gax-go/v2 v2.4.0 // indirect | ||
golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect | ||
golang.org/x/sync v0.0.0-20220513210516-0976fa681c29 | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect | ||
google.golang.org/api v0.80.0 | ||
google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd | ||
google.golang.org/grpc v1.46.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect | ||
github.com/googleapis/gax-go/v2 v2.7.1 // 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 | ||
google.golang.org/grpc v1.53.0 // indirect | ||
google.golang.org/protobuf v1.29.0 // indirect | ||
) |
Oops, something went wrong.