Skip to content

Commit 8aa23c3

Browse files
upgrade to latest dependencies
bumping knative.dev/pkg 5e2512c...3eb1089: > 3eb1089 [webhook] enrich webhook traces (# 3209) > 16de760 split off pprof server that accepts a configmap (# 3210) > ff153ad [controller/observability] adjust metrics reporting for the two lane queue (# 3206) > fdc3131 pass options to the TracerProvider constructor (# 3208) > d601f66 allow for stdout exporter for tracing - to allow for debugging (# 3207) > e959f44 [controller] OTel instrumentation (# 3201) > f478764 [webhook] OTel changes (# 3189) > 7a5377f Drop OpenCensus use in various test packages (# 3202) > 9f3f014 wire zap into the client-go logger (# 3205) > 9435aa6 [observability/resource] fix service name calculation (# 3204) > 68cdb02 shutdown must be called explicitly since pprof listen is part of the errgroup (# 3203) > 13b2dc9 [observability] Default missing endpoint scheme to HTTPS (# 3200) > 434d221 When shutting down the OTel providers have a ten second timeout. (# 3199) > 8481e7e parse the endpoint as a URL to allow paths (# 3197) > 7681e80 handle no views in the context (# 3196) > 5abfb10 [injection/sharedmain] OTel Support (# 3190) Signed-off-by: Knative Automation <automation@knative.team>
1 parent efc53e4 commit 8aa23c3

File tree

624 files changed

+56923
-80873
lines changed

Some content is hidden

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

624 files changed

+56923
-80873
lines changed

go.mod

Lines changed: 8 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,32 +17,24 @@ require (
1717
k8s.io/code-generator v0.33.1
1818
k8s.io/utils v0.0.0-20241210054802-24370beab758
1919
knative.dev/hack v0.0.0-20250514121446-f525e187efdc
20-
knative.dev/pkg v0.0.0-20250626040505-5e2512c7127f
20+
knative.dev/pkg v0.0.0-20250707154506-3eb1089fec09
2121
sigs.k8s.io/yaml v1.5.0
2222
)
2323

2424
require (
25-
contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
26-
contrib.go.opencensus.io/exporter/prometheus v0.4.2 // indirect
27-
github.com/beorn7/perks v1.0.1 // indirect
2825
github.com/blendle/zapdriver v1.3.1 // indirect
29-
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
30-
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3126
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3227
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
3328
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
29+
github.com/felixge/httpsnoop v1.0.4 // indirect
3430
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
35-
github.com/go-kit/log v0.2.1 // indirect
36-
github.com/go-logfmt/logfmt v0.5.1 // indirect
3731
github.com/go-logr/logr v1.4.3 // indirect
32+
github.com/go-logr/stdr v1.2.2 // indirect
3833
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3934
github.com/go-openapi/jsonreference v0.21.0 // indirect
4035
github.com/go-openapi/swag v0.23.0 // indirect
41-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
42-
github.com/golang/protobuf v1.5.4 // indirect
4336
github.com/google/gnostic-models v0.6.9 // indirect
4437
github.com/google/uuid v1.6.0 // indirect
45-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
4638
github.com/hashicorp/golang-lru v1.0.2 // indirect
4739
github.com/josharian/intern v1.0.0 // indirect
4840
github.com/json-iterator/go v1.1.12 // indirect
@@ -51,16 +43,14 @@ require (
5143
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5244
github.com/modern-go/reflect2 v1.0.2 // indirect
5345
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
54-
github.com/openzipkin/zipkin-go v0.4.3 // indirect
5546
github.com/pkg/errors v0.9.1 // indirect
56-
github.com/prometheus/client_golang v1.22.0 // indirect
57-
github.com/prometheus/client_model v0.6.2 // indirect
58-
github.com/prometheus/common v0.65.0 // indirect
59-
github.com/prometheus/procfs v0.16.1 // indirect
60-
github.com/prometheus/statsd_exporter v0.22.7 // indirect
6147
github.com/spf13/pflag v1.0.6 // indirect
6248
github.com/x448/float16 v0.8.4 // indirect
63-
go.opencensus.io v0.24.0 // indirect
49+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
50+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.62.0 // indirect
51+
go.opentelemetry.io/otel v1.37.0 // indirect
52+
go.opentelemetry.io/otel/metric v1.37.0 // indirect
53+
go.opentelemetry.io/otel/trace v1.37.0 // indirect
6454
go.uber.org/multierr v1.11.0 // indirect
6555
go.yaml.in/yaml/v2 v2.4.2 // indirect
6656
golang.org/x/mod v0.25.0 // indirect
@@ -71,13 +61,10 @@ require (
7161
golang.org/x/text v0.26.0 // indirect
7262
golang.org/x/tools v0.34.0 // indirect
7363
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
74-
google.golang.org/api v0.183.0 // indirect
75-
google.golang.org/genproto/googleapis/api v0.0.0-20250603155806-513f23925822 // indirect
7664
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
7765
google.golang.org/protobuf v1.36.6 // indirect
7866
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
7967
gopkg.in/inf.v0 v0.9.1 // indirect
80-
gopkg.in/yaml.v2 v2.4.0 // indirect
8168
gopkg.in/yaml.v3 v3.0.1 // indirect
8269
k8s.io/gengo/v2 v2.0.0-20250207200755-1244d31929d7 // indirect
8370
k8s.io/klog/v2 v2.130.1 // indirect

go.sum

Lines changed: 7 additions & 501 deletions
Large diffs are not rendered by default.

vendor/contrib.go.opencensus.io/exporter/ocagent/.gitignore

Lines changed: 0 additions & 17 deletions
This file was deleted.

vendor/contrib.go.opencensus.io/exporter/ocagent/.travis.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

vendor/contrib.go.opencensus.io/exporter/ocagent/CONTRIBUTING.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

vendor/contrib.go.opencensus.io/exporter/ocagent/README.md

Lines changed: 0 additions & 61 deletions
This file was deleted.

vendor/contrib.go.opencensus.io/exporter/ocagent/common.go

Lines changed: 0 additions & 38 deletions
This file was deleted.

vendor/contrib.go.opencensus.io/exporter/ocagent/connection.go

Lines changed: 0 additions & 113 deletions
This file was deleted.

vendor/contrib.go.opencensus.io/exporter/ocagent/nodeinfo.go

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)