@grafana/create-plugin 5.5.0-canary.999.0dd2652.0 → 5.5.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,34 @@
1
+ # v5.5.0 (Fri Oct 04 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Create Plugin: Support SRI in dynamic imported chunks [#999](https://github.com/grafana/plugin-tools/pull/999) ([@jackw](https://github.com/jackw))
6
+
7
+ #### 🐛 Bug Fix
8
+
9
+ - Update dependency @grafana/scenes to v5.16.3 [#1161](https://github.com/grafana/plugin-tools/pull/1161) ([@renovate[bot]](https://github.com/renovate[bot]))
10
+
11
+ #### Authors: 2
12
+
13
+ - [@renovate[bot]](https://github.com/renovate[bot])
14
+ - Jack Westbrook ([@jackw](https://github.com/jackw))
15
+
16
+ ---
17
+
18
+ # v5.4.2 (Thu Oct 03 2024)
19
+
20
+ #### 🐛 Bug Fix
21
+
22
+ - Create Plugin: Remove topnav feature flag from Scenes templates [#1139](https://github.com/grafana/plugin-tools/pull/1139) ([@jackw](https://github.com/jackw))
23
+ - Update grafana patch dependencies [#1156](https://github.com/grafana/plugin-tools/pull/1156) ([@renovate[bot]](https://github.com/renovate[bot]))
24
+
25
+ #### Authors: 2
26
+
27
+ - [@renovate[bot]](https://github.com/renovate[bot])
28
+ - Jack Westbrook ([@jackw](https://github.com/jackw))
29
+
30
+ ---
31
+
1
32
  # v5.4.1 (Tue Oct 01 2024)
2
33
 
3
34
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "5.5.0-canary.999.0dd2652.0",
3
+ "version": "5.5.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": "0dd26520ff30965c647bb59fce5a1cb76251ccd3"
91
+ "gitHead": "889ae14643d060d2317801a561bcbd918fa94c37"
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",
@@ -65,11 +65,11 @@
65
65
  },
66
66
  "dependencies": {
67
67
  "@emotion/css": "11.10.6",
68
- "@grafana/data": "^11.2.1",
69
- "@grafana/runtime": "^11.2.1",
70
- "@grafana/ui": "^11.2.1",
68
+ "@grafana/data": "^11.2.2",
69
+ "@grafana/runtime": "^11.2.2",
70
+ "@grafana/ui": "^11.2.2",
71
71
  "@grafana/schema": "^10.4.0",{{#if_eq pluginType "scenesapp"}}
72
- "@grafana/scenes": "^5.16.1",{{/if_eq}}
72
+ "@grafana/scenes": "^5.16.3",{{/if_eq}}
73
73
  "react": "18.2.0",
74
74
  "react-dom": "18.2.0",{{#if isAppType}}
75
75
  "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{' '}