Skip to content

Commit 81bea20

Browse files
[release-1.19] Upgrade to latest dependencies (#8678)
upgrade to latest dependencies bumping knative.dev/pkg 53ed1d5...4ffdcf6: > 4ffdcf6 upgrade to latest dependencies (# 3241) > 86f88f6 bump some deps (# 3240) > 361ae44 [release-1.19] Fix exporting of OTel metric names via prometheus push (# 3239) bumping sigs.k8s.io/yaml 0f318dc...048d724: > 048d724 Merge pull request # 132 from thockin/master > 23c836c Bolster tests, mostly in error-handling > 2e3340b Add compact output tests > 4a4f539 Add test case for tabs in multi-line strings > 13509ad Change which methods get a newline and fix tests > 59c2c43 Add compact mode so KYAML can be used in more places > abc1add kyaml: Implement escaping closer to YAML spec > 7749171 Add a yamlfmt cmd > a932007 Add KYAML support Signed-off-by: Knative Automation <[email protected]>
1 parent 02445c1 commit 81bea20

File tree

135 files changed

+5665
-955
lines changed

Some content is hidden

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

135 files changed

+5665
-955
lines changed

go.mod

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ require (
3939
go.uber.org/atomic v1.10.0
4040
go.uber.org/multierr v1.11.0
4141
go.uber.org/zap v1.27.0
42-
golang.org/x/net v0.41.0
43-
golang.org/x/sync v0.15.0
44-
k8s.io/api v0.33.1
45-
k8s.io/apiextensions-apiserver v0.33.1
46-
k8s.io/apimachinery v0.33.1
47-
k8s.io/apiserver v0.33.1
48-
k8s.io/client-go v0.33.1
49-
k8s.io/code-generator v0.33.1
42+
golang.org/x/net v0.43.0
43+
golang.org/x/sync v0.16.0
44+
k8s.io/api v0.33.4
45+
k8s.io/apiextensions-apiserver v0.33.4
46+
k8s.io/apimachinery v0.33.4
47+
k8s.io/apiserver v0.33.4
48+
k8s.io/client-go v0.33.4
49+
k8s.io/code-generator v0.33.4
5050
k8s.io/utils v0.0.0-20241210054802-24370beab758
51-
knative.dev/hack v0.0.0-20250708013849-70d4b00da6ba
52-
knative.dev/hack/schema v0.0.0-20250708013849-70d4b00da6ba
53-
knative.dev/pkg v0.0.0-20250817152444-53ed1d53d232
54-
knative.dev/reconciler-test v0.0.0-20250716152301-806fb6ae0da7
51+
knative.dev/hack v0.0.0-20250819212847-f88b7db09b1c
52+
knative.dev/hack/schema v0.0.0-20250819212847-f88b7db09b1c
53+
knative.dev/pkg v0.0.0-20250821143151-4ffdcf6b3fa5
54+
knative.dev/reconciler-test v0.0.0-20250821144151-207031116b7d
5555
sigs.k8s.io/randfill v1.0.0
56-
sigs.k8s.io/yaml v1.5.0
56+
sigs.k8s.io/yaml v1.6.0
5757
)
5858

5959
require (
@@ -79,6 +79,7 @@ require (
7979
github.com/gogo/protobuf v1.3.2 // indirect
8080
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
8181
github.com/google/gnostic-models v0.6.9 // indirect
82+
github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc // indirect
8283
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
8384
github.com/inconshreveable/mousetrap v1.1.0 // indirect
8485
github.com/josharian/intern v1.0.0 // indirect
@@ -88,10 +89,11 @@ require (
8889
github.com/modern-go/reflect2 v1.0.2 // indirect
8990
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
9091
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
91-
github.com/prometheus/client_golang v1.22.0 // indirect
92+
github.com/prometheus/client_golang v1.23.0 // indirect
9293
github.com/prometheus/client_model v0.6.2 // indirect
9394
github.com/prometheus/common v0.65.0 // indirect
94-
github.com/prometheus/procfs v0.16.1 // indirect
95+
github.com/prometheus/otlptranslator v0.0.0-20250717125610-8549f4ab4f8f // indirect
96+
github.com/prometheus/procfs v0.17.0 // indirect
9597
github.com/rickb777/plural v1.2.1 // indirect
9698
github.com/russross/blackfriday/v2 v2.1.0 // indirect
9799
github.com/spf13/cobra v1.8.1 // indirect
@@ -105,24 +107,24 @@ require (
105107
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.37.0 // indirect
106108
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.37.0 // indirect
107109
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.37.0 // indirect
108-
go.opentelemetry.io/otel/exporters/prometheus v0.59.0 // indirect
110+
go.opentelemetry.io/otel/exporters/prometheus v0.59.1 // indirect
109111
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.37.0 // indirect
110112
go.opentelemetry.io/proto/otlp v1.7.0 // indirect
111113
go.uber.org/automaxprocs v1.6.0 // indirect
112114
go.yaml.in/yaml/v2 v2.4.2 // indirect
113-
golang.org/x/crypto v0.39.0 // indirect
114-
golang.org/x/mod v0.25.0 // indirect
115+
golang.org/x/crypto v0.41.0 // indirect
116+
golang.org/x/mod v0.26.0 // indirect
115117
golang.org/x/oauth2 v0.30.0 // indirect
116-
golang.org/x/sys v0.33.0 // indirect
117-
golang.org/x/term v0.32.0 // indirect
118-
golang.org/x/text v0.26.0 // indirect
118+
golang.org/x/sys v0.35.0 // indirect
119+
golang.org/x/term v0.34.0 // indirect
120+
golang.org/x/text v0.28.0 // indirect
119121
golang.org/x/time v0.12.0 // indirect
120-
golang.org/x/tools v0.34.0 // indirect
122+
golang.org/x/tools v0.35.0 // indirect
121123
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
122-
google.golang.org/genproto/googleapis/api v0.0.0-20250603155806-513f23925822 // indirect
123-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
124-
google.golang.org/grpc v1.73.0 // indirect
125-
google.golang.org/protobuf v1.36.6 // indirect
124+
google.golang.org/genproto/googleapis/api v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
125+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect
126+
google.golang.org/grpc v1.75.0 // indirect
127+
google.golang.org/protobuf v1.36.8 // indirect
126128
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
127129
gopkg.in/inf.v0 v0.9.1 // indirect
128130
gopkg.in/yaml.v2 v2.4.0 // indirect

go.sum

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

vendor/github.com/grafana/regexp/.gitignore

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/grafana/regexp/LICENSE

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/grafana/regexp/README.md

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)