@grafana/create-plugin 7.0.3-canary.2510.22709409807.0 → 7.0.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,15 @@
|
|
|
1
|
+
# v7.0.3 (Thu Mar 05 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix: exit migrate command if plugin is using create-plugin [#2510](https://github.com/grafana/plugin-tools/pull/2510) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v7.0.2 (Tue Mar 03 2026)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -23,7 +23,7 @@ const migrate = async (argv) => {
|
|
|
23
23
|
title: `Your plugin is already using create-plugin.`,
|
|
24
24
|
body: [
|
|
25
25
|
"This command is designed to migrate plugins from @grafana/toolkit to @grafana/create-plugin, it should not be used to update plugins that already use @grafana/create-plugin.",
|
|
26
|
-
|
|
26
|
+
`To update your plugin to the latest version of @grafana/create-plugin please use the ${output.formatCode("update")} command instead.`
|
|
27
27
|
]
|
|
28
28
|
});
|
|
29
29
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "7.0.3
|
|
3
|
+
"version": "7.0.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=20"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "af7129641c70c4b880917b40a40ca50a2d1150fa"
|
|
59
59
|
}
|
|
@@ -39,7 +39,7 @@ export const migrate = async (argv: minimist.ParsedArgs) => {
|
|
|
39
39
|
title: `Your plugin is already using create-plugin.`,
|
|
40
40
|
body: [
|
|
41
41
|
'This command is designed to migrate plugins from @grafana/toolkit to @grafana/create-plugin, it should not be used to update plugins that already use @grafana/create-plugin.',
|
|
42
|
-
|
|
42
|
+
`To update your plugin to the latest version of @grafana/create-plugin please use the ${output.formatCode('update')} command instead.`,
|
|
43
43
|
],
|
|
44
44
|
});
|
|
45
45
|
process.exit(1);
|