Skip to content

Commit 2f625f3

Browse files
upgrade to latest dependencies
bumping knative.dev/pkg 7681e80...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) Signed-off-by: Knative Automation <automation@knative.team>
1 parent b850b55 commit 2f625f3

File tree

725 files changed

+46627
-119086
lines changed

Some content is hidden

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

725 files changed

+46627
-119086
lines changed

go.mod

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,23 @@ require (
1111
k8s.io/code-generator v0.33.1
1212
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff
1313
knative.dev/hack v0.0.0-20250514121446-f525e187efdc
14-
knative.dev/pkg v0.0.0-20250627005806-7681e80bae5f
14+
knative.dev/pkg v0.0.0-20250707154506-3eb1089fec09
1515
)
1616

1717
require (
18-
contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
19-
contrib.go.opencensus.io/exporter/prometheus v0.4.2 // indirect
20-
github.com/beorn7/perks v1.0.1 // indirect
2118
github.com/blendle/zapdriver v1.3.1 // indirect
22-
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
23-
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2419
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2520
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
2621
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
2722
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
28-
github.com/go-kit/log v0.2.1 // indirect
29-
github.com/go-logfmt/logfmt v0.5.1 // indirect
3023
github.com/go-logr/logr v1.4.3 // indirect
24+
github.com/go-logr/stdr v1.2.2 // indirect
3125
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3226
github.com/go-openapi/jsonreference v0.21.0 // indirect
3327
github.com/go-openapi/swag v0.23.0 // indirect
3428
github.com/gogo/protobuf v1.3.2 // indirect
35-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
36-
github.com/golang/protobuf v1.5.4 // indirect
3729
github.com/google/gnostic-models v0.6.9 // indirect
3830
github.com/google/uuid v1.6.0 // indirect
39-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
4031
github.com/hashicorp/golang-lru v1.0.2 // indirect
4132
github.com/josharian/intern v1.0.0 // indirect
4233
github.com/json-iterator/go v1.1.12 // indirect
@@ -46,14 +37,12 @@ require (
4637
github.com/modern-go/reflect2 v1.0.2 // indirect
4738
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4839
github.com/pkg/errors v0.9.1 // indirect
49-
github.com/prometheus/client_golang v1.22.0 // indirect
50-
github.com/prometheus/client_model v0.6.2 // indirect
51-
github.com/prometheus/common v0.65.0 // indirect
52-
github.com/prometheus/procfs v0.16.1 // indirect
53-
github.com/prometheus/statsd_exporter v0.22.7 // indirect
5440
github.com/spf13/pflag v1.0.6 // indirect
5541
github.com/x448/float16 v0.8.4 // indirect
56-
go.opencensus.io v0.24.0 // indirect
42+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
43+
go.opentelemetry.io/otel v1.37.0 // indirect
44+
go.opentelemetry.io/otel/metric v1.37.0 // indirect
45+
go.opentelemetry.io/otel/trace v1.37.0 // indirect
5746
go.uber.org/multierr v1.11.0 // indirect
5847
go.yaml.in/yaml/v2 v2.4.2 // indirect
5948
golang.org/x/mod v0.25.0 // indirect
@@ -66,14 +55,9 @@ require (
6655
golang.org/x/time v0.10.0 // indirect
6756
golang.org/x/tools v0.34.0 // indirect
6857
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
69-
google.golang.org/api v0.183.0 // indirect
70-
google.golang.org/genproto/googleapis/api v0.0.0-20250603155806-513f23925822 // indirect
71-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
72-
google.golang.org/grpc v1.73.0 // indirect
7358
google.golang.org/protobuf v1.36.6 // indirect
7459
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
7560
gopkg.in/inf.v0 v0.9.1 // indirect
76-
gopkg.in/yaml.v2 v2.4.0 // indirect
7761
gopkg.in/yaml.v3 v3.0.1 // indirect
7862
k8s.io/gengo/v2 v2.0.0-20250207200755-1244d31929d7 // indirect
7963
k8s.io/klog/v2 v2.130.1 // indirect

go.sum

Lines changed: 3 additions & 504 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)