Skip to content

Commit fdacd10

Browse files
Romain Dartiguesjpalermo
authored andcommitted
vendor
Note: This is mostly to make the added CloudStack support commit more readable.
1 parent 53f7dc7 commit fdacd10

File tree

413 files changed

+228600
-73704
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

413 files changed

+228600
-73704
lines changed

go.mod

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/aws/aws-sdk-go v1.14.18
1313
github.com/cloudfoundry/bbl-state-resource v0.0.0-20180409211107-a02832129633
1414
github.com/cloudfoundry/multierror v0.0.0-20170123201326-dafed03eebc6
15-
github.com/coreos/go-semver v0.2.0
15+
github.com/coreos/go-semver v0.3.0
1616
github.com/genevieve/leftovers v0.55.1-0.20190805182303-e86fd74c0714
1717
github.com/jessevdk/go-flags v1.4.0
1818
github.com/kr/pty v1.1.3
@@ -22,16 +22,17 @@ require (
2222
github.com/onsi/ginkgo/v2 v2.9.4
2323
github.com/onsi/gomega v1.27.6
2424
github.com/pmezard/go-difflib v1.0.0
25-
github.com/spf13/afero v1.2.0
25+
github.com/spf13/afero v1.6.0
2626
golang.org/x/crypto v0.7.0
2727
golang.org/x/net v0.9.0
28-
golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890
29-
google.golang.org/api v0.1.0
28+
golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602
29+
google.golang.org/api v0.44.0
3030
gopkg.in/yaml.v2 v2.4.0
3131
)
3232

3333
require (
34-
cloud.google.com/go v0.36.0 // indirect
34+
cloud.google.com/go v0.81.0 // indirect
35+
cloud.google.com/go/storage v1.10.0 // indirect
3536
code.cloudfoundry.org/multierror v0.0.0-20170123201326-dafed03eebc6 // indirect
3637
github.com/Azure/azure-sdk-for-go v12.5.0-beta+incompatible // indirect
3738
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.6.0 // indirect
@@ -47,16 +48,18 @@ require (
4748
github.com/go-logr/logr v1.2.4 // indirect
4849
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
4950
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
51+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
5052
github.com/golang/protobuf v1.5.3 // indirect
5153
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
5254
github.com/google/go-cmp v0.5.9 // indirect
5355
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
5456
github.com/google/uuid v1.3.0 // indirect
55-
github.com/googleapis/gax-go/v2 v2.0.3 // indirect
56-
github.com/hashicorp/errwrap v0.0.0-20180715044906-d6c0cd880357 // indirect
57-
github.com/hashicorp/go-multierror v0.0.0-20180717150148-3d5d8f294aa0 // indirect
57+
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
58+
github.com/hashicorp/errwrap v1.0.0 // indirect
59+
github.com/hashicorp/go-multierror v1.0.0 // indirect
5860
github.com/hpcloud/tail v1.0.0 // indirect
5961
github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 // indirect
62+
github.com/jstemmer/go-junit-report v0.9.1 // indirect
6063
github.com/kylelemons/godebug v1.1.0 // indirect
6164
github.com/mattn/go-colorable v0.0.9 // indirect
6265
github.com/mattn/go-isatty v0.0.4 // indirect
@@ -69,17 +72,18 @@ require (
6972
github.com/smartystreets/goconvey v1.6.4 // indirect
7073
github.com/ulikunitz/xz v0.5.4 // indirect
7174
github.com/vmware/govmomi v0.18.0 // indirect
72-
go.opencensus.io v0.18.0 // indirect
75+
go.opencensus.io v0.23.0 // indirect
76+
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
77+
golang.org/x/mod v0.10.0 // indirect
7378
golang.org/x/sys v0.7.0 // indirect
7479
golang.org/x/text v0.9.0 // indirect
7580
golang.org/x/tools v0.8.0 // indirect
76-
google.golang.org/appengine v1.4.0 // indirect
77-
google.golang.org/genproto v0.0.0-20190201180003-4b09977fb922 // indirect
78-
google.golang.org/grpc v1.17.0 // indirect
81+
google.golang.org/appengine v1.6.7 // indirect
82+
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect
83+
google.golang.org/grpc v1.38.0 // indirect
7984
google.golang.org/protobuf v1.28.0 // indirect
80-
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
8185
gopkg.in/fsnotify.v1 v1.4.7 // indirect
82-
gopkg.in/ini.v1 v1.51.1 // indirect
86+
gopkg.in/ini.v1 v1.62.0 // indirect
8387
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
8488
gopkg.in/yaml.v3 v3.0.1 // indirect
8589
)

go.sum

Lines changed: 440 additions & 115 deletions
Large diffs are not rendered by default.

vendor/cloud.google.com/go/.gitignore

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/cloud.google.com/go/AUTHORS

Lines changed: 0 additions & 15 deletions
This file was deleted.

vendor/cloud.google.com/go/CHANGES.md

Lines changed: 1980 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/cloud.google.com/go/CODE_OF_CONDUCT.md

Lines changed: 44 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)