@grafana/create-plugin 7.2.3-canary.2560.93ad07b.0 → 7.3.0

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
+ # v7.3.0 (Thu Apr 30 2026)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - CI: bump plugin-actions/e2e-version to v2.0.0 [#2594](https://github.com/grafana/plugin-tools/pull/2594) ([@sunker](https://github.com/sunker))
6
+
7
+ #### Authors: 1
8
+
9
+ - Erik Sundell ([@sunker](https://github.com/sunker))
10
+
11
+ ---
12
+
1
13
  # v7.2.2 (Sat Apr 25 2026)
2
14
 
3
15
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "7.2.3-canary.2560.93ad07b.0",
3
+ "version": "7.3.0",
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": "93ad07be494debf4405ddf926b0ac541bb905f88"
58
+ "gitHead": "5ab982a27ffff628e5a718dce885b5599176aefa"
59
59
  }
@@ -31,7 +31,7 @@ jobs:
31
31
  {{#if_eq packageManagerName "pnpm"}}
32
32
  # pnpm action uses the packageManager field in package.json to
33
33
  # understand which version to install.
34
- - uses: pnpm/action-setup@v6
34
+ - uses: pnpm/action-setup@v4
35
35
  {{/if_eq}}
36
36
  - name: Setup Node.js environment
37
37
  uses: actions/setup-node@v6
@@ -74,14 +74,14 @@ jobs:
74
74
 
75
75
  - name: Build backend
76
76
  if: steps.check-for-backend.outputs.has-backend == 'true'
77
- uses: magefile/mage-action@a662bd8c29d8106879588cfff83b2faf6e6f59db # v4
77
+ uses: magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b # v3.1.0
78
78
  with:
79
79
  version: latest
80
80
  args: buildAll
81
81
 
82
82
  - name: Test backend
83
83
  if: steps.check-for-backend.outputs.has-backend == 'true'
84
- uses: magefile/mage-action@a662bd8c29d8106879588cfff83b2faf6e6f59db # v4
84
+ uses: magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b # v3.1.0
85
85
  with:
86
86
  version: latest
87
87
  args: test
@@ -153,7 +153,7 @@ jobs:
153
153
 
154
154
  - name: Resolve Grafana E2E versions
155
155
  id: resolve-versions
156
- uses: grafana/plugin-actions/e2e-version@e2e-version/v1.1.2
156
+ uses: grafana/plugin-actions/e2e-version@e2e-version/v2.0.0
157
157
 
158
158
  playwright-tests:
159
159
  needs: [resolve-versions, build]
@@ -187,7 +187,7 @@ jobs:
187
187
  {{#if_eq packageManagerName "pnpm"}}
188
188
  # pnpm action uses the packageManager field in package.json to
189
189
  # understand which version to install.
190
- - uses: pnpm/action-setup@v6
190
+ - uses: pnpm/action-setup@v4
191
191
  {{/if_eq}}
192
192
  - name: Setup Node.js environment
193
193
  uses: actions/setup-node@v6
@@ -14,11 +14,11 @@ jobs:
14
14
  {{#if_eq packageManagerName "pnpm"}}
15
15
  # pnpm action uses the packageManager field in package.json to
16
16
  # understand which version to install.
17
- - uses: pnpm/action-setup@08c4be7e2e672a47d11bd04269e27e5f3e8529cb # v6.0.0
17
+ - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
18
18
  {{/if_eq}}
19
19
 
20
20
  - name: Setup Node.js environment
21
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
21
+ uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
22
22
  with:
23
23
  node-version: '22'
24
24
  cache: '{{ packageManagerName }}'