@grafana/create-plugin 5.7.1-canary.1253.072a465.0 → 5.7.1

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
+ # v5.7.1 (Fri Oct 25 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Create Plugin: Fix broken panel test [#1253](https://github.com/grafana/plugin-tools/pull/1253) ([@sunker](https://github.com/sunker))
6
+
7
+ #### Authors: 1
8
+
9
+ - Erik Sundell ([@sunker](https://github.com/sunker))
10
+
11
+ ---
12
+
1
13
  # v5.7.0 (Thu Oct 24 2024)
2
14
 
3
15
  :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.1-canary.1253.072a465.0",
3
+ "version": "5.7.1",
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": "072a4653cc0566655b4d67db763b8cec180e002f"
89
+ "gitHead": "3cf97dd8d55f2890e467e51ba0b13535d92227af"
90
90
  }
@@ -33,7 +33,6 @@ test('should display series counter when "Show series counter" option is enabled
33
33
  await panelEditPage.setVisualization('{{kebabToPascalKebab pluginName }}');
34
34
  await panelEditPage.collapseSection('{{kebabToPascalKebab pluginName }}');
35
35
  await expect(page.getByTestId('simple-panel-circle')).toBeVisible();
36
-
37
36
  const seriesCounterLabel = panelEditPage.getByGrafanaSelector(
38
37
  selectors.components.PanelEditor.OptionsPane.fieldLabel('{{kebabToPascalKebab pluginName }} Show series counter')
39
38
  );