@grafana/create-plugin 1.3.0 → 1.3.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/CHANGELOG.md +18 -0
- package/README.md +1 -1
- package/package.json +2 -2
- package/templates/common/package.json +1 -3
- package/templates/datasource/src/plugin.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
# v1.3.1 (Mon May 15 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create Plugin: Fix react types errors [#238](https://github.com/grafana/plugin-tools/pull/238) ([@jackw](https://github.com/jackw))
|
|
6
|
+
- chore: update grafanaDependency for datasources [#247](https://github.com/grafana/plugin-tools/pull/247) ([@sympatheticmoose](https://github.com/sympatheticmoose))
|
|
7
|
+
|
|
8
|
+
#### 📝 Documentation
|
|
9
|
+
|
|
10
|
+
- docs: readme update for windows [#240](https://github.com/grafana/plugin-tools/pull/240) ([@sympatheticmoose](https://github.com/sympatheticmoose))
|
|
11
|
+
|
|
12
|
+
#### Authors: 2
|
|
13
|
+
|
|
14
|
+
- David Harris ([@sympatheticmoose](https://github.com/sympatheticmoose))
|
|
15
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
1
19
|
# v1.3.0 (Fri Apr 28 2023)
|
|
2
20
|
|
|
3
21
|
#### 🚀 Enhancement
|
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Create Grafana plugins with ease.
|
|
|
22
22
|
- [Plugin developer docs](https://grafana.com/docs/grafana/latest/developers/plugins/)
|
|
23
23
|
- [Plugin migration guide](https://grafana.com/docs/grafana/latest/developers/plugins/migration-guide/)
|
|
24
24
|
|
|
25
|
-
**`@grafana/create-plugin`** works on macOS,
|
|
25
|
+
**`@grafana/create-plugin`** works on macOS, Linux and Windows Subsystem for Linux (WSL).<br />
|
|
26
26
|
If something doesn't work, please [file an issue](https://github.com/grafana/plugin-tools/issues/new).<br />
|
|
27
27
|
If you have questions or need help, please ask in [GitHub Discussions](https://github.com/grafana/plugin-tools/discussions).
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/create-plugin",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"engines": {
|
|
65
65
|
"node": ">=16"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "80d7d3cc8ac542995eae2a874d8b9618f9a9559e"
|
|
68
68
|
}
|
|
@@ -30,9 +30,7 @@
|
|
|
30
30
|
"@testing-library/react": "^12.1.4",
|
|
31
31
|
"@types/jest": "^29.2.2",
|
|
32
32
|
"@types/lodash": "^4.14.188",
|
|
33
|
-
"@types/node": "^18.11.9",
|
|
34
|
-
"@types/react": "17.0.42",
|
|
35
|
-
"@types/react-dom": "17.0.14",{{#if_eq pluginType "app"}}
|
|
33
|
+
"@types/node": "^18.11.9",{{#if_eq pluginType "app"}}
|
|
36
34
|
"@types/react-router-dom": "^5.3.3",{{/if_eq}}
|
|
37
35
|
"copy-webpack-plugin": "^11.0.0",
|
|
38
36
|
"css-loader": "^6.7.1",
|