-
Notifications
You must be signed in to change notification settings - Fork 25
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 #104 from nktks/fix/update-spanner
update cloud.google.com/go/spanner v1.65.0 and add methods for scheduled backup
- Loading branch information
Showing
4 changed files
with
1,534 additions
and
99 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,46 +1,56 @@ | ||
module github.com/gcpug/handy-spanner | ||
|
||
go 1.19 | ||
go 1.20 | ||
|
||
require ( | ||
cloud.google.com/go v0.110.8 | ||
cloud.google.com/go/iam v1.1.2 | ||
cloud.google.com/go/longrunning v0.5.1 | ||
cloud.google.com/go/spanner v1.50.0 | ||
cloud.google.com/go v0.115.0 | ||
cloud.google.com/go/iam v1.1.10 | ||
cloud.google.com/go/longrunning v0.5.9 | ||
cloud.google.com/go/spanner v1.65.0 | ||
github.com/cloudspannerecosystem/memefish v0.0.0-20231128072053-0a1141e8eb65 | ||
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/uuid v1.3.1 | ||
github.com/mattn/go-sqlite3 v1.14.10 | ||
golang.org/x/sync v0.4.0 | ||
google.golang.org/api v0.147.0 | ||
google.golang.org/genproto v0.0.0-20231012201019-e917dd12ba7a | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20231012201019-e917dd12ba7a | ||
google.golang.org/grpc v1.58.3 | ||
google.golang.org/protobuf v1.31.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/mattn/go-sqlite3 v1.14.14 | ||
golang.org/x/sync v0.7.0 | ||
google.golang.org/api v0.189.0 | ||
google.golang.org/genproto v0.0.0-20240722135656-d784300faade | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240722135656-d784300faade | ||
google.golang.org/grpc v1.64.1 | ||
google.golang.org/protobuf v1.34.2 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.23.1 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
cel.dev/expr v0.15.0 // indirect | ||
cloud.google.com/go/auth v0.7.2 // indirect | ||
cloud.google.com/go/auth/oauth2adapt v0.2.3 // indirect | ||
cloud.google.com/go/compute/metadata v0.5.0 // indirect | ||
github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp v1.5.0 // 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-20231016030527-8bd2eac9fb4a // indirect | ||
github.com/envoyproxy/go-control-plane v0.11.1 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v1.0.2 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/cncf/xds/go v0.0.0-20240423153145-555b57ec207b // indirect | ||
github.com/envoyproxy/go-control-plane v0.12.0 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v1.0.4 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/s2a-go v0.1.7 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.1 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.13.0 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/oauth2 v0.13.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect | ||
go.opentelemetry.io/otel v1.24.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.24.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.24.0 // indirect | ||
golang.org/x/crypto v0.25.0 // indirect | ||
golang.org/x/net v0.27.0 // indirect | ||
golang.org/x/oauth2 v0.21.0 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20231012201019-e917dd12ba7a // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240722135656-d784300faade // indirect | ||
) |
Oops, something went wrong.