@grafana/create-plugin 0.6.0 → 0.6.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 +12 -0
- package/dist/constants.js +1 -1
- package/package.json +2 -2
- package/src/constants.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.6.1 (Fri Nov 18 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create-Plugin: Update grafanaVersion to 9.2.5 [#149](https://github.com/grafana/plugin-tools/pull/149) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.6.0 (Fri Nov 18 2022)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
package/dist/constants.js
CHANGED
|
@@ -30,7 +30,7 @@ var PLUGIN_TYPES;
|
|
|
30
30
|
PLUGIN_TYPES["secretsmanager"] = "secretsmanager";
|
|
31
31
|
})(PLUGIN_TYPES = exports.PLUGIN_TYPES || (exports.PLUGIN_TYPES = {}));
|
|
32
32
|
exports.EXTRA_TEMPLATE_VARIABLES = {
|
|
33
|
-
grafanaVersion: '9.
|
|
33
|
+
grafanaVersion: '9.2.5'
|
|
34
34
|
};
|
|
35
35
|
exports.GRAFANA_FE_PACKAGES = [
|
|
36
36
|
'@grafana/data',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/create-plugin",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"engines": {
|
|
61
61
|
"node": ">=16"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "03f7684959edf280722d5d5fed80de83383422b0"
|
|
64
64
|
}
|
package/src/constants.ts
CHANGED
|
@@ -38,7 +38,7 @@ export enum PLUGIN_TYPES {
|
|
|
38
38
|
// and will be available to use in the templates.
|
|
39
39
|
// Example: "@grafana/ui": "{{ grafanaVersion }}"
|
|
40
40
|
export const EXTRA_TEMPLATE_VARIABLES = {
|
|
41
|
-
grafanaVersion: '9.
|
|
41
|
+
grafanaVersion: '9.2.5',
|
|
42
42
|
};
|
|
43
43
|
|
|
44
44
|
export const GRAFANA_FE_PACKAGES = [
|