@grafana/create-plugin 4.0.2 → 4.1.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 +12 -0
- package/dist/constants.js +1 -1
- package/package.json +2 -2
- package/src/constants.ts +1 -1
- package/templates/common/_package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.1.0 (Mon Feb 19 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- create-plugin: update grafana version to `v10.3.3` [#674](https://github.com/grafana/plugin-tools/pull/674) ([@leventebalogh](https://github.com/leventebalogh))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Levente Balogh ([@leventebalogh](https://github.com/leventebalogh))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.0.2 (Mon Feb 19 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/constants.js
CHANGED
|
@@ -28,7 +28,7 @@ export var PLUGIN_TYPES;
|
|
|
28
28
|
PLUGIN_TYPES["scenes"] = "scenesapp";
|
|
29
29
|
})(PLUGIN_TYPES || (PLUGIN_TYPES = {}));
|
|
30
30
|
export const EXTRA_TEMPLATE_VARIABLES = {
|
|
31
|
-
grafanaVersion: '10.
|
|
31
|
+
grafanaVersion: '10.3.3',
|
|
32
32
|
grafanaImage: 'grafana-enterprise',
|
|
33
33
|
};
|
|
34
34
|
export const DEFAULT_FEATURE_FLAGS = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
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": "7eaad28608a368c669ec21e92140d738858ed6c5"
|
|
91
91
|
}
|
package/src/constants.ts
CHANGED
|
@@ -43,7 +43,7 @@ export enum PLUGIN_TYPES {
|
|
|
43
43
|
// and will be available to use in the templates.
|
|
44
44
|
// Example: "@grafana/ui": "{{ grafanaVersion }}"
|
|
45
45
|
export const EXTRA_TEMPLATE_VARIABLES = {
|
|
46
|
-
grafanaVersion: '10.
|
|
46
|
+
grafanaVersion: '10.3.3',
|
|
47
47
|
grafanaImage: 'grafana-enterprise',
|
|
48
48
|
};
|
|
49
49
|
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"@grafana/runtime": "{{ grafanaVersion }}",
|
|
65
65
|
"@grafana/ui": "{{ grafanaVersion }}",
|
|
66
66
|
"@grafana/schema": "{{ grafanaVersion }}",{{#if_eq pluginType "scenesapp"}}
|
|
67
|
-
"@grafana/scenes": "^
|
|
67
|
+
"@grafana/scenes": "^3.6.0",{{/if_eq}}
|
|
68
68
|
"react": "18.2.0",
|
|
69
69
|
"react-dom": "18.2.0",{{#if isAppType}}
|
|
70
70
|
"react-router-dom": "^{{ reactRouterVersion }}",
|
|
71
|
-
"rxjs": "7.8.
|
|
71
|
+
"rxjs": "7.8.1",{{/if}}
|
|
72
72
|
"tslib": "2.5.3"
|
|
73
73
|
},
|
|
74
74
|
"packageManager": "{{ packageManagerName }}@{{ packageManagerVersion }}"
|