Skip to content

Commit ac5bcff

Browse files
committed
Updated vendor versions
1 parent 7d450a2 commit ac5bcff

File tree

700 files changed

+27998
-25838
lines changed

Some content is hidden

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

700 files changed

+27998
-25838
lines changed

azure-pipelines.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ variables:
2121
GOBIN: '$(GOPATH)/bin'
2222
ref: $(Build.SourceBranch)
2323
branch: $(Build.SourceBranchName)
24-
controller_image: 'gcr.io/focal-freedom-236620/controller:3.0.1'
24+
controller_image: 'gcr.io/focal-freedom-236620/controller:develop'
2525
enterprise_image: 'gcr.io/focal-freedom-236620/enterprise-controller:master'
2626
agent_image: 'gcr.io/focal-freedom-236620/agent:develop'
2727
operator_image: 'gcr.io/focal-freedom-236620/operator:develop'

go.mod

Lines changed: 25 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,33 @@ require (
77
github.com/briandowns/spinner v1.18.1
88
github.com/docker/docker v20.10.14+incompatible
99
github.com/docker/go-connections v0.4.0
10-
github.com/eclipse-iofog/iofog-go-sdk/v3 v3.2.0
10+
github.com/eclipse-iofog/iofog-go-sdk/v3 v3.1.0
1111
github.com/eclipse-iofog/iofog-operator/v3 v3.1.1
1212
github.com/json-iterator/go v1.1.12
1313
github.com/mitchellh/go-homedir v1.1.0
1414
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
15-
github.com/spf13/cobra v1.6.0
15+
github.com/spf13/cobra v1.4.0
1616
github.com/twmb/algoimpl v0.0.0-20170717182524-076353e90b94
17-
golang.org/x/crypto v0.1.0
17+
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
1818
gopkg.in/yaml.v2 v2.4.0
19-
k8s.io/api v0.26.0
20-
k8s.io/apiextensions-apiserver v0.26.0
21-
k8s.io/apimachinery v0.26.0
22-
k8s.io/client-go v0.26.0
23-
sigs.k8s.io/controller-runtime v0.14.1
19+
k8s.io/api v0.24.0
20+
k8s.io/apiextensions-apiserver v0.24.0
21+
k8s.io/apimachinery v0.24.0
22+
k8s.io/client-go v0.24.0
23+
sigs.k8s.io/controller-runtime v0.11.2
2424
)
2525

2626
require (
27+
cloud.google.com/go/compute v1.6.1 // indirect
2728
github.com/Microsoft/go-winio v0.5.2 // indirect
2829
github.com/containerd/containerd v1.6.4 // indirect
2930
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
3031
github.com/daaku/go.zipexe v1.0.1 // indirect
3132
github.com/davecgh/go-spew v1.1.1 // indirect
3233
github.com/docker/distribution v2.8.1+incompatible // indirect
3334
github.com/docker/go-units v0.4.0 // indirect
34-
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
35-
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
35+
github.com/emicklei/go-restful v2.15.0+incompatible // indirect
36+
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
3637
github.com/fatih/color v1.13.0 // indirect
3738
github.com/go-logr/logr v1.2.3 // indirect
3839
github.com/go-openapi/jsonpointer v0.19.5 // indirect
@@ -41,16 +42,13 @@ require (
4142
github.com/gogo/protobuf v1.3.2 // indirect
4243
github.com/golang/protobuf v1.5.2 // indirect
4344
github.com/google/gnostic v0.6.9 // indirect
44-
github.com/google/go-cmp v0.5.9 // indirect
4545
github.com/google/gofuzz v1.2.0 // indirect
46-
github.com/gorilla/mux v1.8.0 // indirect
4746
github.com/imdario/mergo v0.3.12 // indirect
48-
github.com/inconshreveable/mousetrap v1.0.1 // indirect
47+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
4948
github.com/josharian/intern v1.0.0 // indirect
5049
github.com/mailru/easyjson v0.7.7 // indirect
5150
github.com/mattn/go-colorable v0.1.12 // indirect
5251
github.com/mattn/go-isatty v0.0.14 // indirect
53-
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
5452
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5553
github.com/modern-go/reflect2 v1.0.2 // indirect
5654
github.com/morikuni/aec v1.0.0 // indirect
@@ -61,23 +59,23 @@ require (
6159
github.com/russross/blackfriday/v2 v2.1.0 // indirect
6260
github.com/sirupsen/logrus v1.8.1 // indirect
6361
github.com/spf13/pflag v1.0.5 // indirect
64-
golang.org/x/net v0.3.1-0.20221206200815-1e63c2f08a10 // indirect
62+
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
6563
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
66-
golang.org/x/sys v0.3.0 // indirect
67-
golang.org/x/term v0.3.0 // indirect
68-
golang.org/x/text v0.5.0 // indirect
69-
golang.org/x/time v0.3.0 // indirect
64+
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
65+
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect
66+
golang.org/x/text v0.3.7 // indirect
67+
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
7068
google.golang.org/appengine v1.6.7 // indirect
7169
google.golang.org/genproto v0.0.0-20220504150022-98cd25cafc72 // indirect
72-
google.golang.org/grpc v1.49.0 // indirect
73-
google.golang.org/protobuf v1.28.1 // indirect
70+
google.golang.org/grpc v1.46.0 // indirect
71+
google.golang.org/protobuf v1.28.0 // indirect
7472
gopkg.in/inf.v0 v0.9.1 // indirect
75-
gopkg.in/yaml.v3 v3.0.1 // indirect
76-
k8s.io/klog/v2 v2.80.1 // indirect
77-
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
78-
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448 // indirect
79-
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
80-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
73+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
74+
k8s.io/klog/v2 v2.60.1 // indirect
75+
k8s.io/kube-openapi v0.0.0-20220413171646-5e7f5fdc6da6 // indirect
76+
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
77+
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
78+
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
8179
sigs.k8s.io/yaml v1.3.0 // indirect
8280
)
8381

0 commit comments

Comments
 (0)