@grafana/create-plugin 5.4.1 → 5.4.2-canary.1139.8baac77.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "5.4.1",
3
+ "version": "5.4.2-canary.1139.8baac77.0",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -88,5 +88,5 @@
88
88
  "engines": {
89
89
  "node": ">=20"
90
90
  },
91
- "gitHead": "bb55bd3395cd79c7a4eba228f77f9bd739f5f3e4"
91
+ "gitHead": "8baac77c4c5b326b87329dd9217d32c490d68e08"
92
92
  }
@@ -19,10 +19,10 @@
19
19
  "license": "Apache-2.0",
20
20
  "devDependencies": {
21
21
  "@babel/core": "^7.21.4",{{#if useCypress}}
22
- "@grafana/e2e": "^11.0.5",
23
- "@grafana/e2e-selectors": "^11.2.1",{{/if}}
22
+ "@grafana/e2e": "^11.0.6",
23
+ "@grafana/e2e-selectors": "^11.2.2",{{/if}}
24
24
  "@grafana/eslint-config": "^7.0.0",{{#if usePlaywright}}
25
- "@grafana/plugin-e2e": "^1.8.2",{{/if}}
25
+ "@grafana/plugin-e2e": "^1.8.3",{{/if}}
26
26
  "@grafana/tsconfig": "^2.0.0",{{#if usePlaywright}}
27
27
  "@playwright/test": "^1.41.2",{{/if}}
28
28
  "@swc/core": "^1.3.90",
@@ -64,11 +64,11 @@
64
64
  },
65
65
  "dependencies": {
66
66
  "@emotion/css": "11.10.6",
67
- "@grafana/data": "^11.2.1",
68
- "@grafana/runtime": "^11.2.1",
69
- "@grafana/ui": "^11.2.1",
67
+ "@grafana/data": "^11.2.2",
68
+ "@grafana/runtime": "^11.2.2",
69
+ "@grafana/ui": "^11.2.2",
70
70
  "@grafana/schema": "^10.4.0",{{#if_eq pluginType "scenesapp"}}
71
- "@grafana/scenes": "^5.16.1",{{/if_eq}}
71
+ "@grafana/scenes": "^5.16.2",{{/if_eq}}
72
72
  "react": "18.2.0",
73
73
  "react-dom": "18.2.0",{{#if isAppType}}
74
74
  "react-router-dom": "^{{ reactRouterVersion }}",
@@ -7,7 +7,7 @@ services:
7
7
  context: ./.config
8
8
  args:
9
9
  grafana_image: ${GRAFANA_IMAGE:-{{~grafanaImage~}} }
10
- grafana_version: ${GRAFANA_VERSION:-11.2.1}
10
+ grafana_version: ${GRAFANA_VERSION:-11.2.2}
11
11
  development: ${DEVELOPMENT:-false}
12
12
  ports:
13
13
  - 3000:3000/tcp
@@ -28,12 +28,6 @@ const HomePage = () => {
28
28
 
29
29
  return (
30
30
  <>
31
- {!config.featureToggles.topnav && (
32
- <Alert title="Missing topnav feature toggle">
33
- Scenes are designed to work with the new navigation wrapper that will be standard in Grafana 10
34
- </Alert>
35
- )}
36
-
37
31
  {!config.datasources[DATASOURCE_REF.uid] && (
38
32
  <Alert title={`Missing ${DATASOURCE_REF.uid} datasource`}>
39
33
  These demos depend on <b>testdata</b> datasource: <code>{JSON.stringify(DATASOURCE_REF)}</code>. See{' '}