@grafana/create-plugin 2.8.0-canary.529.973ad00.0 → 2.8.0
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 +20 -0
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# v2.8.0 (Thu Dec 07 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- create-plugin: Add provisioning scaffold [#529](https://github.com/grafana/plugin-tools/pull/529) ([@Ukochka](https://github.com/Ukochka) [@josmperez](https://github.com/josmperez) [@sympatheticmoose](https://github.com/sympatheticmoose) [@jackw](https://github.com/jackw) [@sunker](https://github.com/sunker) [@dependabot[bot]](https://github.com/dependabot[bot]) [@tolzhabayev](https://github.com/tolzhabayev) [@leventebalogh](https://github.com/leventebalogh) [@sd2k](https://github.com/sd2k))
|
|
6
|
+
|
|
7
|
+
#### Authors: 9
|
|
8
|
+
|
|
9
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
10
|
+
- Ben Sully ([@sd2k](https://github.com/sd2k))
|
|
11
|
+
- David Harris ([@sympatheticmoose](https://github.com/sympatheticmoose))
|
|
12
|
+
- Erik Sundell ([@sunker](https://github.com/sunker))
|
|
13
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
14
|
+
- Joseph Perez ([@josmperez](https://github.com/josmperez))
|
|
15
|
+
- Levente Balogh ([@leventebalogh](https://github.com/leventebalogh))
|
|
16
|
+
- Timur Olzhabayev ([@tolzhabayev](https://github.com/tolzhabayev))
|
|
17
|
+
- Yulia Shanyrova ([@Ukochka](https://github.com/Ukochka))
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
1
21
|
# v2.7.0 (Mon Dec 04 2023)
|
|
2
22
|
|
|
3
23
|
#### 🚀 Enhancement
|
package/README.md
CHANGED
|
@@ -110,7 +110,7 @@ cd ./my-plugin
|
|
|
110
110
|
npx @grafana/create-plugin@latest provisioning
|
|
111
111
|
```
|
|
112
112
|
|
|
113
|
-
For more information see our [documentation](https://grafana.com/developers/plugin-tools/publish-a-plugin/
|
|
113
|
+
For more information see our [documentation](https://grafana.com/developers/plugin-tools/publish-a-plugin/provide-test-environment).
|
|
114
114
|
|
|
115
115
|
---
|
|
116
116
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "2.8.0
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/create-plugin",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"engines": {
|
|
67
67
|
"node": ">=20"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "93bf334f28d980ae68505eb178d37c0c89bce023"
|
|
70
70
|
}
|