@grafana/create-plugin 6.7.4 → 6.7.5

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,17 @@
1
+ # v6.7.5 (Wed Jan 14 2026)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - chore(deps): update create-plugin template github actions [#2389](https://github.com/grafana/plugin-tools/pull/2389) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]))
6
+ - chore(deps): update dependency @grafana/plugin-e2e to v3.1.2 [#2386](https://github.com/grafana/plugin-tools/pull/2386) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]))
7
+ - chore(deps): update grafana patch dependencies [#2375](https://github.com/grafana/plugin-tools/pull/2375) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]))
8
+
9
+ #### Authors: 1
10
+
11
+ - [@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot])
12
+
13
+ ---
14
+
1
15
  # v6.7.4 (Mon Jan 12 2026)
2
16
 
3
17
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "6.7.4",
3
+ "version": "6.7.5",
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": "028df803a5456ef21d6f7456f9d6ce2fa369123e"
58
+ "gitHead": "3c933d799eec198c540a61fde1af6b02808f532c"
59
59
  }
@@ -17,8 +17,8 @@
17
17
  "license": "Apache-2.0",
18
18
  "devDependencies": {
19
19
  "@grafana/eslint-config": "^9.0.0",
20
- "@grafana/plugin-e2e": "^3.1.0",
21
- "@grafana/tsconfig": "^2.0.0",
20
+ "@grafana/plugin-e2e": "^3.1.2",
21
+ "@grafana/tsconfig": "^2.0.1",
22
22
  "@playwright/test": "^1.57.0",{{#if useExperimentalRspack}}
23
23
  "@rspack/core": "^1.6.0",
24
24
  "@rspack/cli": "^1.6.0",{{/if}}
@@ -20,7 +20,7 @@ jobs:
20
20
 
21
21
  steps:
22
22
  - name: Checkout repository
23
- uses: actions/checkout@v5
23
+ uses: actions/checkout@v6
24
24
  with:
25
25
  persist-credentials: false
26
26
 
@@ -25,7 +25,7 @@ jobs:
25
25
  env:
26
26
  GRAFANA_ACCESS_POLICY_TOKEN: $\{{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
27
27
  steps:
28
- - uses: actions/checkout@v5
28
+ - uses: actions/checkout@v6
29
29
  with:
30
30
  persist-credentials: false
31
31
  {{#if_eq packageManagerName "pnpm"}}
@@ -122,7 +122,7 @@ jobs:
122
122
  ARCHIVE: $\{{ steps.metadata.outputs.archive }}
123
123
 
124
124
  - name: Archive Build
125
- uses: actions/upload-artifact@v5
125
+ uses: actions/upload-artifact@v6
126
126
  with:
127
127
  name: $\{{ steps.metadata.outputs.plugin-id }}-$\{{ steps.metadata.outputs.plugin-version }}
128
128
  path: $\{{ steps.metadata.outputs.plugin-id }}
@@ -140,7 +140,7 @@ jobs:
140
140
  matrix: $\{{ steps.resolve-versions.outputs.matrix }}
141
141
  steps:
142
142
  - name: Checkout
143
- uses: actions/checkout@v5
143
+ uses: actions/checkout@v6
144
144
  with:
145
145
  persist-credentials: false
146
146
 
@@ -162,12 +162,12 @@ jobs:
162
162
  name: e2e test $\{{ matrix.GRAFANA_IMAGE.name }}@$\{{ matrix.GRAFANA_IMAGE.VERSION }}
163
163
  runs-on: ubuntu-latest
164
164
  steps:
165
- - uses: actions/checkout@v5
165
+ - uses: actions/checkout@v6
166
166
  with:
167
167
  persist-credentials: false
168
168
 
169
169
  - name: Download plugin
170
- uses: actions/download-artifact@v6
170
+ uses: actions/download-artifact@v7
171
171
  with:
172
172
  path: dist
173
173
  name: $\{{ needs.build.outputs.plugin-id }}-$\{{ needs.build.outputs.plugin-version }}
@@ -242,7 +242,7 @@ jobs:
242
242
  needs: [playwright-tests]
243
243
  runs-on: ubuntu-latest
244
244
  steps:
245
- - uses: actions/checkout@v5
245
+ - uses: actions/checkout@v6
246
246
  with:
247
247
  # required for playwright-gh-pages
248
248
  persist-credentials: true
@@ -7,7 +7,7 @@ jobs:
7
7
  permissions:
8
8
  contents: read
9
9
  steps:
10
- - uses: actions/checkout@v5
10
+ - uses: actions/checkout@v6
11
11
  with:
12
12
  persist-credentials: false
13
13
 
@@ -18,7 +18,7 @@ jobs:
18
18
  {{/if_eq}}
19
19
 
20
20
  - name: Setup Node.js environment
21
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
21
+ uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
22
22
  with:
23
23
  node-version: '22'
24
24
  cache: '{{ packageManagerName }}'
@@ -16,7 +16,7 @@ jobs:
16
16
  contents: write
17
17
  runs-on: ubuntu-latest
18
18
  steps:
19
- - uses: actions/checkout@v5
19
+ - uses: actions/checkout@v6
20
20
  with:
21
21
  persist-credentials: false
22
22