@grafana/create-plugin 4.16.2-canary.971.d462771.0 → 4.16.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.16.2 (Fri Jul 12 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create Plugin: Fix CI workflow for E2E tests to successfully run [#1001](https://github.com/grafana/plugin-tools/pull/1001) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.16.1 (Tue Jul 09 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.16.2
|
|
3
|
+
"version": "4.16.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": "9efc48f3e642223658ca1444ef599e370c72de74"
|
|
91
91
|
}
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@babel/core": "^7.21.4",{{#if useCypress}}
|
|
23
|
-
"@grafana/e2e": "^
|
|
24
|
-
"@grafana/e2e-selectors": "^
|
|
23
|
+
"@grafana/e2e": "^10.4.0",
|
|
24
|
+
"@grafana/e2e-selectors": "^10.4.0",{{/if}}
|
|
25
25
|
"@grafana/eslint-config": "^7.0.0",{{#if usePlaywright}}
|
|
26
|
-
"@grafana/plugin-e2e": "^1.
|
|
26
|
+
"@grafana/plugin-e2e": "^1.2.0",{{/if}}
|
|
27
27
|
"@grafana/tsconfig": "^1.2.0-rc1",{{#if usePlaywright}}
|
|
28
28
|
"@playwright/test": "^1.41.2",{{/if}}
|
|
29
29
|
"@swc/core": "^1.3.90",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@emotion/css": "11.10.6",
|
|
67
|
-
"@grafana/data": "^
|
|
68
|
-
"@grafana/runtime": "^
|
|
69
|
-
"@grafana/ui": "^
|
|
67
|
+
"@grafana/data": "^10.4.0",
|
|
68
|
+
"@grafana/runtime": "^10.4.0",
|
|
69
|
+
"@grafana/ui": "^10.4.0",
|
|
70
70
|
"@grafana/schema": "^10.4.0",{{#if_eq pluginType "scenesapp"}}
|
|
71
|
-
"@grafana/scenes": "^
|
|
71
|
+
"@grafana/scenes": "^3.6.0",{{/if_eq}}
|
|
72
72
|
"react": "18.2.0",
|
|
73
73
|
"react-dom": "18.2.0",{{#if isAppType}}
|
|
74
74
|
"react-router-dom": "^{{ reactRouterVersion }}",
|
|
@@ -143,7 +143,6 @@ jobs:
|
|
|
143
143
|
- uses: actions/checkout@v4
|
|
144
144
|
|
|
145
145
|
- name: Download plugin
|
|
146
|
-
if: needs.build.outputs.has-backend == 'true'
|
|
147
146
|
uses: actions/download-artifact@v4
|
|
148
147
|
with:
|
|
149
148
|
path: dist
|
|
@@ -152,7 +151,7 @@ jobs:
|
|
|
152
151
|
- name: Execute permissions on binary
|
|
153
152
|
if: needs.build.outputs.has-backend == 'true'
|
|
154
153
|
run: |
|
|
155
|
-
chmod +x ./dist/
|
|
154
|
+
chmod +x ./dist/gpx_*
|
|
156
155
|
|
|
157
156
|
{{#if_eq packageManagerName "pnpm"}}
|
|
158
157
|
# pnpm action uses the packageManager field in package.json to
|
|
@@ -203,7 +202,7 @@ jobs:
|
|
|
203
202
|
name: $\{{ matrix.GRAFANA_IMAGE.NAME }}-v$\{{ matrix.GRAFANA_IMAGE.VERSION }}-$\{{github.run_id}}-server-log
|
|
204
203
|
path: grafana-server.log
|
|
205
204
|
retention-days: 5
|
|
206
|
-
|
|
205
|
+
|
|
207
206
|
# Uncomment this step to upload the Playwright report to Github artifacts.
|
|
208
207
|
# If your repository is public, the report will be public on the Internet so beware not to expose sensitive information.
|
|
209
208
|
# - name: Upload artifacts
|