@grafana/create-plugin 5.7.2 → 5.7.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 +15 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# v5.7.3 (Mon Oct 28 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Update dependency which to v5 [#1242](https://github.com/grafana/plugin-tools/pull/1242) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
6
|
+
- Update dependency boxen to v8 [#1194](https://github.com/grafana/plugin-tools/pull/1194) ([@renovate[bot]](https://github.com/renovate[bot]) [@jackw](https://github.com/jackw))
|
|
7
|
+
- Update dependency glob to v11 [#1209](https://github.com/grafana/plugin-tools/pull/1209) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
8
|
+
|
|
9
|
+
#### Authors: 2
|
|
10
|
+
|
|
11
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
12
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
1
16
|
# v5.7.2 (Mon Oct 28 2024)
|
|
2
17
|
|
|
3
18
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -45,20 +45,20 @@
|
|
|
45
45
|
"@types/minimist": "^1.2.2",
|
|
46
46
|
"@types/semver": "^7.3.9",
|
|
47
47
|
"@types/which": "^3.0.0",
|
|
48
|
-
"boxen": "^
|
|
48
|
+
"boxen": "^8.0.0",
|
|
49
49
|
"chalk": "^5.3.0",
|
|
50
50
|
"change-case": "^5.4.0",
|
|
51
51
|
"debug": "^4.3.4",
|
|
52
52
|
"enquirer": "^2.4.1",
|
|
53
53
|
"find-up": "^7.0.0",
|
|
54
|
-
"glob": "^
|
|
54
|
+
"glob": "^11.0.0",
|
|
55
55
|
"handlebars": "^4.7.8",
|
|
56
56
|
"marked": "^10.0.0",
|
|
57
57
|
"marked-terminal": "^7.0.0",
|
|
58
58
|
"minimist": "^1.2.8",
|
|
59
59
|
"semver": "^7.3.5",
|
|
60
60
|
"title-case": "^4.3.0",
|
|
61
|
-
"which": "^
|
|
61
|
+
"which": "^5.0.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@types/glob": "^8.0.0",
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"engines": {
|
|
87
87
|
"node": ">=20"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "3eb6ac7cd7ea8c5377e25d9d25c9daedced940b0"
|
|
90
90
|
}
|