Skip to content

Commit 394113f

Browse files
Merge pull request #17 from cloudfoundry-community/update-go-version
update go version and bump dependancies
2 parents 223c243 + 51ae2d1 commit 394113f

File tree

275 files changed

+18165
-3942
lines changed

Some content is hidden

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

275 files changed

+18165
-3942
lines changed

go.mod

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/cloudfoundry-community/go-cf-clients-helper/v2
22

3-
go 1.22.3
3+
go 1.22.6
44

55
exclude (
66
github.com/imdario/mergo v0.3.16
@@ -15,13 +15,13 @@ require (
1515
)
1616

1717
require (
18-
code.cloudfoundry.org/bytefmt v0.0.0-20240524171005-f1d9d5c55b92 // indirect
18+
code.cloudfoundry.org/bytefmt v0.1.0 // indirect
1919
code.cloudfoundry.org/cli-plugin-repo v0.0.0-20240520170503-e7ed9c7432a0 // indirect
20-
code.cloudfoundry.org/clock v1.1.0 // indirect
20+
code.cloudfoundry.org/clock v1.3.0 // indirect
2121
code.cloudfoundry.org/go-log-cache/v2 v2.0.7 // indirect
2222
code.cloudfoundry.org/go-loggregator/v9 v9.2.1 // indirect
2323
code.cloudfoundry.org/jsonry v1.1.4 // indirect
24-
code.cloudfoundry.org/tlsconfig v0.0.0-20240522170710-79df114af82a // indirect
24+
code.cloudfoundry.org/tlsconfig v0.1.0 // indirect
2525
code.cloudfoundry.org/ykk v0.0.0-20170424192843-e4df4ce2fd4d // indirect
2626
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
2727
github.com/SermoDigital/jose v0.9.2-0.20161205224733-f6df55f235c2 // indirect
@@ -30,21 +30,22 @@ require (
3030
github.com/bmizerany/pat v0.0.0-20210406213842-e4b6760bdd6f // indirect
3131
github.com/charlievieth/fs v0.0.3 // indirect
3232
github.com/cloudfoundry/bosh-cli v6.4.1+incompatible // indirect
33-
github.com/cloudfoundry/bosh-utils v0.0.466 // indirect
33+
github.com/cloudfoundry/bosh-utils v0.0.484 // indirect
3434
github.com/cppforlife/go-patch v0.2.0 // indirect
35-
github.com/davecgh/go-spew v1.1.1 // indirect
35+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3636
github.com/fatih/color v1.17.0 // indirect
37+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
3738
github.com/go-logr/logr v1.4.2 // indirect
3839
github.com/gogo/protobuf v1.3.2 // indirect
3940
github.com/google/gofuzz v1.2.0 // indirect
40-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
41+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
4142
github.com/imdario/mergo v0.3.15 // indirect
42-
github.com/jessevdk/go-flags v1.5.0 // indirect
43+
github.com/jessevdk/go-flags v1.6.1 // indirect
4344
github.com/json-iterator/go v1.1.12 // indirect
4445
github.com/lunixbochs/vtclean v1.0.0 // indirect
4546
github.com/mattn/go-colorable v0.1.13 // indirect
4647
github.com/mattn/go-isatty v0.0.20 // indirect
47-
github.com/mattn/go-runewidth v0.0.15 // indirect
48+
github.com/mattn/go-runewidth v0.0.16 // indirect
4849
github.com/moby/term v0.5.0 // indirect
4950
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5051
github.com/modern-go/reflect2 v1.0.2 // indirect
@@ -54,24 +55,25 @@ require (
5455
github.com/spf13/pflag v1.0.5 // indirect
5556
github.com/tedsuo/rata v1.0.1-0.20170830210128-07d200713958 // indirect
5657
github.com/vito/go-interact v1.0.0 // indirect
57-
golang.org/x/crypto v0.23.0 // indirect
58-
golang.org/x/net v0.25.0 // indirect
59-
golang.org/x/oauth2 v0.20.0 // indirect
60-
golang.org/x/sys v0.20.0 // indirect
61-
golang.org/x/term v0.20.0 // indirect
62-
golang.org/x/text v0.16.0 // indirect
63-
golang.org/x/time v0.5.0 // indirect
64-
google.golang.org/genproto/googleapis/api v0.0.0-20240521202816-d264139d666e // indirect
65-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240521202816-d264139d666e // indirect
66-
google.golang.org/grpc v1.64.0 // indirect
67-
google.golang.org/protobuf v1.34.1 // indirect
58+
github.com/x448/float16 v0.8.4 // indirect
59+
golang.org/x/crypto v0.26.0 // indirect
60+
golang.org/x/net v0.28.0 // indirect
61+
golang.org/x/oauth2 v0.22.0 // indirect
62+
golang.org/x/sys v0.24.0 // indirect
63+
golang.org/x/term v0.23.0 // indirect
64+
golang.org/x/text v0.17.0 // indirect
65+
golang.org/x/time v0.6.0 // indirect
66+
google.golang.org/genproto/googleapis/api v0.0.0-20240820151423-278611b39280 // indirect
67+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240820151423-278611b39280 // indirect
68+
google.golang.org/grpc v1.65.0 // indirect
69+
google.golang.org/protobuf v1.34.2 // indirect
6870
gopkg.in/cheggaaa/pb.v1 v1.0.28 // indirect
6971
gopkg.in/inf.v0 v0.9.1 // indirect
7072
gopkg.in/yaml.v2 v2.4.0 // indirect
71-
k8s.io/apimachinery v0.30.1 // indirect
72-
k8s.io/client-go v0.30.1 // indirect
73-
k8s.io/klog/v2 v2.120.1 // indirect
74-
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0 // indirect
73+
k8s.io/apimachinery v0.31.0 // indirect
74+
k8s.io/client-go v0.31.0 // indirect
75+
k8s.io/klog/v2 v2.130.1 // indirect
76+
k8s.io/utils v0.0.0-20240821151609-f90d01438635 // indirect
7577
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
7678
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
7779
sigs.k8s.io/yaml v1.4.0 // indirect

0 commit comments

Comments
 (0)