Skip to content

Commit c5adbb7

Browse files
chore: resolve open dependabot security alerts (#1954)
## Summary - Resolved 15 open Dependabot security alerts by bumping vulnerable dependencies across Go modules and the playground app - Two alerts (152, 151) for `github.com/docker/docker` were skipped as no patched version is available yet --------- Signed-off-by: Jonathan Norris <jonathan.norris@dynatrace.com>
1 parent 651c7bb commit c5adbb7

9 files changed

Lines changed: 212 additions & 200 deletions

File tree

core/pkg/sync/kubernetes/kubernetes_sync_test.go

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -714,11 +714,16 @@ func TestSync_ReSync(t *testing.T) {
714714
func TestNotify(t *testing.T) {
715715
const name = "myFF"
716716
const ns = "myNS"
717-
s := runtime.NewScheme()
718-
ff := &unstructured.Unstructured{}
719-
cfg := getCFG(name, ns)
720-
ff.SetUnstructuredContent(cfg)
721-
fc := fake.NewSimpleDynamicClient(s, ff)
717+
// Use scheme.Scheme so the fake client knows the list kind for featureflags.
718+
// Do NOT pre-populate the fake client: client-go v0.33+ uses RealFIFO which
719+
// only delivers events via the watch stream, not via the initial List/Replace.
720+
// Pre-populating causes the object to silently land in the store without
721+
// triggering AddFunc, so later UpdateStatus calls are seen as updates on an
722+
// object the informer has never "added" — leaving the test waiting forever.
723+
if err := v1beta1.AddToScheme(scheme.Scheme); err != nil {
724+
t.Fatalf("failed to add v1beta1 to scheme: %v", err)
725+
}
726+
fc := fake.NewSimpleDynamicClient(scheme.Scheme)
722727
l, err := logger.NewZapLogger(zapcore.FatalLevel, "console")
723728
if err != nil {
724729
t.Errorf("Unexpected error: %v", err)
@@ -748,12 +753,11 @@ func TestNotify(t *testing.T) {
748753
if msg.GetEvent().EventType != DefaultEventTypeReady {
749754
t.Errorf("Expected message %v, got %v", DefaultEventTypeReady, msg)
750755
}
751-
// create
752-
cfg["status"] = map[string]interface{}{
753-
"empty": "",
754-
}
756+
// create: explicitly create the object via the watch stream so AddFunc fires
757+
ff := &unstructured.Unstructured{}
758+
cfg := getCFG(name, ns)
755759
ff.SetUnstructuredContent(cfg)
756-
_, err = fc.Resource(featureFlagResource).Namespace(ns).UpdateStatus(context.TODO(), ff, v1.UpdateOptions{})
760+
_, err = fc.Resource(featureFlagResource).Namespace(ns).Create(context.TODO(), ff, v1.CreateOptions{})
757761
if err != nil {
758762
t.Errorf("Unexpected error: %v", err)
759763
}
@@ -766,7 +770,7 @@ func TestNotify(t *testing.T) {
766770
old["resourceVersion"] = "newVersion"
767771
cfg["metadata"] = old
768772
ff.SetUnstructuredContent(cfg)
769-
_, err = fc.Resource(featureFlagResource).Namespace(ns).UpdateStatus(context.TODO(), ff, v1.UpdateOptions{})
773+
_, err = fc.Resource(featureFlagResource).Namespace(ns).Update(context.TODO(), ff, v1.UpdateOptions{})
770774
if err != nil {
771775
t.Errorf("Unexpected error: %v", err)
772776
}
@@ -797,7 +801,7 @@ func TestNotify(t *testing.T) {
797801
"bump": "1",
798802
}
799803
ff.SetUnstructuredContent(cfg)
800-
_, err = fc.Resource(featureFlagResource).Namespace(ns).UpdateStatus(context.TODO(), ff, v1.UpdateOptions{})
804+
_, err = fc.Resource(featureFlagResource).Namespace(ns).Update(context.TODO(), ff, v1.UpdateOptions{})
801805
if err != nil {
802806
t.Errorf("Unexpected error: %v", err)
803807
}

flagd-proxy/tests/loadtest/go.mod

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@ module github.com/open-feature/flagd/flagd-proxy/tests/loadtest
22

33
go 1.25.5
44

5-
toolchain go1.25.5
6-
75
require (
86
buf.build/gen/go/open-feature/flagd/grpc/go v1.6.1-20260217192757-1388a552fc3c.1
97
buf.build/gen/go/open-feature/flagd/protocolbuffers/go v1.36.11-20260217192757-1388a552fc3c.1
10-
google.golang.org/grpc v1.78.0
8+
google.golang.org/grpc v1.79.3
119
)
1210

1311
require (
14-
golang.org/x/net v0.47.0 // indirect
15-
golang.org/x/sys v0.38.0 // indirect
16-
golang.org/x/text v0.31.0 // indirect
17-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda // indirect
12+
golang.org/x/net v0.48.0 // indirect
13+
golang.org/x/sys v0.39.0 // indirect
14+
golang.org/x/text v0.32.0 // indirect
15+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
1816
google.golang.org/protobuf v1.36.11 // indirect
1917
)

flagd-proxy/tests/loadtest/go.sum

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ buf.build/gen/go/open-feature/flagd/grpc/go v1.6.1-20260217192757-1388a552fc3c.1
22
buf.build/gen/go/open-feature/flagd/grpc/go v1.6.1-20260217192757-1388a552fc3c.1/go.mod h1:uCFRckBTXlZTJczpxd0j8qhQfLIWT8ds/3PlURS54wI=
33
buf.build/gen/go/open-feature/flagd/protocolbuffers/go v1.36.11-20260217192757-1388a552fc3c.1 h1:vzILwV5p1s2kk4FuaaYNqKPSdivPqyaDsjtQi2qSRuc=
44
buf.build/gen/go/open-feature/flagd/protocolbuffers/go v1.36.11-20260217192757-1388a552fc3c.1/go.mod h1:itSRQViN+Mq9URSJbXJRlAT9irP54/x5n5sHn9NTKrU=
5+
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
6+
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
57
github.com/go-logr/logr v1.4.3 h1:CjnDlHq8ikf6E492q6eKboGOC0T8CDaOvkHCIg8idEI=
68
github.com/go-logr/logr v1.4.3/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
79
github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=
@@ -14,27 +16,27 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
1416
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
1517
go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64=
1618
go.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y=
17-
go.opentelemetry.io/otel v1.38.0 h1:RkfdswUDRimDg0m2Az18RKOsnI8UDzppJAtj01/Ymk8=
18-
go.opentelemetry.io/otel v1.38.0/go.mod h1:zcmtmQ1+YmQM9wrNsTGV/q/uyusom3P8RxwExxkZhjM=
19-
go.opentelemetry.io/otel/metric v1.38.0 h1:Kl6lzIYGAh5M159u9NgiRkmoMKjvbsKtYRwgfrA6WpA=
20-
go.opentelemetry.io/otel/metric v1.38.0/go.mod h1:kB5n/QoRM8YwmUahxvI3bO34eVtQf2i4utNVLr9gEmI=
21-
go.opentelemetry.io/otel/sdk v1.38.0 h1:l48sr5YbNf2hpCUj/FoGhW9yDkl+Ma+LrVl8qaM5b+E=
22-
go.opentelemetry.io/otel/sdk v1.38.0/go.mod h1:ghmNdGlVemJI3+ZB5iDEuk4bWA3GkTpW+DOoZMYBVVg=
23-
go.opentelemetry.io/otel/sdk/metric v1.38.0 h1:aSH66iL0aZqo//xXzQLYozmWrXxyFkBJ6qT5wthqPoM=
24-
go.opentelemetry.io/otel/sdk/metric v1.38.0/go.mod h1:dg9PBnW9XdQ1Hd6ZnRz689CbtrUp0wMMs9iPcgT9EZA=
25-
go.opentelemetry.io/otel/trace v1.38.0 h1:Fxk5bKrDZJUH+AMyyIXGcFAPah0oRcT+LuNtJrmcNLE=
26-
go.opentelemetry.io/otel/trace v1.38.0/go.mod h1:j1P9ivuFsTceSWe1oY+EeW3sc+Pp42sO++GHkg4wwhs=
27-
golang.org/x/net v0.47.0 h1:Mx+4dIFzqraBXUugkia1OOvlD6LemFo1ALMHjrXDOhY=
28-
golang.org/x/net v0.47.0/go.mod h1:/jNxtkgq5yWUGYkaZGqo27cfGZ1c5Nen03aYrrKpVRU=
29-
golang.org/x/sys v0.38.0 h1:3yZWxaJjBmCWXqhN1qh02AkOnCQ1poK6oF+a7xWL6Gc=
30-
golang.org/x/sys v0.38.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
31-
golang.org/x/text v0.31.0 h1:aC8ghyu4JhP8VojJ2lEHBnochRno1sgL6nEi9WGFGMM=
32-
golang.org/x/text v0.31.0/go.mod h1:tKRAlv61yKIjGGHX/4tP1LTbc13YSec1pxVEWXzfoeM=
19+
go.opentelemetry.io/otel v1.39.0 h1:8yPrr/S0ND9QEfTfdP9V+SiwT4E0G7Y5MO7p85nis48=
20+
go.opentelemetry.io/otel v1.39.0/go.mod h1:kLlFTywNWrFyEdH0oj2xK0bFYZtHRYUdv1NklR/tgc8=
21+
go.opentelemetry.io/otel/metric v1.39.0 h1:d1UzonvEZriVfpNKEVmHXbdf909uGTOQjA0HF0Ls5Q0=
22+
go.opentelemetry.io/otel/metric v1.39.0/go.mod h1:jrZSWL33sD7bBxg1xjrqyDjnuzTUB0x1nBERXd7Ftcs=
23+
go.opentelemetry.io/otel/sdk v1.39.0 h1:nMLYcjVsvdui1B/4FRkwjzoRVsMK8uL/cj0OyhKzt18=
24+
go.opentelemetry.io/otel/sdk v1.39.0/go.mod h1:vDojkC4/jsTJsE+kh+LXYQlbL8CgrEcwmt1ENZszdJE=
25+
go.opentelemetry.io/otel/sdk/metric v1.39.0 h1:cXMVVFVgsIf2YL6QkRF4Urbr/aMInf+2WKg+sEJTtB8=
26+
go.opentelemetry.io/otel/sdk/metric v1.39.0/go.mod h1:xq9HEVH7qeX69/JnwEfp6fVq5wosJsY1mt4lLfYdVew=
27+
go.opentelemetry.io/otel/trace v1.39.0 h1:2d2vfpEDmCJ5zVYz7ijaJdOF59xLomrvj7bjt6/qCJI=
28+
go.opentelemetry.io/otel/trace v1.39.0/go.mod h1:88w4/PnZSazkGzz/w84VHpQafiU4EtqqlVdxWy+rNOA=
29+
golang.org/x/net v0.48.0 h1:zyQRTTrjc33Lhh0fBgT/H3oZq9WuvRR5gPC70xpDiQU=
30+
golang.org/x/net v0.48.0/go.mod h1:+ndRgGjkh8FGtu1w1FGbEC31if4VrNVMuKTgcAAnQRY=
31+
golang.org/x/sys v0.39.0 h1:CvCKL8MeisomCi6qNZ+wbb0DN9E5AATixKsvNtMoMFk=
32+
golang.org/x/sys v0.39.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
33+
golang.org/x/text v0.32.0 h1:ZD01bjUt1FQ9WJ0ClOL5vxgxOI/sVCNgX1YtKwcY0mU=
34+
golang.org/x/text v0.32.0/go.mod h1:o/rUWzghvpD5TXrTIBuJU77MTaN0ljMWE47kxGJQ7jY=
3335
gonum.org/v1/gonum v0.16.0 h1:5+ul4Swaf3ESvrOnidPp4GZbzf0mxVQpDCYUQE7OJfk=
3436
gonum.org/v1/gonum v0.16.0/go.mod h1:fef3am4MQ93R2HHpKnLk4/Tbh/s0+wqD5nfa6Pnwy4E=
35-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda h1:i/Q+bfisr7gq6feoJnS/DlpdwEL4ihp41fvRiM3Ork0=
36-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk=
37-
google.golang.org/grpc v1.78.0 h1:K1XZG/yGDJnzMdd/uZHAkVqJE+xIDOcmdSFZkBUicNc=
38-
google.golang.org/grpc v1.78.0/go.mod h1:I47qjTo4OKbMkjA/aOOwxDIiPSBofUtQUI5EfpWvW7U=
37+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 h1:gRkg/vSppuSQoDjxyiGfN4Upv/h/DQmIR10ZU8dh4Ww=
38+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk=
39+
google.golang.org/grpc v1.79.3 h1:sybAEdRIEtvcD68Gx7dmnwjZKlyfuc61Dyo9pGXXkKE=
40+
google.golang.org/grpc v1.79.3/go.mod h1:KmT0Kjez+0dde/v2j9vzwoAScgEPx/Bw1CYChhHLrHQ=
3941
google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE=
4042
google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=

playground-app/package-lock.json

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

playground-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
"eslint-plugin-react-hooks": "^5.1.0",
2929
"eslint-plugin-react-refresh": "^0.4.16",
3030
"typescript": "^5.7.2",
31-
"vite": "^6.0.7"
31+
"vite": "^6.4.2"
3232
}
3333
}

test/integration/go.mod

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module integration_test
44
go 1.25.5
55

66
require (
7-
github.com/go-git/go-git/v5 v5.16.2
7+
github.com/go-git/go-git/v5 v5.18.0
88
github.com/open-feature/go-sdk-contrib/providers/flagd v0.4.0
99
github.com/open-feature/go-sdk-contrib/tests/flagd/v2 v2.0.2
1010
github.com/testcontainers/testcontainers-go v0.41.0
@@ -27,7 +27,7 @@ require (
2727
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2828
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
2929
github.com/cespare/xxhash/v2 v2.3.0 // indirect
30-
github.com/cloudflare/circl v1.6.1 // indirect
30+
github.com/cloudflare/circl v1.6.3 // indirect
3131
github.com/compose-spec/compose-go/v2 v2.10.1 // indirect
3232
github.com/containerd/console v1.0.5 // indirect
3333
github.com/containerd/containerd/api v1.10.0 // indirect
@@ -62,7 +62,7 @@ require (
6262
github.com/fsnotify/fsnotify v1.9.0 // indirect
6363
github.com/fvbommel/sortorder v1.1.0 // indirect
6464
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
65-
github.com/go-git/go-billy/v5 v5.6.2 // indirect
65+
github.com/go-git/go-billy/v5 v5.8.0 // indirect
6666
github.com/go-logr/logr v1.4.3 // indirect
6767
github.com/go-logr/stdr v1.2.2 // indirect
6868
github.com/go-ole/go-ole v1.2.6 // indirect
@@ -84,25 +84,26 @@ require (
8484
github.com/hashicorp/go-version v1.8.0 // indirect
8585
github.com/hashicorp/golang-lru v1.0.2 // indirect
8686
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
87-
github.com/in-toto/in-toto-golang v0.9.0 // indirect
87+
github.com/in-toto/attestation v1.1.2 // indirect
88+
github.com/in-toto/in-toto-golang v0.10.0 // indirect
8889
github.com/inconshreveable/mousetrap v1.1.0 // indirect
8990
github.com/inhies/go-bytesize v0.0.0-20220417184213-4913239db9cf // indirect
9091
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
9192
github.com/jonboulle/clockwork v0.5.0 // indirect
9293
github.com/kevinburke/ssh_config v1.2.0 // indirect
93-
github.com/klauspost/compress v1.18.3 // indirect
94+
github.com/klauspost/compress v1.18.4 // indirect
9495
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
9596
github.com/magiconair/properties v1.8.10 // indirect
9697
github.com/mattn/go-runewidth v0.0.16 // indirect
9798
github.com/mattn/go-shellwords v1.0.12 // indirect
9899
github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect
99-
github.com/moby/buildkit v0.27.1 // indirect
100+
github.com/moby/buildkit v0.28.1 // indirect
100101
github.com/moby/docker-image-spec v1.3.1 // indirect
101102
github.com/moby/go-archive v0.2.0 // indirect
102103
github.com/moby/locker v1.0.1 // indirect
103104
github.com/moby/moby/api v1.53.0 // indirect
104105
github.com/moby/moby/client v0.2.2 // indirect
105-
github.com/moby/patternmatcher v0.6.0 // indirect
106+
github.com/moby/patternmatcher v0.6.1 // indirect
106107
github.com/moby/sys/atomicwriter v0.1.0 // indirect
107108
github.com/moby/sys/capability v0.4.0 // indirect
108109
github.com/moby/sys/sequential v0.6.0 // indirect
@@ -119,19 +120,20 @@ require (
119120
github.com/opencontainers/go-digest v1.0.0 // indirect
120121
github.com/opencontainers/image-spec v1.1.1 // indirect
121122
github.com/pelletier/go-toml v1.9.5 // indirect
123+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
122124
github.com/pjbgf/sha1cd v0.3.2 // indirect
123125
github.com/pkg/errors v0.9.1 // indirect
124126
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
125127
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
126128
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
127129
github.com/rivo/uniseg v0.4.7 // indirect
128130
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
129-
github.com/secure-systems-lab/go-securesystemslib v0.9.1 // indirect
131+
github.com/secure-systems-lab/go-securesystemslib v0.10.0 // indirect
130132
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
131133
github.com/shibumi/go-pathspec v1.3.0 // indirect
132134
github.com/shirou/gopsutil/v4 v4.26.2 // indirect
133135
github.com/sigstore/sigstore v1.10.4 // indirect
134-
github.com/sigstore/sigstore-go v1.1.4-0.20251124094504-b5fe07a5a7d7 // indirect
136+
github.com/sigstore/sigstore-go v1.1.4 // indirect
135137
github.com/sirupsen/logrus v1.9.4 // indirect
136138
github.com/skeema/knownhosts v1.3.1 // indirect
137139
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 // indirect
@@ -155,34 +157,34 @@ require (
155157
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0 // indirect
156158
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.63.0 // indirect
157159
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 // indirect
158-
go.opentelemetry.io/otel v1.41.0 // indirect
160+
go.opentelemetry.io/otel v1.43.0 // indirect
159161
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.38.0 // indirect
160-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.38.0 // indirect
161-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.41.0 // indirect
162+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.43.0 // indirect
163+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0 // indirect
162164
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.38.0 // indirect
163-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.41.0 // indirect
164-
go.opentelemetry.io/otel/metric v1.41.0 // indirect
165-
go.opentelemetry.io/otel/sdk v1.41.0 // indirect
166-
go.opentelemetry.io/otel/sdk/metric v1.41.0 // indirect
167-
go.opentelemetry.io/otel/trace v1.41.0 // indirect
168-
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
165+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0 // indirect
166+
go.opentelemetry.io/otel/metric v1.43.0 // indirect
167+
go.opentelemetry.io/otel/sdk v1.43.0 // indirect
168+
go.opentelemetry.io/otel/sdk/metric v1.43.0 // indirect
169+
go.opentelemetry.io/otel/trace v1.43.0 // indirect
170+
go.opentelemetry.io/proto/otlp v1.10.0 // indirect
169171
go.uber.org/mock v0.6.0 // indirect
170172
go.uber.org/multierr v1.11.0 // indirect
171173
go.uber.org/zap v1.27.0 // indirect
172174
go.yaml.in/yaml/v3 v3.0.4 // indirect
173175
go.yaml.in/yaml/v4 v4.0.0-rc.4 // indirect
174-
golang.org/x/crypto v0.48.0 // indirect
176+
golang.org/x/crypto v0.49.0 // indirect
175177
golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect
176-
golang.org/x/mod v0.32.0 // indirect
177-
golang.org/x/net v0.51.0 // indirect
178-
golang.org/x/sync v0.19.0 // indirect
179-
golang.org/x/sys v0.41.0 // indirect
180-
golang.org/x/term v0.40.0 // indirect
181-
golang.org/x/text v0.34.0 // indirect
178+
golang.org/x/mod v0.33.0 // indirect
179+
golang.org/x/net v0.52.0 // indirect
180+
golang.org/x/sync v0.20.0 // indirect
181+
golang.org/x/sys v0.42.0 // indirect
182+
golang.org/x/term v0.41.0 // indirect
183+
golang.org/x/text v0.35.0 // indirect
182184
golang.org/x/time v0.14.0 // indirect
183-
google.golang.org/genproto/googleapis/api v0.0.0-20260209200024-4cfbd4190f57 // indirect
184-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57 // indirect
185-
google.golang.org/grpc v1.79.1 // indirect
185+
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect
186+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
187+
google.golang.org/grpc v1.80.0 // indirect
186188
google.golang.org/protobuf v1.36.11 // indirect
187189
gopkg.in/ini.v1 v1.67.0 // indirect
188190
gopkg.in/warnings.v0 v0.1.2 // indirect

0 commit comments

Comments
 (0)