@grafana/create-plugin 6.7.0-canary.2360.20344510513.0 → 6.7.1-canary.2369.20789071772.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,20 @@
|
|
|
1
|
+
# v6.7.0 (Wed Jan 07 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: only support react router v6 for new plugin scaffolds [#2360](https://github.com/grafana/plugin-tools/pull/2360) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Update grafana patch dependencies to v12.3.1 [#2362](https://github.com/grafana/plugin-tools/pull/2362) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]))
|
|
10
|
+
|
|
11
|
+
#### Authors: 2
|
|
12
|
+
|
|
13
|
+
- [@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot])
|
|
14
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
1
18
|
# v6.6.0 (Thu Dec 18 2025)
|
|
2
19
|
|
|
3
20
|
#### 🚀 Enhancement
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "6.7.
|
|
3
|
+
"version": "6.7.1-canary.2369.20789071772.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=20"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "b5cde86c120bc4ae066c8e2751f317b86f56421f"
|
|
59
59
|
}
|
|
@@ -7,7 +7,7 @@ services:
|
|
|
7
7
|
context: .
|
|
8
8
|
args:
|
|
9
9
|
grafana_image: ${GRAFANA_IMAGE:-{{~grafanaImage~}} }
|
|
10
|
-
grafana_version: ${GRAFANA_VERSION:-12.3.
|
|
10
|
+
grafana_version: ${GRAFANA_VERSION:-12.3.1}
|
|
11
11
|
development: ${DEVELOPMENT:-false}
|
|
12
12
|
anonymous_auth_enabled: ${ANONYMOUS_AUTH_ENABLED:-true}
|
|
13
13
|
ports:
|
|
@@ -161,14 +161,10 @@ const config = async (env): Promise<Configuration> => {
|
|
|
161
161
|
{ from: 'plugin.json', to: '.' },
|
|
162
162
|
{ from: '../LICENSE', to: '.' },
|
|
163
163
|
{ from: '../CHANGELOG.md', to: '.', force: true },
|
|
164
|
-
{ from: '**/*.json', to: '.' },
|
|
165
|
-
{ from: '
|
|
166
|
-
{ from: '
|
|
167
|
-
{ from: '
|
|
168
|
-
{ from: 'img/**/*', to: '.', noErrorOnMissing: true }, // Optional
|
|
169
|
-
{ from: 'libs/**/*', to: '.', noErrorOnMissing: true }, // Optional
|
|
170
|
-
{ from: 'static/**/*', to: '.', noErrorOnMissing: true }, // Optional
|
|
171
|
-
{ from: '**/query_help.md', to: '.', noErrorOnMissing: true }, // Optional
|
|
164
|
+
{ from: '**/*.json', to: '.' },
|
|
165
|
+
{ from: 'img/logo.svg', to: '.', noErrorOnMissing: true },
|
|
166
|
+
{ from: 'img/screenshots/**/*', to: '.', noErrorOnMissing: true },
|
|
167
|
+
{ from: '**/query_help.md', to: '.', noErrorOnMissing: true },
|
|
172
168
|
],
|
|
173
169
|
}),
|
|
174
170
|
// Replace certain template-variables in the README and plugin.json
|
|
@@ -36,6 +36,18 @@ __webpack_public_path__ =
|
|
|
36
36
|
`,
|
|
37
37
|
});
|
|
38
38
|
|
|
39
|
+
const logoPaths = Array.from(
|
|
40
|
+
new Set([
|
|
41
|
+
pluginJson.info?.logos?.large,
|
|
42
|
+
pluginJson.info?.logos?.small,
|
|
43
|
+
])
|
|
44
|
+
).filter(Boolean);
|
|
45
|
+
|
|
46
|
+
const screenshotPaths =
|
|
47
|
+
Array.from(
|
|
48
|
+
new Set(pluginJson.info?.screenshots?.map((s) => s.path))
|
|
49
|
+
).filter(Boolean) || [];
|
|
50
|
+
|
|
39
51
|
export type Env = {
|
|
40
52
|
[key: string]: true | string | Env;
|
|
41
53
|
};
|
|
@@ -174,13 +186,10 @@ const config = async (env: Env): Promise<Configuration> => {
|
|
|
174
186
|
{ from: '../LICENSE', to: '.' },
|
|
175
187
|
{ from: '../CHANGELOG.md', to: '.', force: true },
|
|
176
188
|
{ from: '**/*.json', to: '.' },
|
|
177
|
-
{ from: '**/*.svg', to: '.', noErrorOnMissing: true },
|
|
178
|
-
{ from: '**/*.png', to: '.', noErrorOnMissing: true },
|
|
179
|
-
{ from: '**/*.html', to: '.', noErrorOnMissing: true },
|
|
180
|
-
{ from: 'img/**/*', to: '.', noErrorOnMissing: true },
|
|
181
|
-
{ from: 'libs/**/*', to: '.', noErrorOnMissing: true },
|
|
182
|
-
{ from: 'static/**/*', to: '.', noErrorOnMissing: true },
|
|
183
189
|
{ from: '**/query_help.md', to: '.', noErrorOnMissing: true },
|
|
190
|
+
...logoPaths.map((logoPath) => ({ from: logoPath, to: '.', noErrorOnMissing: true })),
|
|
191
|
+
...screenshotPaths.map((screenshotPath) => ({
|
|
192
|
+
from: screenshotPath, to: '.', noErrorOnMissing: true })),
|
|
184
193
|
],
|
|
185
194
|
}),
|
|
186
195
|
// Replace certain template-variables in the README and plugin.json
|
|
@@ -71,11 +71,11 @@
|
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@emotion/css": "11.10.6",
|
|
74
|
-
"@grafana/data": "^12.3.
|
|
75
|
-
"@grafana/i18n": "^12.3.
|
|
76
|
-
"@grafana/runtime": "^12.3.
|
|
77
|
-
"@grafana/ui": "^12.3.
|
|
78
|
-
"@grafana/schema": "^12.3.
|
|
74
|
+
"@grafana/data": "^12.3.1",
|
|
75
|
+
"@grafana/i18n": "^12.3.1",
|
|
76
|
+
"@grafana/runtime": "^12.3.1",
|
|
77
|
+
"@grafana/ui": "^12.3.1",
|
|
78
|
+
"@grafana/schema": "^12.3.1",{{#if_eq pluginType "scenesapp" }}
|
|
79
79
|
"@grafana/scenes": "{{ scenesVersion }}",{{/if_eq}}
|
|
80
80
|
"react": "^18.3.0",
|
|
81
81
|
"react-dom": "^18.3.0"{{#if isAppType}},
|