@grafana/create-plugin 5.4.2-canary.1160.a37d5f1.0 → 5.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,17 @@
|
|
|
1
|
+
# v5.4.2 (Thu Oct 03 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create Plugin: Remove topnav feature flag from Scenes templates [#1139](https://github.com/grafana/plugin-tools/pull/1139) ([@jackw](https://github.com/jackw))
|
|
6
|
+
- Update grafana patch dependencies [#1156](https://github.com/grafana/plugin-tools/pull/1156) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
11
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
1
15
|
# v5.4.1 (Tue Oct 01 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.4.2
|
|
3
|
+
"version": "5.4.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"engines": {
|
|
89
89
|
"node": ">=20"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "9173115b5fb522c90de7c569b1513459c4f47fb1"
|
|
92
92
|
}
|
|
@@ -16,13 +16,12 @@ Remove any remaining comments before publishing as these may be displayed on Gra
|
|
|
16
16
|
Badges convey useful information at a glance for users whether in the Catalog or viewing the source code. You can use the generator on [Shields.io](https://shields.io/badges/dynamic-json-badge) together with the Grafana.com API
|
|
17
17
|
to create dynamic badges that update automatically when you publish a new version to the marketplace.
|
|
18
18
|
|
|
19
|
-
- For the
|
|
20
|
-
-
|
|
21
|
-
- Downloads:
|
|
22
|
-
- Catalog Version:
|
|
23
|
-
- Grafana Dependency:
|
|
24
|
-
- Signature Type:
|
|
25
|
-
- Optionally, for the logo parameter use `grafana`.
|
|
19
|
+
- For the logo field use 'grafana'.
|
|
20
|
+
- Examples (label: query)
|
|
21
|
+
- Downloads: $.downloads
|
|
22
|
+
- Catalog Version: $.version
|
|
23
|
+
- Grafana Dependency: $.grafanaDependency
|
|
24
|
+
- Signature Type: $.versionSignatureType
|
|
26
25
|
|
|
27
26
|
Full example: 
|
|
28
27
|
|
|
@@ -28,12 +28,6 @@ const HomePage = () => {
|
|
|
28
28
|
|
|
29
29
|
return (
|
|
30
30
|
<>
|
|
31
|
-
{!config.featureToggles.topnav && (
|
|
32
|
-
<Alert title="Missing topnav feature toggle">
|
|
33
|
-
Scenes are designed to work with the new navigation wrapper that will be standard in Grafana 10
|
|
34
|
-
</Alert>
|
|
35
|
-
)}
|
|
36
|
-
|
|
37
31
|
{!config.datasources[DATASOURCE_REF.uid] && (
|
|
38
32
|
<Alert title={`Missing ${DATASOURCE_REF.uid} datasource`}>
|
|
39
33
|
These demos depend on <b>testdata</b> datasource: <code>{JSON.stringify(DATASOURCE_REF)}</code>. See{' '}
|