@grafana/create-plugin 5.7.1-canary.1253.115af97.0 → 5.7.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,27 @@
|
|
|
1
|
+
# v5.7.2 (Mon Oct 28 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Fix: Dont default navigation page permissions to admin [#1243](https://github.com/grafana/plugin-tools/pull/1243) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v5.7.1 (Fri Oct 25 2024)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- Create Plugin: Fix broken panel test [#1253](https://github.com/grafana/plugin-tools/pull/1253) ([@sunker](https://github.com/sunker))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Erik Sundell ([@sunker](https://github.com/sunker))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v5.7.0 (Thu Oct 24 2024)
|
|
2
26
|
|
|
3
27
|
:tada: This release contains work from a new contributor! :tada:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.2",
|
|
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": "5e649891e3b1f35e7b78937c5bd2ceaa13e03b74"
|
|
90
90
|
}
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
"type": "page",
|
|
25
25
|
"name": "Page One",
|
|
26
26
|
"path": "/a/%PLUGIN_ID%/one",
|
|
27
|
-
"role": "Admin",
|
|
28
27
|
"addToNav": true,
|
|
29
28
|
"defaultNav": true
|
|
30
29
|
},
|
|
@@ -32,7 +31,6 @@
|
|
|
32
31
|
"type": "page",
|
|
33
32
|
"name": "Page Two",
|
|
34
33
|
"path": "/a/%PLUGIN_ID%/two",
|
|
35
|
-
"role": "Admin",
|
|
36
34
|
"addToNav": true,
|
|
37
35
|
"defaultNav": false
|
|
38
36
|
},
|
|
@@ -40,7 +38,6 @@
|
|
|
40
38
|
"type": "page",
|
|
41
39
|
"name": "Page Three",
|
|
42
40
|
"path": "/a/%PLUGIN_ID%/three",
|
|
43
|
-
"role": "Admin",
|
|
44
41
|
"addToNav": true,
|
|
45
42
|
"defaultNav": false
|
|
46
43
|
},
|
|
@@ -48,7 +45,6 @@
|
|
|
48
45
|
"type": "page",
|
|
49
46
|
"name": "Page Four",
|
|
50
47
|
"path": "/a/%PLUGIN_ID%/four",
|
|
51
|
-
"role": "Admin",
|
|
52
48
|
"addToNav": true,
|
|
53
49
|
"defaultNav": false
|
|
54
50
|
},
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@babel/core": "^7.21.4",{{#if useCypress}}
|
|
22
|
-
"@grafana/e2e": "^11.0.7",
|
|
23
|
-
"@grafana/e2e-selectors": "^11.2.2",{{/if}}
|
|
22
|
+
"@grafana/e2e": "^11.0.7",{{/if}}
|
|
24
23
|
"@grafana/eslint-config": "^7.0.0",{{#if usePlaywright}}
|
|
25
24
|
"@grafana/plugin-e2e": "^1.8.3",{{/if}}
|
|
26
25
|
"@grafana/tsconfig": "^2.0.0",{{#if usePlaywright}}
|
|
27
26
|
"@playwright/test": "^1.41.2",{{/if}}
|
|
27
|
+
"@grafana/e2e-selectors": "11.2.2",
|
|
28
28
|
"@swc/core": "^1.3.90",
|
|
29
29
|
"@swc/helpers": "^0.5.0",
|
|
30
30
|
"@swc/jest": "^0.2.26",
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
"type": "page",
|
|
27
27
|
"name": "Home",
|
|
28
28
|
"path": "/a/%PLUGIN_ID%/home",
|
|
29
|
-
"role": "Admin",
|
|
30
29
|
"addToNav": true,
|
|
31
30
|
"defaultNav": true
|
|
32
31
|
},
|
|
@@ -34,7 +33,6 @@
|
|
|
34
33
|
"type": "page",
|
|
35
34
|
"name": "Page with tabs",
|
|
36
35
|
"path": "/a/%PLUGIN_ID%/page-with-tabs",
|
|
37
|
-
"role": "Admin",
|
|
38
36
|
"addToNav": true,
|
|
39
37
|
"defaultNav": false
|
|
40
38
|
},
|
|
@@ -42,7 +40,6 @@
|
|
|
42
40
|
"type": "page",
|
|
43
41
|
"name": "Page with drilldown",
|
|
44
42
|
"path": "/a/%PLUGIN_ID%/page-with-drilldown",
|
|
45
|
-
"role": "Admin",
|
|
46
43
|
"addToNav": true,
|
|
47
44
|
"defaultNav": false
|
|
48
45
|
},
|
|
@@ -50,7 +47,6 @@
|
|
|
50
47
|
"type": "page",
|
|
51
48
|
"name": "Hello world",
|
|
52
49
|
"path": "/a/%PLUGIN_ID%/hello-world",
|
|
53
|
-
"role": "Admin",
|
|
54
50
|
"addToNav": true,
|
|
55
51
|
"defaultNav": false
|
|
56
52
|
}
|