Skip to content

Commit a437124

Browse files
authored
Update dependency google.golang.org/api/storage/v1 (#103)
* update gitignore file * update dependencies and fix apistore.go
1 parent 3f40c94 commit a437124

File tree

4 files changed

+137
-451
lines changed

4 files changed

+137
-451
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
google_jwt.json
22
.env
33

4-
sniff*
4+
sniff*
5+
vendor/
6+
coverage.*

go.mod

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,54 @@
11
module github.com/lytics/cloudstorage
22

3-
go 1.18
3+
go 1.19
44

55
require (
6-
cloud.google.com/go/storage v1.15.0
7-
github.com/Azure/azure-sdk-for-go v40.5.0+incompatible
8-
github.com/araddon/gou v0.0.0-20190110011759-c797efecbb61
9-
github.com/aws/aws-sdk-go v1.29.34
6+
cloud.google.com/go/storage v1.28.0
7+
github.com/Azure/azure-sdk-for-go v67.1.0+incompatible
8+
github.com/araddon/gou v0.0.0-20211019181548-e7d08105776c
9+
github.com/aws/aws-sdk-go v1.44.146
1010
github.com/pborman/uuid v1.2.1
11-
github.com/pkg/sftp v1.11.0
12-
github.com/stretchr/testify v1.8.0
13-
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897
14-
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4
15-
golang.org/x/oauth2 v0.0.0-20210413134643-5e61552d6c78
16-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
17-
google.golang.org/api v0.45.0
11+
github.com/pkg/sftp v1.13.5
12+
github.com/stretchr/testify v1.8.1
13+
golang.org/x/crypto v0.3.0
14+
golang.org/x/net v0.2.0
15+
golang.org/x/oauth2 v0.2.0
16+
golang.org/x/sync v0.1.0
17+
google.golang.org/api v0.103.0
1818
)
1919

2020
require (
21-
cloud.google.com/go v0.81.0 // indirect
21+
cloud.google.com/go v0.105.0 // indirect
22+
cloud.google.com/go/compute v1.12.1 // indirect
23+
cloud.google.com/go/compute/metadata v0.2.1 // indirect
24+
cloud.google.com/go/iam v0.6.0 // indirect
2225
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
23-
github.com/Azure/go-autorest/autorest v0.11.10 // indirect
24-
github.com/Azure/go-autorest/autorest/adal v0.9.5 // indirect
26+
github.com/Azure/go-autorest/autorest v0.11.28 // indirect
27+
github.com/Azure/go-autorest/autorest/adal v0.9.18 // indirect
2528
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
2629
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
27-
github.com/Azure/go-autorest/logger v0.2.0 // indirect
30+
github.com/Azure/go-autorest/logger v0.2.1 // indirect
2831
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
2932
github.com/davecgh/go-spew v1.1.1 // indirect
30-
github.com/dnaeon/go-vcr v1.1.0 // indirect
31-
github.com/form3tech-oss/jwt-go v3.2.2+incompatible // indirect
33+
github.com/dnaeon/go-vcr v1.2.0 // indirect
34+
github.com/gofrs/uuid v4.3.1+incompatible // indirect
35+
github.com/golang-jwt/jwt/v4 v4.2.0 // indirect
3236
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
3337
github.com/golang/protobuf v1.5.2 // indirect
34-
github.com/google/uuid v1.1.2 // indirect
35-
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
36-
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
37-
github.com/jstemmer/go-junit-report v0.9.1 // indirect
38+
github.com/google/go-cmp v0.5.9 // indirect
39+
github.com/google/uuid v1.3.0 // indirect
40+
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
41+
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
42+
github.com/jmespath/go-jmespath v0.4.0 // indirect
3843
github.com/kr/fs v0.1.0 // indirect
39-
github.com/pkg/errors v0.9.1 // indirect
4044
github.com/pmezard/go-difflib v1.0.0 // indirect
41-
github.com/satori/go.uuid v1.2.0 // indirect
42-
go.opencensus.io v0.23.0 // indirect
43-
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect
44-
golang.org/x/mod v0.4.1 // indirect
45-
golang.org/x/sys v0.0.0-20210412220455-f1c623a9e750 // indirect
46-
golang.org/x/text v0.3.5 // indirect
47-
golang.org/x/tools v0.1.0 // indirect
48-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
45+
go.opencensus.io v0.24.0 // indirect
46+
golang.org/x/sys v0.2.0 // indirect
47+
golang.org/x/text v0.4.0 // indirect
48+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
4949
google.golang.org/appengine v1.6.7 // indirect
50-
google.golang.org/genproto v0.0.0-20210420162539-3c870d7478d2 // indirect
51-
google.golang.org/grpc v1.37.0 // indirect
52-
google.golang.org/protobuf v1.26.0 // indirect
50+
google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c // indirect
51+
google.golang.org/grpc v1.50.1 // indirect
52+
google.golang.org/protobuf v1.28.1 // indirect
5353
gopkg.in/yaml.v3 v3.0.1 // indirect
5454
)

0 commit comments

Comments
 (0)