@grafana/create-plugin 1.1.2 → 1.1.3
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/dist/commands/generate-actions/update-go-sdk-and-packages.js +54 -17
- package/package.json +2 -2
- package/src/commands/generate-actions/update-go-sdk-and-packages.ts +42 -19
- package/templates/backend/go.mod +15 -16
- package/templates/backend/go.sum +40 -322
- package/templates/backend-app/go.mod +21 -12
- package/templates/backend-app/go.sum +65 -319
|
@@ -2,14 +2,16 @@ module github.com/{{ kebabCase orgName }}/{{ kebabCase pluginName }}
|
|
|
2
2
|
|
|
3
3
|
go 1.19
|
|
4
4
|
|
|
5
|
-
require github.com/grafana/grafana-plugin-sdk-go v0.
|
|
5
|
+
require github.com/grafana/grafana-plugin-sdk-go v0.155.0
|
|
6
6
|
|
|
7
7
|
require (
|
|
8
|
+
github.com/BurntSushi/toml v1.2.1 // indirect
|
|
8
9
|
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40 // indirect
|
|
9
10
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
10
11
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
11
12
|
github.com/cheekybits/genny v1.0.0 // indirect
|
|
12
13
|
github.com/chromedp/cdproto v0.0.0-20220208224320-6efb837e6bc2 // indirect
|
|
14
|
+
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
|
13
15
|
github.com/elazarl/goproxy v0.0.0-20220115173737-adb46da277ac // indirect
|
|
14
16
|
github.com/fatih/color v1.7.0 // indirect
|
|
15
17
|
github.com/getkin/kin-openapi v0.94.0 // indirect
|
|
@@ -19,7 +21,7 @@ require (
|
|
|
19
21
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
20
22
|
github.com/golang/snappy v0.0.3 // indirect
|
|
21
23
|
github.com/google/flatbuffers v2.0.0+incompatible // indirect
|
|
22
|
-
github.com/google/go-cmp v0.5.
|
|
24
|
+
github.com/google/go-cmp v0.5.9 // indirect
|
|
23
25
|
github.com/google/uuid v1.3.0 // indirect
|
|
24
26
|
github.com/gorilla/mux v1.8.0 // indirect
|
|
25
27
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
|
|
@@ -30,29 +32,36 @@ require (
|
|
|
30
32
|
github.com/josharian/intern v1.0.0 // indirect
|
|
31
33
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
32
34
|
github.com/klauspost/compress v1.13.1 // indirect
|
|
33
|
-
github.com/magefile/mage v1.
|
|
35
|
+
github.com/magefile/mage v1.14.0 // indirect
|
|
34
36
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
35
37
|
github.com/mattetti/filebuffer v1.0.1 // indirect
|
|
36
38
|
github.com/mattn/go-colorable v0.1.4 // indirect
|
|
37
39
|
github.com/mattn/go-isatty v0.0.10 // indirect
|
|
38
40
|
github.com/mattn/go-runewidth v0.0.9 // indirect
|
|
39
|
-
github.com/matttproud/golang_protobuf_extensions v1.0.
|
|
41
|
+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
40
42
|
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
|
|
41
43
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
42
44
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
43
45
|
github.com/oklog/run v1.0.0 // indirect
|
|
44
46
|
github.com/olekukonko/tablewriter v0.0.5 // indirect
|
|
45
47
|
github.com/pierrec/lz4/v4 v4.1.8 // indirect
|
|
46
|
-
github.com/prometheus/client_golang v1.
|
|
47
|
-
github.com/prometheus/client_model v0.
|
|
48
|
-
github.com/prometheus/common v0.
|
|
49
|
-
github.com/prometheus/procfs v0.
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
48
|
+
github.com/prometheus/client_golang v1.14.0 // indirect
|
|
49
|
+
github.com/prometheus/client_model v0.3.0 // indirect
|
|
50
|
+
github.com/prometheus/common v0.40.0 // indirect
|
|
51
|
+
github.com/prometheus/procfs v0.8.0 // indirect
|
|
52
|
+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
53
|
+
github.com/unknwon/bra v0.0.0-20200517080246-1e3013ecaff8 // indirect
|
|
54
|
+
github.com/unknwon/com v1.0.1 // indirect
|
|
55
|
+
github.com/unknwon/log v0.0.0-20150304194804-e617c87089d3 // indirect
|
|
56
|
+
github.com/urfave/cli v1.22.12 // indirect
|
|
57
|
+
golang.org/x/net v0.8.0 // indirect
|
|
58
|
+
golang.org/x/sys v0.6.0 // indirect
|
|
59
|
+
golang.org/x/text v0.8.0 // indirect
|
|
53
60
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
54
61
|
google.golang.org/genproto v0.0.0-20210630183607-d20f26d13c79 // indirect
|
|
55
62
|
google.golang.org/grpc v1.41.0 // indirect
|
|
56
|
-
google.golang.org/protobuf v1.
|
|
63
|
+
google.golang.org/protobuf v1.28.1 // indirect
|
|
64
|
+
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
|
|
57
65
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
58
66
|
)
|
|
67
|
+
|