@grafana/create-plugin 4.2.3-canary.819.704d66c.0 → 4.2.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
|
+
# v4.2.3 (Thu Mar 14 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix: respect package manager in update next steps [#819](https://github.com/grafana/plugin-tools/pull/819) ([@sympatheticmoose](https://github.com/sympatheticmoose))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- David Harris ([@sympatheticmoose](https://github.com/sympatheticmoose))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.2.1 (Thu Feb 29 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -48,7 +48,7 @@ In case you want to proceed as is please use the ${chalk.bold('--force')} flag.)
|
|
|
48
48
|
${chalk.bold('@grafana/create-plugin version:')} ${getVersion()}
|
|
49
49
|
|
|
50
50
|
${chalk.bold.underline('Next steps:')}
|
|
51
|
-
- 1. Run ${chalk.bold(packageManagerName
|
|
51
|
+
- 1. Run ${chalk.bold(`${packageManagerName} install`)} to install the package updates
|
|
52
52
|
- 2. Check if you encounter any breaking changes
|
|
53
53
|
(refer to our migration guide: https://grafana.com/developers/plugin-tools/migration-guides/update-from-grafana-versions/)
|
|
54
54
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "4.2.3
|
|
3
|
+
"version": "4.2.3",
|
|
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": "fc7765ded4df3286389ed3c18d68bdd19a65af9d"
|
|
91
91
|
}
|
|
@@ -62,7 +62,7 @@ In case you want to proceed as is please use the ${chalk.bold('--force')} flag.)
|
|
|
62
62
|
${chalk.bold('@grafana/create-plugin version:')} ${getVersion()}
|
|
63
63
|
|
|
64
64
|
${chalk.bold.underline('Next steps:')}
|
|
65
|
-
- 1. Run ${chalk.bold(packageManagerName
|
|
65
|
+
- 1. Run ${chalk.bold(`${packageManagerName} install`)} to install the package updates
|
|
66
66
|
- 2. Check if you encounter any breaking changes
|
|
67
67
|
(refer to our migration guide: https://grafana.com/developers/plugin-tools/migration-guides/update-from-grafana-versions/)
|
|
68
68
|
|