Skip to content

Commit 63c94dc

Browse files
build(deps): update go dependencies
| datasource | package | from | to | | ---------- | --------------------------------------------------------------- | -------- | -------- | | go | cuelang.org/go | v0.11.0 | v0.16.0 | | go | github.com/getkin/kin-openapi | v0.133.0 | v0.134.0 | | go | github.com/grafana/cog | v0.0.57 | v0.1.4 | | go | github.com/grafana/grafana-app-sdk | v0.49.0 | v0.52.0 | | go | github.com/grafana/grafana-app-sdk/logging | v0.50.4 | v0.52.0 | | go | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc | v1.40.0 | v1.42.0 | | go | go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp | v1.40.0 | v1.42.0 | | go | go.opentelemetry.io/otel/sdk | v1.40.0 | v1.42.0 | | go | golang.org/x/sync | v0.19.0 | v0.20.0 | | go | golang.org/x/tools | v0.42.0 | v0.43.0 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
1 parent b67650b commit 63c94dc

File tree

4 files changed

+92
-78
lines changed

4 files changed

+92
-78
lines changed

examples/apiserver/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.25.0
55
replace github.com/grafana/grafana-app-sdk => ../../
66

77
require (
8-
github.com/grafana/grafana-app-sdk v0.49.0
9-
github.com/grafana/grafana-app-sdk/logging v0.50.4
8+
github.com/grafana/grafana-app-sdk v0.52.0
9+
github.com/grafana/grafana-app-sdk/logging v0.52.0
1010
k8s.io/apimachinery v0.35.3
1111
k8s.io/apiserver v0.35.1
1212
k8s.io/client-go v0.35.3

examples/apiserver/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
105105
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
106106
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 h1:JeSE6pjso5THxAzdVpqr6/geYxZytqFMBCOtn/ujyeo=
107107
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674/go.mod h1:r4w70xmWCQKmi1ONH4KIaBptdivuRPyosB9RmPlGEwA=
108-
github.com/grafana/grafana-app-sdk/logging v0.50.4 h1:ACIqNOZkBT2WyVfNpdWo5og0rI4EHZNH16KHJ1BWX+E=
109-
github.com/grafana/grafana-app-sdk/logging v0.50.4/go.mod h1:RKAy6LaGkWcnmyq3JW+9C4v7TEicBXYllH8vtjsLnJk=
108+
github.com/grafana/grafana-app-sdk/logging v0.52.0 h1:dY9LfAgdePAyfsHZ8bGHRV/TXdu3WuUKhqbLxcWmCGQ=
109+
github.com/grafana/grafana-app-sdk/logging v0.52.0/go.mod h1:nC9fLZHZPZFSbGF135ucVbOkMymBB23grTK6uKiNyJo=
110110
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.1.0 h1:QGLs/O40yoNK9vmy4rhUGBVyMf1lISBGtXRpsu/Qu/o=
111111
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.1.0/go.mod h1:hM2alZsMUni80N33RBe6J0e423LB+odMj7d3EMP9l20=
112112
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.3 h1:B+8ClL/kCQkRiU82d9xajRPKYMrB7E0MbtzWVi1K4ns=

go.mod

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ retract (
1010
)
1111

1212
require (
13-
cuelang.org/go v0.11.0
13+
cuelang.org/go v0.16.0
1414
github.com/bradfitz/gomemcache v0.0.0-20250403215159-8d39553ac7cf
1515
github.com/cespare/xxhash/v2 v2.3.0
1616
github.com/emicklei/go-restful/v3 v3.13.0
17-
github.com/getkin/kin-openapi v0.133.0
17+
github.com/getkin/kin-openapi v0.134.0
1818
github.com/grafana/codejen v0.0.4-0.20250428224353-8764ced07770
19-
github.com/grafana/cog v0.0.57
20-
github.com/grafana/grafana-app-sdk/logging v0.50.4
19+
github.com/grafana/cog v0.1.4
20+
github.com/grafana/grafana-app-sdk/logging v0.52.0
2121
github.com/hashicorp/go-multierror v1.1.1
2222
github.com/prometheus/client_golang v1.23.2
2323
github.com/prometheus/client_model v0.6.2
@@ -26,13 +26,13 @@ require (
2626
github.com/spf13/pflag v1.0.10
2727
github.com/stretchr/testify v1.11.1
2828
go.opentelemetry.io/otel v1.42.0
29-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.40.0
30-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.40.0
31-
go.opentelemetry.io/otel/sdk v1.40.0
29+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.42.0
30+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.42.0
31+
go.opentelemetry.io/otel/sdk v1.42.0
3232
go.opentelemetry.io/otel/trace v1.42.0
3333
go.uber.org/goleak v1.3.0
34-
golang.org/x/sync v0.19.0
35-
golang.org/x/tools v0.42.0
34+
golang.org/x/sync v0.20.0
35+
golang.org/x/tools v0.43.0
3636
gomodules.xyz/jsonpatch/v2 v2.5.0
3737
google.golang.org/grpc v1.79.3
3838
gopkg.in/yaml.v3 v3.0.1
@@ -61,7 +61,8 @@ require (
6161
github.com/coreos/go-semver v0.3.1 // indirect
6262
github.com/coreos/go-systemd/v22 v22.6.0 // indirect
6363
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
64-
github.com/emicklei/proto v1.14.2 // indirect
64+
github.com/emicklei/proto v1.14.3 // indirect
65+
github.com/fatih/color v1.18.0 // indirect
6566
github.com/felixge/httpsnoop v1.0.4 // indirect
6667
github.com/fsnotify/fsnotify v1.9.0 // indirect
6768
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
@@ -92,7 +93,7 @@ require (
9293
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.1.0 // indirect
9394
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.3 // indirect
9495
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
95-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7 // indirect
96+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
9697
github.com/hashicorp/errwrap v1.1.0 // indirect
9798
github.com/huandu/xstrings v1.5.0 // indirect
9899
github.com/inconshreveable/mousetrap v1.1.0 // indirect
@@ -101,23 +102,25 @@ require (
101102
github.com/klauspost/compress v1.18.2 // indirect
102103
github.com/kylelemons/godebug v1.1.0 // indirect
103104
github.com/mailru/easyjson v0.9.1 // indirect
105+
github.com/mattn/go-colorable v0.1.13 // indirect
106+
github.com/mattn/go-isatty v0.0.20 // indirect
104107
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
105108
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
106109
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
107110
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
108111
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
109-
github.com/oasdiff/yaml v0.0.0-20250309154309-f31be36b4037 // indirect
110-
github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90 // indirect
112+
github.com/oasdiff/yaml v0.0.0-20260313112342-a3ea61cb4d4c // indirect
113+
github.com/oasdiff/yaml3 v0.0.0-20260224194419-61cd415a242b // indirect
111114
github.com/opencontainers/go-digest v1.0.0 // indirect
112115
github.com/opencontainers/image-spec v1.1.1 // indirect
113116
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
114117
github.com/perimeterx/marshmallow v1.1.5 // indirect
115118
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
116119
github.com/prometheus/common v0.67.5 // indirect
117120
github.com/prometheus/procfs v0.19.2 // indirect
118-
github.com/protocolbuffers/txtpbfmt v0.0.0-20251124094003-fcb97cc64c7b // indirect
121+
github.com/protocolbuffers/txtpbfmt v0.0.0-20260217160748-a481f6a22f94 // indirect
119122
github.com/rogpeppe/go-internal v1.14.1 // indirect
120-
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 // indirect
123+
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
121124
github.com/stoewer/go-strcase v1.3.1 // indirect
122125
github.com/stretchr/objx v0.5.2 // indirect
123126
github.com/ugorji/go/codec v1.2.11 // indirect
@@ -130,24 +133,24 @@ require (
130133
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
131134
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.65.0 // indirect
132135
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0 // indirect
133-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0 // indirect
136+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.42.0 // indirect
134137
go.opentelemetry.io/otel/metric v1.42.0 // indirect
135138
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
136139
go.uber.org/multierr v1.11.0 // indirect
137140
go.uber.org/zap v1.27.1 // indirect
138141
go.yaml.in/yaml/v2 v2.4.3 // indirect
139142
go.yaml.in/yaml/v3 v3.0.4 // indirect
140-
golang.org/x/crypto v0.48.0 // indirect
143+
golang.org/x/crypto v0.49.0 // indirect
141144
golang.org/x/exp v0.0.0-20251209150349-8475f28825e9 // indirect
142-
golang.org/x/mod v0.33.0 // indirect
143-
golang.org/x/net v0.51.0 // indirect
145+
golang.org/x/mod v0.34.0 // indirect
146+
golang.org/x/net v0.52.0 // indirect
144147
golang.org/x/oauth2 v0.35.0 // indirect
145-
golang.org/x/sys v0.41.0 // indirect
146-
golang.org/x/term v0.40.0 // indirect
147-
golang.org/x/text v0.34.0 // indirect
148+
golang.org/x/sys v0.42.0 // indirect
149+
golang.org/x/term v0.41.0 // indirect
150+
golang.org/x/text v0.35.0 // indirect
148151
golang.org/x/time v0.14.0 // indirect
149-
google.golang.org/genproto/googleapis/api v0.0.0-20260128011058-8636f8732409 // indirect
150-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 // indirect
152+
google.golang.org/genproto/googleapis/api v0.0.0-20260209200024-4cfbd4190f57 // indirect
153+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57 // indirect
151154
google.golang.org/protobuf v1.36.11 // indirect
152155
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
153156
gopkg.in/inf.v0 v0.9.1 // indirect

0 commit comments

Comments
 (0)