@grafana/create-plugin 6.1.13 → 6.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/package.json +2 -2
- package/templates/backend/go.mod +67 -47
- package/templates/backend/go.sum +197 -222
- package/templates/backend-app/go.mod +67 -48
- package/templates/backend-app/go.sum +197 -222
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v6.1.14 (Wed Nov 19 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create plugin: Update go templates [#2313](https://github.com/grafana/plugin-tools/pull/2313) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v6.1.13 (Wed Nov 19 2025)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.14",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"engines": {
|
|
61
61
|
"node": ">=20"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "9216fe4caf37b8ccc977c987f0364d114241c8fb"
|
|
64
64
|
}
|
package/templates/backend/go.mod
CHANGED
|
@@ -1,66 +1,86 @@
|
|
|
1
1
|
module github.com/{{ kebabCase orgName }}/{{ kebabCase pluginName }}
|
|
2
2
|
|
|
3
|
-
go 1.
|
|
3
|
+
go 1.24.6
|
|
4
4
|
|
|
5
|
-
require github.com/grafana/grafana-plugin-sdk-go v0.
|
|
5
|
+
require github.com/grafana/grafana-plugin-sdk-go v0.283.0
|
|
6
6
|
|
|
7
7
|
require (
|
|
8
|
-
github.com/BurntSushi/toml v1.
|
|
9
|
-
github.com/apache/arrow
|
|
8
|
+
github.com/BurntSushi/toml v1.5.0 // indirect
|
|
9
|
+
github.com/apache/arrow-go/v18 v18.4.1 // indirect
|
|
10
10
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
11
|
-
github.com/
|
|
11
|
+
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
|
|
12
|
+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
12
13
|
github.com/cheekybits/genny v1.0.0 // indirect
|
|
13
|
-
github.com/
|
|
14
|
-
github.com/
|
|
15
|
-
github.com/
|
|
16
|
-
github.com/
|
|
17
|
-
github.com/
|
|
18
|
-
github.com/
|
|
19
|
-
github.com/
|
|
20
|
-
github.com/
|
|
21
|
-
github.com/
|
|
22
|
-
github.com/
|
|
23
|
-
github.com/google/
|
|
24
|
-
github.com/
|
|
25
|
-
github.com/
|
|
26
|
-
github.com/
|
|
27
|
-
github.com/grpc-ecosystem/go-grpc-middleware
|
|
28
|
-
github.com/grpc-ecosystem/
|
|
29
|
-
github.com/hashicorp/go-hclog
|
|
30
|
-
github.com/hashicorp/go-plugin v1.
|
|
31
|
-
github.com/hashicorp/yamux v0.
|
|
32
|
-
github.com/
|
|
14
|
+
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
|
|
15
|
+
github.com/fatih/color v1.15.0 // indirect
|
|
16
|
+
github.com/go-logr/logr v1.4.3 // indirect
|
|
17
|
+
github.com/go-logr/stdr v1.2.2 // indirect
|
|
18
|
+
github.com/goccy/go-json v0.10.5 // indirect
|
|
19
|
+
github.com/gogo/googleapis v1.4.1 // indirect
|
|
20
|
+
github.com/gogo/protobuf v1.3.2 // indirect
|
|
21
|
+
github.com/golang/protobuf v1.5.4 // indirect
|
|
22
|
+
github.com/google/flatbuffers v25.2.10+incompatible // indirect
|
|
23
|
+
github.com/google/go-cmp v0.7.0 // indirect
|
|
24
|
+
github.com/google/uuid v1.6.0 // indirect
|
|
25
|
+
github.com/grafana/otel-profiling-go v0.5.1 // indirect
|
|
26
|
+
github.com/grafana/pyroscope-go/godeltaprof v0.1.9 // indirect
|
|
27
|
+
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.1.0 // indirect
|
|
28
|
+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.3 // indirect
|
|
29
|
+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect
|
|
30
|
+
github.com/hashicorp/go-hclog v1.6.3 // indirect
|
|
31
|
+
github.com/hashicorp/go-plugin v1.7.0 // indirect
|
|
32
|
+
github.com/hashicorp/yamux v0.1.2 // indirect
|
|
33
|
+
github.com/jaegertracing/jaeger-idl v0.5.0 // indirect
|
|
33
34
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
34
|
-
github.com/klauspost/compress v1.
|
|
35
|
-
github.com/
|
|
36
|
-
github.com/
|
|
35
|
+
github.com/klauspost/compress v1.18.0 // indirect
|
|
36
|
+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
|
|
37
|
+
github.com/magefile/mage v1.15.0 // indirect
|
|
37
38
|
github.com/mattetti/filebuffer v1.0.1 // indirect
|
|
38
|
-
github.com/mattn/go-colorable v0.1.
|
|
39
|
-
github.com/mattn/go-isatty v0.0.
|
|
40
|
-
github.com/mattn/go-runewidth v0.0.
|
|
41
|
-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
42
|
-
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
|
|
39
|
+
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
40
|
+
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
41
|
+
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
43
42
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
44
43
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
45
|
-
github.com/
|
|
44
|
+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
45
|
+
github.com/oklog/run v1.1.0 // indirect
|
|
46
46
|
github.com/olekukonko/tablewriter v0.0.5 // indirect
|
|
47
|
-
github.com/
|
|
48
|
-
github.com/
|
|
49
|
-
github.com/prometheus/
|
|
50
|
-
github.com/prometheus/
|
|
51
|
-
github.com/prometheus/
|
|
47
|
+
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
|
|
48
|
+
github.com/pierrec/lz4/v4 v4.1.22 // indirect
|
|
49
|
+
github.com/prometheus/client_golang v1.23.2 // indirect
|
|
50
|
+
github.com/prometheus/client_model v0.6.2 // indirect
|
|
51
|
+
github.com/prometheus/common v0.67.2 // indirect
|
|
52
|
+
github.com/prometheus/procfs v0.16.1 // indirect
|
|
53
|
+
github.com/rivo/uniseg v0.4.7 // indirect
|
|
52
54
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
53
55
|
github.com/unknwon/bra v0.0.0-20200517080246-1e3013ecaff8 // indirect
|
|
54
56
|
github.com/unknwon/com v1.0.1 // indirect
|
|
55
57
|
github.com/unknwon/log v0.0.0-20150304194804-e617c87089d3 // indirect
|
|
56
|
-
github.com/urfave/cli v1.22.
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
golang.org/
|
|
60
|
-
|
|
58
|
+
github.com/urfave/cli v1.22.17 // indirect
|
|
59
|
+
github.com/zeebo/xxh3 v1.0.2 // indirect
|
|
60
|
+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
|
|
61
|
+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0 // indirect
|
|
62
|
+
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.63.0 // indirect
|
|
63
|
+
go.opentelemetry.io/contrib/propagators/jaeger v1.38.0 // indirect
|
|
64
|
+
go.opentelemetry.io/contrib/samplers/jaegerremote v0.32.0 // indirect
|
|
65
|
+
go.opentelemetry.io/otel v1.38.0 // indirect
|
|
66
|
+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0 // indirect
|
|
67
|
+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.38.0 // indirect
|
|
68
|
+
go.opentelemetry.io/otel/metric v1.38.0 // indirect
|
|
69
|
+
go.opentelemetry.io/otel/sdk v1.38.0 // indirect
|
|
70
|
+
go.opentelemetry.io/otel/trace v1.38.0 // indirect
|
|
71
|
+
go.opentelemetry.io/proto/otlp v1.7.1 // indirect
|
|
72
|
+
go.yaml.in/yaml/v2 v2.4.3 // indirect
|
|
73
|
+
golang.org/x/exp v0.0.0-20251002181428-27f1f14c8bb9 // indirect
|
|
74
|
+
golang.org/x/mod v0.28.0 // indirect
|
|
75
|
+
golang.org/x/net v0.46.0 // indirect
|
|
76
|
+
golang.org/x/sync v0.18.0 // indirect
|
|
77
|
+
golang.org/x/sys v0.37.0 // indirect
|
|
78
|
+
golang.org/x/telemetry v0.0.0-20250908211612-aef8a434d053 // indirect
|
|
79
|
+
golang.org/x/text v0.30.0 // indirect
|
|
80
|
+
golang.org/x/tools v0.37.0 // indirect
|
|
81
|
+
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
|
|
61
82
|
google.golang.org/genproto v0.0.0-20210630183607-d20f26d13c79 // indirect
|
|
62
|
-
google.golang.org/grpc v1.
|
|
63
|
-
google.golang.org/protobuf v1.
|
|
83
|
+
google.golang.org/grpc v1.76.0 // indirect
|
|
84
|
+
google.golang.org/protobuf v1.36.10 // indirect
|
|
64
85
|
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
|
|
65
|
-
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
66
86
|
)
|