@grafana/create-plugin 5.7.0-canary.1244.e9e6ada.0 → 5.7.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,24 @@
1
+ # v5.7.0 (Thu Oct 24 2024)
2
+
3
+ :tada: This release contains work from a new contributor! :tada:
4
+
5
+ Thank you, Jeff Levin ([@jalevin](https://github.com/jalevin)), for all your work!
6
+
7
+ #### 🚀 Enhancement
8
+
9
+ - Config: check environment for Grafana admin URL, username, and password [#1244](https://github.com/grafana/plugin-tools/pull/1244) ([@jalevin](https://github.com/jalevin))
10
+
11
+ #### 🐛 Bug Fix
12
+
13
+ - Update dependency @grafana/e2e to v11.0.7 [#1247](https://github.com/grafana/plugin-tools/pull/1247) ([@renovate[bot]](https://github.com/renovate[bot]))
14
+
15
+ #### Authors: 2
16
+
17
+ - [@renovate[bot]](https://github.com/renovate[bot])
18
+ - Jeff Levin ([@jalevin](https://github.com/jalevin))
19
+
20
+ ---
21
+
1
22
  # v5.6.0 (Fri Oct 18 2024)
2
23
 
3
24
  :tada: This release contains work from a new contributor! :tada:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "5.7.0-canary.1244.e9e6ada.0",
3
+ "version": "5.7.0",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -86,5 +86,5 @@
86
86
  "engines": {
87
87
  "node": ">=20"
88
88
  },
89
- "gitHead": "e9e6adaf85d48eeca31f21c7536ea8cee02ceae0"
89
+ "gitHead": "c435e71d872f8ca1d94049ba984f54d54c590f96"
90
90
  }
@@ -19,7 +19,7 @@
19
19
  "license": "Apache-2.0",
20
20
  "devDependencies": {
21
21
  "@babel/core": "^7.21.4",{{#if useCypress}}
22
- "@grafana/e2e": "^11.0.6",
22
+ "@grafana/e2e": "^11.0.7",
23
23
  "@grafana/e2e-selectors": "^11.2.2",{{/if}}
24
24
  "@grafana/eslint-config": "^7.0.0",{{#if usePlaywright}}
25
25
  "@grafana/plugin-e2e": "^1.8.3",{{/if}}
@@ -28,7 +28,7 @@ export default defineConfig<PluginOptions>({
28
28
  /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
29
29
  use: {
30
30
  /* Base URL to use in actions like `await page.goto('/')`. */
31
- baseURL: 'http://localhost:3000',
31
+ baseURL: process.env.GRAFANA_URL || 'http://localhost:3000',
32
32
 
33
33
  /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
34
34
  trace: 'on-first-retry',