@grafana/create-plugin 5.9.2 → 5.9.3
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,17 @@
|
|
|
1
|
+
# v5.9.3 (Fri Nov 15 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create plugin: Fix plugin.json check step on CI [#1330](https://github.com/grafana/plugin-tools/pull/1330) ([@oshirohugo](https://github.com/oshirohugo))
|
|
6
|
+
- chore(deps): update dependency @grafana/plugin-e2e to v1.12.1 [#1326](https://github.com/grafana/plugin-tools/pull/1326) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
11
|
+
- Hugo Kiyodi Oshiro ([@oshirohugo](https://github.com/oshirohugo))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
1
15
|
# v5.9.2 (Thu Nov 14 2024)
|
|
2
16
|
|
|
3
17
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "5.9.
|
|
3
|
+
"version": "5.9.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"engines": {
|
|
87
87
|
"node": ">=20"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "59712a4323a3929f18647eb9e1db5d6d8a0fa4d0"
|
|
90
90
|
}
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@grafana/e2e": "^11.0.7",
|
|
23
23
|
"@grafana/e2e-selectors": "^11.3.0",{{/if}}
|
|
24
24
|
"@grafana/eslint-config": "^7.0.0",{{#if usePlaywright}}
|
|
25
|
-
"@grafana/plugin-e2e": "^1.12.
|
|
25
|
+
"@grafana/plugin-e2e": "^1.12.1",{{/if}}
|
|
26
26
|
"@grafana/tsconfig": "^2.0.0",{{#if usePlaywright}}
|
|
27
27
|
"@playwright/test": "^1.41.2",{{/if}}
|
|
28
28
|
"@swc/core": "^1.3.90",
|
|
@@ -111,7 +111,7 @@ jobs:
|
|
|
111
111
|
- name: Check plugin.json
|
|
112
112
|
run: |
|
|
113
113
|
docker run --pull=always \
|
|
114
|
-
-v $PWD
|
|
114
|
+
-v $PWD/$\{{ steps.metadata.outputs.archive }}:/archive.zip \
|
|
115
115
|
grafana/plugin-validator-cli -analyzer=metadatavalid /archive.zip
|
|
116
116
|
|
|
117
117
|
- name: Archive Build
|