@grafana/create-plugin 5.3.3-canary.1075.df7c4b4.0 → 5.3.4
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
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v5.3.4 (Wed Aug 28 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create Plugin: Bump typescript to v5 for plugins [#1073](https://github.com/grafana/plugin-tools/pull/1073) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v5.3.3 (Tue Aug 27 2024)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- Create Plugin: Wrap app config fields with `<form>` [#1041](https://github.com/grafana/plugin-tools/pull/1041) ([@leventebalogh](https://github.com/leventebalogh))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Levente Balogh ([@leventebalogh](https://github.com/leventebalogh))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v5.3.2 (Thu Aug 22 2024)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.4",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"engines": {
|
|
88
88
|
"node": ">=20"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "d918a7e233baa4439e5edd69cc3bd07feea4da3f"
|
|
91
91
|
}
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@babel/core": "^7.21.4",{{#if useCypress}}
|
|
22
|
-
"@grafana/e2e": "^11.0.
|
|
23
|
-
"@grafana/e2e-selectors": "^11.
|
|
22
|
+
"@grafana/e2e": "^11.0.3",
|
|
23
|
+
"@grafana/e2e-selectors": "^11.1.4",{{/if}}
|
|
24
24
|
"@grafana/eslint-config": "^7.0.0",{{#if usePlaywright}}
|
|
25
25
|
"@grafana/plugin-e2e": "^1.7.1",{{/if}}
|
|
26
26
|
"@grafana/tsconfig": "^2.0.0",{{#if usePlaywright}}
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"swc-loader": "^0.2.3",
|
|
54
54
|
"ts-node": "^10.9.1",
|
|
55
55
|
"tsconfig-paths": "^4.2.0",
|
|
56
|
-
"typescript": "
|
|
56
|
+
"typescript": "5.5.4",
|
|
57
57
|
"webpack": "^5.86.0",
|
|
58
58
|
"webpack-cli": "^5.1.4",
|
|
59
59
|
"webpack-livereload-plugin": "^3.0.2",
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@emotion/css": "11.10.6",
|
|
67
|
-
"@grafana/data": "^11.
|
|
68
|
-
"@grafana/runtime": "^11.
|
|
69
|
-
"@grafana/ui": "^11.
|
|
67
|
+
"@grafana/data": "^11.1.4",
|
|
68
|
+
"@grafana/runtime": "^11.1.4",
|
|
69
|
+
"@grafana/ui": "^11.1.4",
|
|
70
70
|
"@grafana/schema": "^10.4.0",{{#if_eq pluginType "scenesapp"}}
|
|
71
71
|
"@grafana/scenes": "^5.10.1",{{/if_eq}}
|
|
72
72
|
"react": "18.2.0",
|