Skip to content

Commit 1dddad6

Browse files
committed
Migrate off knative.dev/client-pkg
1 parent 364b92f commit 1dddad6

File tree

13 files changed

+1191
-221
lines changed

13 files changed

+1191
-221
lines changed

build/go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module knative.dev/kn-plugin-event/build
22

3-
go 1.22
3+
go 1.22.0
44

55
require (
66
knative.dev/kn-plugin-event v0.0.0
@@ -73,7 +73,7 @@ require (
7373
github.com/fatih/color v1.16.0 // indirect
7474
github.com/felixge/httpsnoop v1.0.4 // indirect
7575
github.com/fsnotify/fsnotify v1.7.0 // indirect
76-
github.com/go-logr/logr v1.4.1 // indirect
76+
github.com/go-logr/logr v1.4.2 // indirect
7777
github.com/go-logr/stdr v1.2.2 // indirect
7878
github.com/go-openapi/analysis v0.23.0 // indirect
7979
github.com/go-openapi/errors v0.22.0 // indirect
@@ -171,28 +171,28 @@ require (
171171
go.uber.org/multierr v1.11.0 // indirect
172172
go.uber.org/zap v1.27.0 // indirect
173173
go4.org v0.0.0-20230225012048-214862532bf5 // indirect
174-
golang.org/x/crypto v0.25.0 // indirect
175-
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
176-
golang.org/x/mod v0.19.0 // indirect
177-
golang.org/x/net v0.27.0 // indirect
178-
golang.org/x/oauth2 v0.21.0 // indirect
179-
golang.org/x/sync v0.7.0 // indirect
180-
golang.org/x/sys v0.22.0 // indirect
181-
golang.org/x/term v0.22.0 // indirect
182-
golang.org/x/text v0.16.0 // indirect
183-
golang.org/x/tools v0.23.0 // indirect
184-
google.golang.org/protobuf v1.34.1 // indirect
174+
golang.org/x/crypto v0.26.0 // indirect
175+
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
176+
golang.org/x/mod v0.20.0 // indirect
177+
golang.org/x/net v0.28.0 // indirect
178+
golang.org/x/oauth2 v0.22.0 // indirect
179+
golang.org/x/sync v0.8.0 // indirect
180+
golang.org/x/sys v0.24.0 // indirect
181+
golang.org/x/term v0.23.0 // indirect
182+
golang.org/x/text v0.17.0 // indirect
183+
golang.org/x/tools v0.24.0 // indirect
184+
google.golang.org/protobuf v1.34.2 // indirect
185185
gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect
186186
gopkg.in/inf.v0 v0.9.1 // indirect
187187
gopkg.in/ini.v1 v1.67.0 // indirect
188188
gopkg.in/yaml.v2 v2.4.0 // indirect
189189
gopkg.in/yaml.v3 v3.0.1 // indirect
190-
k8s.io/api v0.29.3 // indirect
191-
k8s.io/apimachinery v0.29.3 // indirect
192-
k8s.io/klog/v2 v2.120.1 // indirect
193-
k8s.io/utils v0.0.0-20240310230437-4693a0247e57 // indirect
194-
knative.dev/client-pkg v0.0.0-20240724091446-8393d69ad672 // indirect
195-
knative.dev/pkg v0.0.0-20240716082220-4355f0c73608 // indirect
190+
k8s.io/api v0.30.3 // indirect
191+
k8s.io/apimachinery v0.30.3 // indirect
192+
k8s.io/klog/v2 v2.130.1 // indirect
193+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
194+
knative.dev/client-pkg v0.0.0-20240808015000-22f598931483 // indirect
195+
knative.dev/pkg v0.0.0-20240815051656-89743d9bbf7c // indirect
196196
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
197197
sigs.k8s.io/kind v0.22.0 // indirect
198198
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

build/go.sum

Lines changed: 54 additions & 52 deletions
Large diffs are not rendered by default.

go.mod

Lines changed: 35 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module knative.dev/kn-plugin-event
22

3-
go 1.22
3+
go 1.22.0
44

55
require (
66
github.com/cloudevents/sdk-go/v2 v2.15.2
@@ -18,18 +18,20 @@ require (
1818
go.uber.org/zap v1.27.0
1919
gopkg.in/yaml.v2 v2.4.0
2020
gotest.tools/v3 v3.5.1
21-
k8s.io/api v0.29.3
22-
k8s.io/apimachinery v0.29.3
23-
k8s.io/client-go v0.29.2
24-
knative.dev/client-pkg v0.0.0-20240724091446-8393d69ad672
25-
knative.dev/eventing v0.42.0
26-
knative.dev/hack v0.0.0-20240704013904-b9799599afcf
27-
knative.dev/pkg v0.0.0-20240716082220-4355f0c73608
28-
knative.dev/reconciler-test v0.0.0-20240716134925-00d94f40c470
29-
knative.dev/serving v0.42.0
21+
k8s.io/api v0.30.3
22+
k8s.io/apimachinery v0.30.3
23+
k8s.io/client-go v0.30.3
24+
knative.dev/client/pkg v0.0.0
25+
knative.dev/eventing v0.42.1-0.20240828134450-34f9cd384dea
26+
knative.dev/hack v0.0.0-20240814130635-06f7aff93954
27+
knative.dev/pkg v0.0.0-20240815051656-89743d9bbf7c
28+
knative.dev/reconciler-test v0.0.0-20240820100420-036ce14b8617
29+
knative.dev/serving v0.42.1-0.20240820122005-5f5f6d820b03
3030
sigs.k8s.io/yaml v1.4.0
3131
)
3232

33+
replace knative.dev/client/pkg => github.com/cardil/knative-client/pkg v0.0.0-20240903100332-8ddab3c57b08
34+
3335
require (
3436
contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
3537
contrib.go.opencensus.io/exporter/prometheus v0.4.2 // indirect
@@ -44,14 +46,14 @@ require (
4446
github.com/cloudevents/sdk-go/sql/v2 v2.15.2 // indirect
4547
github.com/creack/pty v1.1.21 // indirect
4648
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
47-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
48-
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
49+
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
50+
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
4951
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
5052
github.com/fsnotify/fsnotify v1.7.0 // indirect
5153
github.com/go-errors/errors v1.4.2 // indirect
5254
github.com/go-kit/log v0.2.1 // indirect
5355
github.com/go-logfmt/logfmt v0.5.1 // indirect
54-
github.com/go-logr/logr v1.4.1 // indirect
56+
github.com/go-logr/logr v1.4.2 // indirect
5557
github.com/go-openapi/jsonpointer v0.21.0 // indirect
5658
github.com/go-openapi/jsonreference v0.21.0 // indirect
5759
github.com/go-openapi/swag v0.23.0 // indirect
@@ -62,10 +64,9 @@ require (
6264
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
6365
github.com/google/go-cmp v0.6.0 // indirect
6466
github.com/google/gofuzz v1.2.1-0.20210504230335-f78f29fc09ea // indirect
65-
github.com/google/pprof v0.0.0-20231023181126-ff6d637d2a7b // indirect
6667
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
6768
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
68-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
69+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.21.0 // indirect
6970
github.com/hashicorp/golang-lru v1.0.2 // indirect
7071
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
7172
github.com/imdario/mergo v0.3.16 // indirect
@@ -91,15 +92,14 @@ require (
9192
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
9293
github.com/prometheus/client_golang v1.19.1 // indirect
9394
github.com/prometheus/client_model v0.6.1 // indirect
94-
github.com/prometheus/common v0.54.0 // indirect
95-
github.com/prometheus/procfs v0.12.0 // indirect
95+
github.com/prometheus/common v0.55.0 // indirect
96+
github.com/prometheus/procfs v0.15.1 // indirect
9697
github.com/prometheus/statsd_exporter v0.22.8 // indirect
9798
github.com/rickb777/date v1.20.0 // indirect
9899
github.com/rickb777/plural v1.4.1 // indirect
99100
github.com/robfig/cron/v3 v3.0.1 // indirect
100101
github.com/sagikazarmark/locafero v0.4.0 // indirect
101102
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
102-
github.com/sergi/go-diff v1.2.0 // indirect
103103
github.com/sourcegraph/conc v0.3.0 // indirect
104104
github.com/spf13/afero v1.11.0 // indirect
105105
github.com/spf13/cast v1.6.0 // indirect
@@ -112,29 +112,30 @@ require (
112112
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
113113
go.uber.org/atomic v1.10.0 // indirect
114114
go.uber.org/multierr v1.11.0 // indirect
115-
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
116-
golang.org/x/net v0.27.0 // indirect
117-
golang.org/x/oauth2 v0.21.0 // indirect
118-
golang.org/x/sync v0.7.0 // indirect
119-
golang.org/x/sys v0.22.0 // indirect
120-
golang.org/x/term v0.22.0 // indirect
121-
golang.org/x/text v0.16.0 // indirect
122-
golang.org/x/time v0.5.0 // indirect
115+
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
116+
golang.org/x/net v0.28.0 // indirect
117+
golang.org/x/oauth2 v0.22.0 // indirect
118+
golang.org/x/sync v0.8.0 // indirect
119+
golang.org/x/sys v0.24.0 // indirect
120+
golang.org/x/term v0.23.0 // indirect
121+
golang.org/x/text v0.17.0 // indirect
122+
golang.org/x/time v0.6.0 // indirect
123123
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
124124
google.golang.org/api v0.183.0 // indirect
125-
google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 // indirect
126-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect
125+
google.golang.org/genproto/googleapis/api v0.0.0-20240808171019-573a1156607a // indirect
126+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240808171019-573a1156607a // indirect
127127
google.golang.org/grpc v1.65.0 // indirect
128-
google.golang.org/protobuf v1.34.1 // indirect
128+
google.golang.org/protobuf v1.34.2 // indirect
129129
gopkg.in/inf.v0 v0.9.1 // indirect
130130
gopkg.in/ini.v1 v1.67.0 // indirect
131131
gopkg.in/yaml.v3 v3.0.1 // indirect
132-
k8s.io/apiserver v0.29.2 // indirect
132+
k8s.io/apiserver v0.30.3 // indirect
133133
k8s.io/cli-runtime v0.29.2 // indirect
134-
k8s.io/klog/v2 v2.120.1 // indirect
135-
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
136-
k8s.io/utils v0.0.0-20240310230437-4693a0247e57 // indirect
137-
knative.dev/networking v0.0.0-20240716111826-bab7f2a3e556 // indirect
134+
k8s.io/klog/v2 v2.130.1 // indirect
135+
k8s.io/kube-openapi v0.0.0-20240808142205-8e686545bdb8 // indirect
136+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
137+
knative.dev/client-pkg v0.0.0-20240808015000-22f598931483 // indirect
138+
knative.dev/networking v0.0.0-20240815142417-37fdbdd0854b // indirect
138139
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
139140
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect
140141
sigs.k8s.io/kustomize/kyaml v0.14.3-0.20230601165947-6ce0bf390ce3 // indirect

0 commit comments

Comments
 (0)