@grafana/create-plugin 6.1.2 → 6.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 +12 -0
- package/package.json +2 -2
- package/templates/github/workflows/bundle-stats.yml +1 -1
- package/templates/github/workflows/ci.yml +4 -4
- package/templates/github/workflows/cp-update.yml +1 -1
- package/templates/github/workflows/is-compatible.yml +1 -1
- package/templates/github/workflows/release.yml +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v6.1.3 (Thu Oct 23 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create Plugin: Scaffold workflows with versioned actions [#2234](https://github.com/grafana/plugin-tools/pull/2234) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v6.1.2 (Tue Oct 21 2025)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"engines": {
|
|
62
62
|
"node": ">=20"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "a6f4c017ff678f3cf92ff72f6782c86f4d2fe69d"
|
|
65
65
|
}
|
|
@@ -146,7 +146,7 @@ jobs:
|
|
|
146
146
|
|
|
147
147
|
- name: Resolve Grafana E2E versions
|
|
148
148
|
id: resolve-versions
|
|
149
|
-
uses: grafana/plugin-actions/e2e-version@
|
|
149
|
+
uses: grafana/plugin-actions/e2e-version@v1.1.2
|
|
150
150
|
|
|
151
151
|
playwright-tests:
|
|
152
152
|
needs: [resolve-versions, build]
|
|
@@ -197,7 +197,7 @@ jobs:
|
|
|
197
197
|
ANONYMOUS_AUTH_ENABLED=false DEVELOPMENT=false GRAFANA_VERSION=$\{{ matrix.GRAFANA_IMAGE.VERSION }} GRAFANA_IMAGE=$\{{ matrix.GRAFANA_IMAGE.NAME }} docker compose up -d
|
|
198
198
|
|
|
199
199
|
- name: Wait for grafana server
|
|
200
|
-
uses: grafana/plugin-actions/wait-for-grafana@
|
|
200
|
+
uses: grafana/plugin-actions/wait-for-grafana@v1.0.2
|
|
201
201
|
with:
|
|
202
202
|
url: http://localhost:3000/login
|
|
203
203
|
|
|
@@ -209,7 +209,7 @@ jobs:
|
|
|
209
209
|
run: {{ packageManagerName }} run e2e
|
|
210
210
|
|
|
211
211
|
- name: Upload e2e test summary
|
|
212
|
-
uses: grafana/plugin-actions/playwright-gh-pages/upload-report-artifacts@
|
|
212
|
+
uses: grafana/plugin-actions/playwright-gh-pages/upload-report-artifacts@v1.0.1
|
|
213
213
|
if: $\{{ always() && !cancelled() }}
|
|
214
214
|
with:
|
|
215
215
|
upload-report: false
|
|
@@ -247,7 +247,7 @@ jobs:
|
|
|
247
247
|
# required for playwright-gh-pages
|
|
248
248
|
persist-credentials: true
|
|
249
249
|
- name: Publish report
|
|
250
|
-
uses: grafana/plugin-actions/playwright-gh-pages/deploy-report-pages@
|
|
250
|
+
uses: grafana/plugin-actions/playwright-gh-pages/deploy-report-pages@v1.0.1
|
|
251
251
|
with:
|
|
252
252
|
github-token: $\{{ secrets.GITHUB_TOKEN }}
|
|
253
253
|
|
|
@@ -18,7 +18,7 @@ jobs:
|
|
|
18
18
|
release:
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
steps:
|
|
21
|
-
- uses: grafana/plugin-actions/create-plugin-update@
|
|
21
|
+
- uses: grafana/plugin-actions/create-plugin-update@v1.1.0
|
|
22
22
|
# Uncomment to use a fine-grained personal access token instead of default github token
|
|
23
23
|
# (For more info on how to generate the token see https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens)
|
|
24
24
|
# with:
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
echo "modulets=${MODULETS}" >> $GITHUB_OUTPUT
|
|
37
37
|
|
|
38
38
|
- name: Compatibility check
|
|
39
|
-
uses: grafana/plugin-actions/is-compatible@
|
|
39
|
+
uses: grafana/plugin-actions/is-compatible@v1.0.2
|
|
40
40
|
with:
|
|
41
41
|
module: $\{{ steps.find-module-ts.outputs.modulets }}
|
|
42
42
|
comment-pr: "no"
|
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
with:
|
|
21
21
|
persist-credentials: false
|
|
22
22
|
|
|
23
|
-
- uses: grafana/plugin-actions/build-plugin@
|
|
23
|
+
- uses: grafana/plugin-actions/build-plugin@v1.0.2
|
|
24
24
|
# Uncomment to enable plugin signing
|
|
25
25
|
# (For more info on how to generate the access policy token see https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin#generate-an-access-policy-token)
|
|
26
26
|
#with:
|