@grafana/create-plugin 4.4.1 → 4.4.2
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,15 @@
|
|
|
1
|
+
# v4.4.2 (Thu Mar 28 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create Plugin: Fix grafana running without plugin backend [#844](https://github.com/grafana/plugin-tools/pull/844) ([@oshirohugo](https://github.com/oshirohugo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Hugo Kiyodi Oshiro ([@oshirohugo](https://github.com/oshirohugo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.4.1 (Wed Mar 27 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.2",
|
|
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": "9e07c5cb9c74b3f3335000d93e37651eeb0ec261"
|
|
91
91
|
}
|
|
@@ -5,7 +5,11 @@ user=root
|
|
|
5
5
|
[program:grafana]
|
|
6
6
|
user=root
|
|
7
7
|
directory=/var/lib/grafana
|
|
8
|
+
{{#if hasBackend}}
|
|
9
|
+
command=bash -c 'while [ ! -f /root/grafana-surrealdb-datasource/dist/gpx_{{ snakeCase pluginName }}* ]; do sleep 1; done; /run.sh'
|
|
10
|
+
{{else}}
|
|
8
11
|
command=/run.sh
|
|
12
|
+
{{/if}}
|
|
9
13
|
stdout_logfile=/dev/fd/1
|
|
10
14
|
stdout_logfile_maxbytes=0
|
|
11
15
|
redirect_stderr=true
|