Skip to content

Commit 7973b80

Browse files
authored
updated to 1.11 knative modules for the release and added instruction… (#533)
* updated to 1.11 knative modules for the release and added instructions to do so * fixing verifying detail * update codegen
1 parent 054effd commit 7973b80

File tree

1,132 files changed

+81316
-86737
lines changed

Some content is hidden

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

1,132 files changed

+81316
-86737
lines changed

RELEASE.md

+14
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,17 @@ git push origin knative-v1.0.1
8989

9090
**Notes:**
9191
- To trigger the release workflow you cannot push more than 2 tags at a time.
92+
93+
## Update and Upgrade deps
94+
95+
To update deps run:
96+
```
97+
./hack/update-deps.sh
98+
```
99+
100+
To upgrade deps for a new release run:
101+
```
102+
./hack/update-deps.sh --upgrade --release v0.38.1
103+
```
104+
**Notes:**
105+
- Create a PR and fix the compatibility erros that may arrise

go.mod

+46-49
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ require (
1010
github.com/elazarl/go-bindata-assetfs v1.0.0 // indirect
1111
github.com/fatih/structs v1.1.0 // indirect
1212
github.com/google/go-cmp v0.5.9
13-
github.com/hashicorp/go-cleanhttp v0.5.2
14-
github.com/hashicorp/golang-lru v0.5.4
13+
github.com/hashicorp/golang-lru v1.0.2
1514
github.com/jpillora/backoff v1.0.0
1615
github.com/kelseyhightower/envconfig v1.4.0
1716
github.com/kr/pty v1.1.8 // indirect
@@ -20,45 +19,45 @@ require (
2019
github.com/yudai/gotty v1.0.1
2120
github.com/yudai/hcl v0.0.0-20151013225006-5fa2393b3552 // indirect
2221
github.com/yudai/umutex v0.0.0-20150817080136-18216d265c6b // indirect
23-
go.uber.org/zap v1.23.0
24-
golang.org/x/term v0.5.0
25-
k8s.io/api v0.25.4
26-
k8s.io/apimachinery v0.25.4
27-
k8s.io/client-go v0.25.4
28-
k8s.io/code-generator v0.25.4
22+
go.uber.org/zap v1.25.0
23+
golang.org/x/term v0.11.0
24+
k8s.io/api v0.26.5
25+
k8s.io/apimachinery v0.26.5
26+
k8s.io/client-go v0.26.5
27+
k8s.io/code-generator v0.26.5
2928
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280
30-
knative.dev/eventing v0.37.1-0.20230502055954-cd50d2786189
31-
knative.dev/hack v0.0.0-20230501013555-7d81248b4638
32-
knative.dev/pkg v0.0.0-20230501013355-904966742b58
29+
knative.dev/eventing v0.38.1
30+
knative.dev/hack v0.0.0-20230818155117-9cc05a31e8c0
31+
knative.dev/pkg v0.0.0-20230829134737-fcccb4e1a0a4
3332
)
3433

3534
require (
36-
github.com/benbjohnson/clock v1.1.0
35+
github.com/benbjohnson/clock v1.3.0
3736
github.com/go-resty/resty/v2 v2.7.0
3837
github.com/hashicorp/hcl v1.0.0
3938
github.com/pkg/errors v0.9.1
4039
github.com/stretchr/testify v1.8.1
41-
golang.org/x/sync v0.1.0
40+
golang.org/x/sync v0.3.0
4241
gotest.tools/v3 v3.3.0
4342
k8s.io/utils v0.0.0-20221108210102-8e77b1f39fe2
44-
knative.dev/client v0.37.1-0.20230501015655-f9af3a7b059a
43+
knative.dev/client v0.38.0
4544
)
4645

4746
require (
48-
cloud.google.com/go/compute/metadata v0.2.3 // indirect
4947
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
5048
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
5149
github.com/google/gnostic v0.6.9 // indirect
5250
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
5351
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5452
github.com/opencontainers/go-digest v1.0.0 // indirect
5553
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
56-
github.com/rogpeppe/go-internal v1.6.1 // indirect
54+
github.com/rogpeppe/go-internal v1.10.0 // indirect
5755
github.com/russross/blackfriday/v2 v2.1.0 // indirect
56+
google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5 // indirect
57+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect
5858
)
5959

6060
require (
61-
cloud.google.com/go/compute v1.15.1 // indirect
6261
contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
6362
contrib.go.opencensus.io/exporter/prometheus v0.4.2 // indirect
6463
contrib.go.opencensus.io/exporter/zipkin v0.1.2 // indirect
@@ -73,51 +72,50 @@ require (
7372
github.com/creack/pty v1.1.11 // indirect
7473
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
7574
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
76-
github.com/fsnotify/fsnotify v1.5.4 // indirect
75+
github.com/fsnotify/fsnotify v1.6.0 // indirect
7776
github.com/go-errors/errors v1.4.2 // indirect
7877
github.com/go-kit/log v0.2.1 // indirect
7978
github.com/go-logfmt/logfmt v0.5.1 // indirect
80-
github.com/go-logr/logr v1.2.3 // indirect
79+
github.com/go-logr/logr v1.2.4 // indirect
8180
github.com/go-openapi/jsonpointer v0.19.5 // indirect
8281
github.com/go-openapi/jsonreference v0.20.0 // indirect
8382
github.com/go-openapi/swag v0.22.3 // indirect
84-
github.com/gobuffalo/flect v0.2.4 // indirect
83+
github.com/gobuffalo/flect v1.0.2 // indirect
8584
github.com/gogo/protobuf v1.3.2 // indirect
8685
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
87-
github.com/golang/protobuf v1.5.2 // indirect
86+
github.com/golang/protobuf v1.5.3 // indirect
8887
github.com/google/btree v1.1.2 // indirect
8988
github.com/google/go-containerregistry v0.13.0 // indirect
9089
github.com/google/gofuzz v1.2.0 // indirect
9190
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
92-
github.com/google/uuid v1.3.0 // indirect
93-
github.com/gorilla/websocket v1.4.2 // indirect
91+
github.com/google/uuid v1.3.1 // indirect
92+
github.com/gorilla/websocket v1.5.0 // indirect
9493
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
9594
github.com/hashicorp/errwrap v1.1.0 // indirect
9695
github.com/hashicorp/go-multierror v1.1.1 // indirect
97-
github.com/hashicorp/go-retryablehttp v0.6.7 // indirect
9896
github.com/imdario/mergo v0.3.13 // indirect
9997
github.com/inconshreveable/mousetrap v1.0.1 // indirect
10098
github.com/josharian/intern v1.0.0 // indirect
10199
github.com/json-iterator/go v1.1.12 // indirect
102-
github.com/kr/pretty v0.3.0 // indirect
100+
github.com/kr/pretty v0.3.1 // indirect
103101
github.com/kr/text v0.2.0 // indirect
104102
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
105103
github.com/magiconair/properties v1.8.6 // indirect
106104
github.com/mailru/easyjson v0.7.7 // indirect
107-
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
105+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
108106
github.com/mitchellh/go-homedir v1.1.0 // indirect
109107
github.com/mitchellh/mapstructure v1.5.0 // indirect
110108
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
111109
github.com/modern-go/reflect2 v1.0.2 // indirect
112110
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
113-
github.com/openzipkin/zipkin-go v0.4.0 // indirect
111+
github.com/openzipkin/zipkin-go v0.4.2 // indirect
114112
github.com/pelletier/go-toml v1.9.5 // indirect
115113
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
116114
github.com/pmezard/go-difflib v1.0.0 // indirect
117-
github.com/prometheus/client_golang v1.13.0 // indirect
118-
github.com/prometheus/client_model v0.2.0 // indirect
119-
github.com/prometheus/common v0.37.0 // indirect
120-
github.com/prometheus/procfs v0.8.0 // indirect
115+
github.com/prometheus/client_golang v1.16.0 // indirect
116+
github.com/prometheus/client_model v0.4.0 // indirect
117+
github.com/prometheus/common v0.44.0 // indirect
118+
github.com/prometheus/procfs v0.10.1 // indirect
121119
github.com/prometheus/statsd_exporter v0.22.8 // indirect
122120
github.com/rickb777/date v1.20.0 // indirect
123121
github.com/rickb777/plural v1.4.1 // indirect
@@ -131,32 +129,31 @@ require (
131129
github.com/xlab/treeprint v1.1.0 // indirect
132130
go.opencensus.io v0.24.0 // indirect
133131
go.starlark.net v0.0.0-20220817180228-f738f5508c12 // indirect
134-
go.uber.org/atomic v1.10.0 // indirect
135-
go.uber.org/automaxprocs v1.4.0 // indirect
136-
go.uber.org/multierr v1.8.0 // indirect
137-
golang.org/x/mod v0.6.0 // indirect
138-
golang.org/x/net v0.7.0 // indirect
139-
golang.org/x/oauth2 v0.4.0 // indirect
140-
golang.org/x/sys v0.5.0 // indirect
141-
golang.org/x/text v0.7.0 // indirect
142-
golang.org/x/time v0.1.0 // indirect
143-
golang.org/x/tools v0.1.12 // indirect
144-
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
145-
google.golang.org/api v0.103.0 // indirect
132+
go.uber.org/automaxprocs v1.5.3 // indirect
133+
go.uber.org/multierr v1.10.0 // indirect
134+
golang.org/x/mod v0.12.0 // indirect
135+
golang.org/x/net v0.14.0 // indirect
136+
golang.org/x/oauth2 v0.11.0 // indirect
137+
golang.org/x/sys v0.11.0 // indirect
138+
golang.org/x/text v0.12.0 // indirect
139+
golang.org/x/time v0.3.0 // indirect
140+
golang.org/x/tools v0.12.0 // indirect
141+
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
142+
google.golang.org/api v0.138.0 // indirect
146143
google.golang.org/appengine v1.6.7 // indirect
147-
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
148-
google.golang.org/grpc v1.53.0 // indirect
149-
google.golang.org/protobuf v1.28.1 // indirect
144+
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect
145+
google.golang.org/grpc v1.57.0 // indirect
146+
google.golang.org/protobuf v1.31.0 // indirect
150147
gopkg.in/inf.v0 v0.9.1 // indirect
151148
gopkg.in/ini.v1 v1.67.0 // indirect
152149
gopkg.in/yaml.v2 v2.4.0 // indirect
153150
gopkg.in/yaml.v3 v3.0.1 // indirect
154-
k8s.io/apiextensions-apiserver v0.25.4 // indirect
151+
k8s.io/apiextensions-apiserver v0.26.5 // indirect
155152
k8s.io/cli-runtime v0.25.2 // indirect
156153
k8s.io/gengo v0.0.0-20221011193443-fad74ee6edd9 // indirect
157154
k8s.io/klog/v2 v2.80.2-0.20221028030830-9ae4992afb54 // indirect
158-
knative.dev/networking v0.0.0-20230419144338-e5d04e805e50 // indirect
159-
knative.dev/serving v0.37.0 // indirect
155+
knative.dev/networking v0.0.0-20230718160410-75dcd54d9510 // indirect
156+
knative.dev/serving v0.38.0 // indirect
160157
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
161158
sigs.k8s.io/kustomize/api v0.12.1 // indirect
162159
sigs.k8s.io/kustomize/kyaml v0.13.9 // indirect

0 commit comments

Comments
 (0)