@grafana/create-plugin 5.22.3 → 5.22.4
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
|
+
# v5.22.4 (Wed Jun 11 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Update dependency @grafana/plugin-e2e to v2.0.4 [#1878](https://github.com/grafana/plugin-tools/pull/1878) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v5.22.3 (Wed Jun 11 2025)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/README.md
CHANGED
|
@@ -105,7 +105,7 @@ For more information see [here](https://grafana.com/developers/plugin-tools/migr
|
|
|
105
105
|
|
|
106
106
|
## Customizing or extending the basic configs
|
|
107
107
|
|
|
108
|
-
You can read more about customizing or extending the basic configuration in our [documentation](https://grafana.com/developers/plugin-tools/
|
|
108
|
+
You can read more about customizing or extending the basic configuration in our [documentation](https://grafana.com/developers/plugin-tools/how-to-guides/extend-configurations).
|
|
109
109
|
|
|
110
110
|
## Add provisioning to your existing plugin
|
|
111
111
|
|
|
@@ -93,7 +93,7 @@ const migrate = async () => {
|
|
|
93
93
|
body: [
|
|
94
94
|
chalk.bold("What's next?"),
|
|
95
95
|
...nextSteps,
|
|
96
|
-
"See instructions on how to customize your configuration here: https://grafana.com/developers/plugin-tools/
|
|
96
|
+
"See instructions on how to customize your configuration here: https://grafana.com/developers/plugin-tools/how-to-guides/extend-configurations"
|
|
97
97
|
]
|
|
98
98
|
});
|
|
99
99
|
} catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "5.22.
|
|
3
|
+
"version": "5.22.4",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=20"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "c52e2d9d5931c57ba86c0e84dc5defbb4b4df006"
|
|
62
62
|
}
|
|
@@ -163,7 +163,7 @@ export const migrate = async () => {
|
|
|
163
163
|
body: [
|
|
164
164
|
chalk.bold("What's next?"),
|
|
165
165
|
...nextSteps,
|
|
166
|
-
'See instructions on how to customize your configuration here: https://grafana.com/developers/plugin-tools/
|
|
166
|
+
'See instructions on how to customize your configuration here: https://grafana.com/developers/plugin-tools/how-to-guides/extend-configurations',
|
|
167
167
|
],
|
|
168
168
|
});
|
|
169
169
|
} catch (error) {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
{{#if useCypress}} "@grafana/e2e": "^11.0.7",
|
|
22
22
|
"@grafana/e2e-selectors": "^11.5.2",{{/if}}
|
|
23
23
|
"@grafana/eslint-config": "^8.0.0",{{#if usePlaywright}}
|
|
24
|
-
"@grafana/plugin-e2e": "^2.0.
|
|
24
|
+
"@grafana/plugin-e2e": "^2.0.4",{{/if}}
|
|
25
25
|
"@grafana/tsconfig": "^2.0.0",{{#if usePlaywright}}
|
|
26
26
|
"@playwright/test": "^1.52.0",{{/if}}
|
|
27
27
|
"@stylistic/eslint-plugin-ts": "^2.9.0",
|