Skip to content

Commit ab63191

Browse files
committed
prep for 1.7.2
1 parent 7bc1d65 commit ab63191

6 files changed

Lines changed: 185 additions & 183 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
## 1.7.2 (2026-08-17)
3+
* Update dependencies to address security vulnerabilities flagged by the Grafana plugin review: js-yaml (CVE-2026-59869) and nanoid (CVE-2026-67213) in the frontend build toolchain
4+
* Upgrade the Grafana Go plugin SDK from v0.290.0 to v0.296.2
5+
26
## 1.7.1 (2026-08-17)
37
* Add **Get trace project from the query** option to the Logs to traces settings (`logsToTraces.projectIdFromQuery`). When enabled, "View trace" links use the project of the query that produced the log entry (falling back to the default project) instead of the project embedded in the entry's `trace` path — for setups where logs are routed through a central logging project that stamps its own ID into the trace path. The setting is preserved when the trace data source is changed or cleared
48
* Fix "View trace" links under GCE authentication intermittently missing for entries whose `trace` label is not a canonical resource path: the auto-detected default project is now resolved whenever a trace data source is configured (concurrently with the query), shared across simultaneous queries, and no longer re-fetched before every query after a failed lookup

go.mod

Lines changed: 46 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
module github.com/GoogleCloudPlatform/cloud-logging-data-source-plugin
22

3-
go 1.25.7
3+
go 1.26.5
44

55
require (
66
cloud.google.com/go/logging v1.13.0
77
cloud.google.com/go/resourcemanager v1.10.7
88
github.com/grafana/grafana-google-sdk-go v0.4.2
9-
github.com/grafana/grafana-plugin-sdk-go v0.290.0
9+
github.com/grafana/grafana-plugin-sdk-go v0.296.2
1010
github.com/stretchr/testify v1.11.1
1111
golang.org/x/oauth2 v0.36.0
1212
google.golang.org/api v0.247.0
1313
google.golang.org/genproto v0.0.0-20250603155806-513f23925822
14-
google.golang.org/genproto/googleapis/api v0.0.0-20260526163538-3dc84a4a5aaa
14+
google.golang.org/genproto/googleapis/api v0.0.0-20260720211330-0afa2a65878a
1515
google.golang.org/protobuf v1.36.11
1616
)
1717

@@ -22,22 +22,21 @@ require (
2222
cloud.google.com/go/compute/metadata v0.9.0 // indirect
2323
cloud.google.com/go/iam v1.5.2 // indirect
2424
cloud.google.com/go/longrunning v0.6.7 // indirect
25-
github.com/BurntSushi/toml v1.5.0 // indirect
26-
github.com/apache/arrow-go/v18 v18.5.1 // indirect
25+
github.com/BurntSushi/toml v1.6.0 // indirect
26+
github.com/apache/arrow-go/v18 v18.6.0 // indirect
2727
github.com/beorn7/perks v1.0.1 // indirect
2828
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
2929
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3030
github.com/cheekybits/genny v1.0.0 // indirect
31-
github.com/clipperhouse/displaywidth v0.6.2 // indirect
32-
github.com/clipperhouse/stringish v0.1.1 // indirect
33-
github.com/clipperhouse/uax29/v2 v2.3.0 // indirect
31+
github.com/clipperhouse/displaywidth v0.11.0 // indirect
32+
github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
3433
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
3534
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
36-
github.com/fatih/color v1.18.0 // indirect
35+
github.com/fatih/color v1.19.0 // indirect
3736
github.com/felixge/httpsnoop v1.0.4 // indirect
3837
github.com/go-logr/logr v1.4.3 // indirect
3938
github.com/go-logr/stdr v1.2.2 // indirect
40-
github.com/goccy/go-json v0.10.5 // indirect
39+
github.com/goccy/go-json v0.10.6 // indirect
4140
github.com/gogo/googleapis v1.4.1 // indirect
4241
github.com/gogo/protobuf v1.3.2 // indirect
4342
github.com/golang/protobuf v1.5.4 // indirect
@@ -47,33 +46,33 @@ require (
4746
github.com/google/uuid v1.6.0 // indirect
4847
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
4948
github.com/googleapis/gax-go/v2 v2.15.0 // indirect
50-
github.com/grafana/otel-profiling-go v0.5.1 // indirect
51-
github.com/grafana/pyroscope-go/godeltaprof v0.1.9 // indirect
49+
github.com/grafana/otel-profiling-go v0.6.0 // indirect
50+
github.com/grafana/pyroscope-go/godeltaprof v0.1.12 // indirect
5251
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.1.0 // indirect
5352
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.3 // indirect
54-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7 // indirect
53+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.29.0 // indirect
5554
github.com/hashicorp/go-hclog v1.6.3 // indirect
56-
github.com/hashicorp/go-plugin v1.7.0 // indirect
55+
github.com/hashicorp/go-plugin v1.8.0 // indirect
5756
github.com/hashicorp/yamux v0.1.2 // indirect
58-
github.com/jaegertracing/jaeger-idl v0.6.0 // indirect
57+
github.com/jaegertracing/jaeger-idl v0.9.0 // indirect
5958
github.com/json-iterator/go v1.1.12 // indirect
60-
github.com/klauspost/compress v1.18.2 // indirect
61-
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
62-
github.com/magefile/mage v1.16.0 // indirect
59+
github.com/klauspost/compress v1.19.0 // indirect
60+
github.com/klauspost/cpuid/v2 v2.4.0 // indirect
61+
github.com/magefile/mage v1.17.2 // indirect
6362
github.com/mattetti/filebuffer v1.0.1 // indirect
64-
github.com/mattn/go-colorable v0.1.14 // indirect
65-
github.com/mattn/go-isatty v0.0.20 // indirect
66-
github.com/mattn/go-runewidth v0.0.19 // indirect
63+
github.com/mattn/go-colorable v0.1.15 // indirect
64+
github.com/mattn/go-isatty v0.0.22 // indirect
65+
github.com/mattn/go-runewidth v0.0.24 // indirect
6766
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6867
github.com/modern-go/reflect2 v1.0.2 // indirect
6968
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
70-
github.com/oklog/run v1.1.0 // indirect
69+
github.com/oklog/run v1.2.0 // indirect
7170
github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6 // indirect
72-
github.com/olekukonko/errors v1.1.0 // indirect
73-
github.com/olekukonko/ll v0.1.4-0.20260115111900-9e59c2286df0 // indirect
74-
github.com/olekukonko/tablewriter v1.1.3 // indirect
71+
github.com/olekukonko/errors v1.3.0 // indirect
72+
github.com/olekukonko/ll v0.1.8 // indirect
73+
github.com/olekukonko/tablewriter v1.1.4 // indirect
7574
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
76-
github.com/pierrec/lz4/v4 v4.1.23 // indirect
75+
github.com/pierrec/lz4/v4 v4.1.27 // indirect
7776
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7877
github.com/prometheus/client_golang v1.23.2 // indirect
7978
github.com/prometheus/client_model v0.6.2 // indirect
@@ -85,33 +84,29 @@ require (
8584
github.com/unknwon/com v1.0.1 // indirect
8685
github.com/unknwon/log v0.0.0-20150304194804-e617c87089d3 // indirect
8786
github.com/urfave/cli v1.22.17 // indirect
88-
github.com/zeebo/xxh3 v1.0.2 // indirect
87+
github.com/zeebo/xxh3 v1.1.0 // indirect
8988
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
90-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.65.0 // indirect
91-
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.65.0 // indirect
92-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0 // indirect
93-
go.opentelemetry.io/contrib/propagators/jaeger v1.40.0 // indirect
94-
go.opentelemetry.io/contrib/samplers/jaegerremote v0.34.0 // indirect
95-
go.opentelemetry.io/otel v1.43.0 // indirect
96-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0 // indirect
97-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.40.0 // indirect
98-
go.opentelemetry.io/otel/metric v1.43.0 // indirect
99-
go.opentelemetry.io/otel/sdk v1.43.0 // indirect
100-
go.opentelemetry.io/otel/trace v1.43.0 // indirect
101-
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
102-
go.yaml.in/yaml/v2 v2.4.3 // indirect
103-
golang.org/x/crypto v0.52.0 // indirect
104-
golang.org/x/exp v0.0.0-20251002181428-27f1f14c8bb9 // indirect
105-
golang.org/x/mod v0.35.0 // indirect
106-
golang.org/x/net v0.55.0 // indirect
107-
golang.org/x/sync v0.20.0 // indirect
108-
golang.org/x/sys v0.45.0 // indirect
109-
golang.org/x/telemetry v0.0.0-20260409153401-be6f6cb8b1fa // indirect
110-
golang.org/x/text v0.37.0 // indirect
89+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.69.0 // indirect
90+
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.69.0 // indirect
91+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.69.0 // indirect
92+
go.opentelemetry.io/contrib/propagators/jaeger v1.44.0 // indirect
93+
go.opentelemetry.io/contrib/samplers/jaegerremote v0.37.1 // indirect
94+
go.opentelemetry.io/otel v1.44.0 // indirect
95+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.44.0 // indirect
96+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.44.0 // indirect
97+
go.opentelemetry.io/otel/metric v1.44.0 // indirect
98+
go.opentelemetry.io/otel/sdk v1.44.0 // indirect
99+
go.opentelemetry.io/otel/trace v1.44.0 // indirect
100+
go.opentelemetry.io/proto/otlp v1.11.0 // indirect
101+
go.yaml.in/yaml/v2 v2.4.4 // indirect
102+
golang.org/x/crypto v0.54.0 // indirect
103+
golang.org/x/exp v0.0.0-20260112195511-716be5621a96 // indirect
104+
golang.org/x/net v0.57.0 // indirect
105+
golang.org/x/sync v0.22.0 // indirect
106+
golang.org/x/sys v0.47.0 // indirect
107+
golang.org/x/text v0.40.0 // indirect
111108
golang.org/x/time v0.12.0 // indirect
112-
golang.org/x/tools v0.44.0 // indirect
113-
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
114-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260523011958-0a33c5d7ca68 // indirect
109+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260720211330-0afa2a65878a // indirect
115110
google.golang.org/grpc v1.82.1 // indirect
116111
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
117112
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)