@grafana/create-plugin 4.4.5 → 4.4.6

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
+ # v4.4.6 (Wed Apr 03 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Plugin E2E: Fix APIs that are broken in older versions of Grafana [#739](https://github.com/grafana/plugin-tools/pull/739) ([@sunker](https://github.com/sunker))
6
+
7
+ #### Authors: 1
8
+
9
+ - Erik Sundell ([@sunker](https://github.com/sunker))
10
+
11
+ ---
12
+
1
13
  # v4.4.5 (Tue Apr 02 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "4.4.5",
3
+ "version": "4.4.6",
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": "ab952cd39d5139a5b1826dbc017475d6ab061491"
90
+ "gitHead": "e6b578f7f1dbd3d405ac150e71b625ed3db5c82b"
91
91
  }
@@ -17,7 +17,7 @@ export function printGenerateSuccessMessage(answers: CliArgs) {
17
17
  : []),
18
18
  '- `docker-compose up` to start a grafana development server. ' +
19
19
  (answers.hasBackend
20
- ? 'The plugin backend will be reloaded on every code change and a debugger can be attached on port `2345`.'
20
+ ? 'The plugin backend will be reloaded on every code change and a debugger can be attached on port `2345`.'
21
21
  : ''),
22
22
  '- Open http://localhost:3000 in your browser to create a dashboard to begin developing your plugin.',
23
23
  ];