@grafana/create-plugin 7.1.2 → 7.1.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 +13 -0
- package/package.json +2 -2
- package/templates/github/workflows/ci.yml +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v7.1.3 (Fri Apr 03 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Update actions/upload-artifact action to v7 [#2531](https://github.com/grafana/plugin-tools/pull/2531) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]) [@Ukochka](https://github.com/Ukochka))
|
|
6
|
+
|
|
7
|
+
#### Authors: 2
|
|
8
|
+
|
|
9
|
+
- [@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot])
|
|
10
|
+
- Yulia Shanyrova ([@Ukochka](https://github.com/Ukochka))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v7.1.2 (Wed Apr 01 2026)
|
|
2
15
|
|
|
3
16
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.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": "c95bb1228a44973c4c15afcbbdef584183a4094d"
|
|
59
59
|
}
|
|
@@ -129,7 +129,7 @@ jobs:
|
|
|
129
129
|
ARCHIVE: $\{{ steps.metadata.outputs.archive }}
|
|
130
130
|
|
|
131
131
|
- name: Archive Build
|
|
132
|
-
uses: actions/upload-artifact@
|
|
132
|
+
uses: actions/upload-artifact@v7
|
|
133
133
|
with:
|
|
134
134
|
name: $\{{ steps.metadata.outputs.plugin-id }}-$\{{ steps.metadata.outputs.plugin-version }}
|
|
135
135
|
path: $\{{ steps.metadata.outputs.plugin-id }}
|