@grafana/create-plugin 4.11.0-canary.923.7afbfd0.0 → 4.11.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,27 @@
1
+ # v4.11.0 (Mon May 27 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Create-plugin: stop extracting plugin-meta on builds [#923](https://github.com/grafana/plugin-tools/pull/923) ([@leventebalogh](https://github.com/leventebalogh))
6
+
7
+ #### Authors: 1
8
+
9
+ - Levente Balogh ([@leventebalogh](https://github.com/leventebalogh))
10
+
11
+ ---
12
+
13
+ # v4.10.6 (Mon May 27 2024)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - Create plugin: CI workflow improvements [#890](https://github.com/grafana/plugin-tools/pull/890) ([@sunker](https://github.com/sunker))
18
+
19
+ #### Authors: 1
20
+
21
+ - Erik Sundell ([@sunker](https://github.com/sunker))
22
+
23
+ ---
24
+
1
25
  # v4.10.5 (Fri May 24 2024)
2
26
 
3
27
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "4.11.0-canary.923.7afbfd0.0",
3
+ "version": "4.11.0",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -87,5 +87,5 @@
87
87
  "engines": {
88
88
  "node": ">=20"
89
89
  },
90
- "gitHead": "7afbfd0f27400afb5b00f021b2f38e8142a22fd1"
90
+ "gitHead": "0115340dd531278b734bdfc171ce604b58e6afdc"
91
91
  }
@@ -141,11 +141,6 @@ jobs:
141
141
  runs-on: ubuntu-latest
142
142
  steps:
143
143
  - uses: actions/checkout@v4
144
- with:
145
- sparse-checkout: |
146
- provisioning
147
- tests
148
- .config
149
144
 
150
145
  - name: Download plugin
151
146
  if: needs.build.outputs.has-backend == 'true'
@@ -187,7 +182,7 @@ jobs:
187
182
  interval: 500
188
183
 
189
184
  - name: Install Playwright Browsers
190
- run: npx playwright install chromium --with-deps
185
+ run: {{ packageManagerName }} exec playwright install chromium --with-deps
191
186
 
192
187
  - name: Run Playwright tests
193
188
  id: run-tests
@@ -208,13 +203,13 @@ jobs:
208
203
  name: $\{{ matrix.GRAFANA_IMAGE.NAME }}-v$\{{ matrix.GRAFANA_IMAGE.VERSION }}-$\{{github.run_id}}-server-log
209
204
  path: grafana-server.log
210
205
  retention-days: 5
211
-
212
- # If your repository is public, uploading the Playwright report will make it public on the Internet.
213
- # Beware not to expose sensitive information.
214
- - name: Upload artifacts
215
- uses: actions/upload-artifact@v4
216
- if: $\{{ always() && steps.run-tests.outcome == 'failure' }}
217
- with:
218
- name: playwright-report-$\{{ matrix.GRAFANA_IMAGE.NAME }}-v$\{{ matrix.GRAFANA_IMAGE.VERSION }}-$\{{github.run_id}}
219
- path: playwright-report/
220
- retention-days: 5
206
+
207
+ # Uncomment this step to upload the Playwright report to Github artifacts.
208
+ # If your repository is public, the report will be public on the Internet so beware not to expose sensitive information.
209
+ # - name: Upload artifacts
210
+ # uses: actions/upload-artifact@v4
211
+ # if: $\{{ always() && steps.run-tests.outcome == 'failure' }}
212
+ # with:
213
+ # name: playwright-report-$\{{ matrix.GRAFANA_IMAGE.NAME }}-v$\{{ matrix.GRAFANA_IMAGE.VERSION }}-$\{{github.run_id}}
214
+ # path: playwright-report/
215
+ # retention-days: 5