@grafana/create-plugin 7.7.0 → 7.7.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "7.7.
|
|
3
|
+
"version": "7.7.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"directory": "packages/create-plugin",
|
|
@@ -55,6 +55,5 @@
|
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=20"
|
|
58
|
-
}
|
|
59
|
-
"gitHead": "57e7611bcbbd068694bda70df57fa86008dd3353"
|
|
58
|
+
}
|
|
60
59
|
}
|
package/templates/backend/go.mod
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
module github.com/{{ kebabCase orgName }}/{{ kebabCase pluginName }}
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
go 1.
|
|
4
|
+
go 1.26.3
|
|
5
5
|
|
|
6
6
|
require github.com/grafana/grafana-plugin-sdk-go v0.285.0
|
|
7
7
|
|
|
@@ -72,13 +72,13 @@ require (
|
|
|
72
72
|
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
|
|
73
73
|
go.yaml.in/yaml/v2 v2.4.3 // indirect
|
|
74
74
|
golang.org/x/exp v0.0.0-20251002181428-27f1f14c8bb9 // indirect
|
|
75
|
-
golang.org/x/mod v0.
|
|
76
|
-
golang.org/x/net v0.
|
|
77
|
-
golang.org/x/sync v0.
|
|
78
|
-
golang.org/x/sys v0.
|
|
75
|
+
golang.org/x/mod v0.35.0 // indirect
|
|
76
|
+
golang.org/x/net v0.55.0 // indirect
|
|
77
|
+
golang.org/x/sync v0.20.0 // indirect
|
|
78
|
+
golang.org/x/sys v0.45.0 // indirect
|
|
79
79
|
golang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54 // indirect
|
|
80
|
-
golang.org/x/text v0.
|
|
81
|
-
golang.org/x/tools v0.
|
|
80
|
+
golang.org/x/text v0.37.0 // indirect
|
|
81
|
+
golang.org/x/tools v0.44.0 // indirect
|
|
82
82
|
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
|
|
83
83
|
google.golang.org/genproto v0.0.0-20210630183607-d20f26d13c79 // indirect
|
|
84
84
|
google.golang.org/grpc v1.78.0 // indirect
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
module github.com/{{ kebabCase orgName }}/{{ kebabCase pluginName }}
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
go 1.
|
|
4
|
+
go 1.26.3
|
|
5
5
|
|
|
6
6
|
require github.com/grafana/grafana-plugin-sdk-go v0.285.0
|
|
7
7
|
|
|
@@ -72,13 +72,13 @@ require (
|
|
|
72
72
|
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
|
|
73
73
|
go.yaml.in/yaml/v2 v2.4.3 // indirect
|
|
74
74
|
golang.org/x/exp v0.0.0-20251002181428-27f1f14c8bb9 // indirect
|
|
75
|
-
golang.org/x/mod v0.
|
|
76
|
-
golang.org/x/net v0.
|
|
77
|
-
golang.org/x/sync v0.
|
|
78
|
-
golang.org/x/sys v0.
|
|
75
|
+
golang.org/x/mod v0.35.0 // indirect
|
|
76
|
+
golang.org/x/net v0.55.0 // indirect
|
|
77
|
+
golang.org/x/sync v0.20.0 // indirect
|
|
78
|
+
golang.org/x/sys v0.45.0 // indirect
|
|
79
79
|
golang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54 // indirect
|
|
80
|
-
golang.org/x/text v0.
|
|
81
|
-
golang.org/x/tools v0.
|
|
80
|
+
golang.org/x/text v0.37.0 // indirect
|
|
81
|
+
golang.org/x/tools v0.44.0 // indirect
|
|
82
82
|
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
|
|
83
83
|
google.golang.org/genproto v0.0.0-20210630183607-d20f26d13c79 // indirect
|
|
84
84
|
google.golang.org/grpc v1.78.0 // indirect
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "0.2.0",
|
|
3
|
-
"configurations": [
|
|
4
|
-
{
|
|
5
|
-
"name": "Standalone debug mode",
|
|
6
|
-
"type": "go",
|
|
7
|
-
"request": "launch",
|
|
8
|
-
"mode": "debug",
|
|
9
|
-
"program": "${workspaceFolder}/pkg",
|
|
10
|
-
"env": {},
|
|
11
|
-
"args": [
|
|
12
|
-
"-standalone"
|
|
13
|
-
]
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"name": "Attach to plugin backend in docker",
|
|
17
|
-
"type": "go",
|
|
18
|
-
"request": "attach",
|
|
19
|
-
"mode": "remote",
|
|
20
|
-
"port": 2345,
|
|
21
|
-
"host": "127.0.0.1",
|
|
22
|
-
"showLog": true,
|
|
23
|
-
"trace": "log",
|
|
24
|
-
"logOutput": "rpc",
|
|
25
|
-
"substitutePath": [
|
|
26
|
-
{
|
|
27
|
-
"from": "${workspaceFolder}",
|
|
28
|
-
"to": "/root/{{ pluginId }}"
|
|
29
|
-
}
|
|
30
|
-
]
|
|
31
|
-
}
|
|
32
|
-
]
|
|
33
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "0.2.0",
|
|
3
|
-
"configurations": [
|
|
4
|
-
{
|
|
5
|
-
"name": "Standalone debug mode",
|
|
6
|
-
"type": "go",
|
|
7
|
-
"request": "launch",
|
|
8
|
-
"mode": "debug",
|
|
9
|
-
"program": "${workspaceFolder}/pkg",
|
|
10
|
-
"env": {},
|
|
11
|
-
"args": [
|
|
12
|
-
"-standalone"
|
|
13
|
-
]
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"name": "Attach to plugin backend in docker",
|
|
17
|
-
"type": "go",
|
|
18
|
-
"request": "attach",
|
|
19
|
-
"mode": "remote",
|
|
20
|
-
"port": 2345,
|
|
21
|
-
"host": "127.0.0.1",
|
|
22
|
-
"showLog": true,
|
|
23
|
-
"trace": "log",
|
|
24
|
-
"logOutput": "rpc",
|
|
25
|
-
"substitutePath": [
|
|
26
|
-
{
|
|
27
|
-
"from": "${workspaceFolder}",
|
|
28
|
-
"to": "/root/{{ pluginId }}"
|
|
29
|
-
}
|
|
30
|
-
]
|
|
31
|
-
}
|
|
32
|
-
]
|
|
33
|
-
}
|