Skip to content

Commit 308e188

Browse files
upgrade to latest dependencies
bumping knative.dev/eventing 40bac3c...7f047f9: > 7f047f9 feat: add request reply cesql function (# 8608) > 5de389b feat: support for additional pod scheduling definition on IntegrationSource (# 8601) > a582a88 Bump github.com/go-jose/go-jose/v3 from 3.0.3 to 3.0.4 (# 8605) > e25bccd feat: add package to set and verify correlation/reply ids for RequestReply (# 8606) > d56ee68 Adding addressable duck on crd (# 8603) > 9d89558 [main] Upgrade to latest dependencies (# 8598) > da948cb Return assigned port for HTTPEventReceiver (# 8596) > 3edf526 [main] Upgrade to latest dependencies (# 8595) bumping google.golang.org/genproto/googleapis/rpc 56aae31...b45e905: > b45e905 chore(all): update all (# 1204) > e70fdf4 chore(deps): bump golang.org/x/net to 0.37.0 (# 1202) > 33a14cd chore(deps): bump golang.org/x/net from 0.35.0 to 0.36.0 (# 1201) > 5d019e2 chore(deps): bump golang.org/x/net in /googleapis/bytestream (# 1200) > 81fb87f chore(all): auto-regenerate .pb.go files (# 1199) > 29e43e6 chore(all): auto-regenerate .pb.go files (# 1195) > a0af3ef chore(all): update all (# 1196) > 55c9018 chore(all): auto-regenerate .pb.go files (# 1194) > 546df14 chore(all): update all (# 1193) > 9fdb1ca chore(all): update Go to 1.24 (# 1191) Signed-off-by: Knative Automation <automation@knative.team>
1 parent e02b045 commit 308e188

854 files changed

Lines changed: 56884 additions & 41803 deletions

File tree

Some content is hidden

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

go.mod

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module knative.dev/eventing-natss
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/cloudevents/sdk-go/protocol/nats_jetstream/v2 v2.15.2
@@ -16,15 +16,15 @@ require (
1616
github.com/pkg/errors v0.9.1 // indirect
1717
go.opencensus.io v0.24.0
1818
go.uber.org/zap v1.27.0
19-
k8s.io/api v0.32.2
20-
k8s.io/apimachinery v0.32.2
21-
k8s.io/client-go v0.32.2
19+
k8s.io/api v0.33.1
20+
k8s.io/apimachinery v0.33.1
21+
k8s.io/client-go v0.33.1
2222
k8s.io/utils v0.0.0-20241210054802-24370beab758
23-
knative.dev/eventing v0.45.1-0.20250526160117-40bac3cce0e6
23+
knative.dev/eventing v0.45.1-0.20250624154504-7f047f979e61
2424
knative.dev/hack v0.0.0-20250514121446-f525e187efdc
2525
knative.dev/hack/schema v0.0.0-20250514121446-f525e187efdc
26-
knative.dev/pkg v0.0.0-20250520014526-44579e9ce5ed
27-
knative.dev/reconciler-test v0.0.0-20250516121650-f46fa6544a97
26+
knative.dev/pkg v0.0.0-20250625132305-fe85a65af284
27+
knative.dev/reconciler-test v0.0.0-20250602074324-9a20896ca854
2828
)
2929

3030
require (
@@ -52,7 +52,7 @@ require (
5252
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
5353
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
5454
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
55-
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
55+
github.com/go-jose/go-jose/v3 v3.0.4 // indirect
5656
github.com/go-kit/log v0.2.1 // indirect
5757
github.com/go-logfmt/logfmt v0.5.1 // indirect
5858
github.com/go-logr/logr v1.4.2 // indirect
@@ -64,12 +64,11 @@ require (
6464
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
6565
github.com/golang/protobuf v1.5.4 // indirect
6666
github.com/google/gnostic-models v0.6.9 // indirect
67-
github.com/google/gofuzz v1.2.0 // indirect
6867
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
6968
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7069
github.com/josharian/intern v1.0.0 // indirect
7170
github.com/json-iterator/go v1.1.12 // indirect
72-
github.com/klauspost/compress v1.17.11 // indirect
71+
github.com/klauspost/compress v1.18.0 // indirect
7372
github.com/mailru/easyjson v0.9.0 // indirect
7473
github.com/minio/highwayhash v1.0.3 // indirect
7574
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
@@ -79,7 +78,7 @@ require (
7978
github.com/nats-io/nuid v1.0.1 // indirect
8079
github.com/openzipkin/zipkin-go v0.4.3 // indirect
8180
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
82-
github.com/prometheus/client_golang v1.20.5 // indirect
81+
github.com/prometheus/client_golang v1.22.0 // indirect
8382
github.com/prometheus/client_model v0.6.1 // indirect
8483
github.com/prometheus/common v0.62.0 // indirect
8584
github.com/prometheus/procfs v0.15.1 // indirect
@@ -93,34 +92,35 @@ require (
9392
go.uber.org/atomic v1.10.0 // indirect
9493
go.uber.org/automaxprocs v1.6.0 // indirect
9594
go.uber.org/multierr v1.11.0 // indirect
96-
golang.org/x/crypto v0.38.0 // indirect
97-
golang.org/x/mod v0.24.0 // indirect
98-
golang.org/x/net v0.40.0 // indirect
99-
golang.org/x/oauth2 v0.26.0 // indirect
100-
golang.org/x/sync v0.14.0 // indirect
95+
golang.org/x/crypto v0.39.0 // indirect
96+
golang.org/x/mod v0.25.0 // indirect
97+
golang.org/x/net v0.41.0 // indirect
98+
golang.org/x/oauth2 v0.28.0 // indirect
99+
golang.org/x/sync v0.15.0 // indirect
101100
golang.org/x/sys v0.33.0 // indirect
102101
golang.org/x/term v0.32.0 // indirect
103-
golang.org/x/text v0.25.0 // indirect
102+
golang.org/x/text v0.26.0 // indirect
104103
golang.org/x/time v0.10.0 // indirect
105-
golang.org/x/tools v0.33.0 // indirect
104+
golang.org/x/tools v0.34.0 // indirect
106105
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
107106
google.golang.org/api v0.198.0 // indirect
108-
google.golang.org/genproto/googleapis/api v0.0.0-20250218202821-56aae31c358a // indirect
109-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
110-
google.golang.org/grpc v1.72.1 // indirect
107+
google.golang.org/genproto/googleapis/api v0.0.0-20250324211829-b45e905df463 // indirect
108+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
109+
google.golang.org/grpc v1.73.0 // indirect
111110
google.golang.org/protobuf v1.36.6 // indirect
112111
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
113112
gopkg.in/inf.v0 v0.9.1 // indirect
114113
gopkg.in/yaml.v2 v2.4.0 // indirect
115114
gopkg.in/yaml.v3 v3.0.1 // indirect
116-
k8s.io/apiextensions-apiserver v0.32.1 // indirect
117-
k8s.io/apiserver v0.32.1 // indirect
118-
k8s.io/code-generator v0.32.2 // indirect
119-
k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9 // indirect
115+
k8s.io/apiextensions-apiserver v0.33.1 // indirect
116+
k8s.io/apiserver v0.33.1 // indirect
117+
k8s.io/code-generator v0.33.1 // indirect
118+
k8s.io/gengo/v2 v2.0.0-20250207200755-1244d31929d7 // indirect
120119
k8s.io/klog/v2 v2.130.1 // indirect
121-
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
120+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
122121
sigs.k8s.io/gateway-api v1.1.0 // indirect
123122
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
124-
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
123+
sigs.k8s.io/randfill v1.0.0 // indirect
124+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
125125
sigs.k8s.io/yaml v1.4.0 // indirect
126126
)

0 commit comments

Comments
 (0)