@grafana/create-plugin 5.26.5 → 5.26.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,17 @@
|
|
|
1
|
+
# v5.26.6 (Tue Sep 23 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Chore: externalize i18next in rspack config [#2140](https://github.com/grafana/plugin-tools/pull/2140) ([@hugohaggmark](https://github.com/hugohaggmark))
|
|
6
|
+
- Update dependency @grafana/plugin-e2e to v2.1.13 [#2127](https://github.com/grafana/plugin-tools/pull/2127) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
11
|
+
- Hugo Häggmark ([@hugohaggmark](https://github.com/hugohaggmark))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
1
15
|
# v5.26.5 (Thu Sep 18 2025)
|
|
2
16
|
|
|
3
17
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "5.26.
|
|
3
|
+
"version": "5.26.6",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"engines": {
|
|
62
62
|
"node": ">=20"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "1fb0d0d6ee892a799774c3da435c2270e1b93294"
|
|
65
65
|
}
|
|
@@ -58,6 +58,7 @@ const config = async (env): Promise<Configuration> => {
|
|
|
58
58
|
'react-redux',
|
|
59
59
|
'redux',
|
|
60
60
|
'rxjs',
|
|
61
|
+
'i18next',
|
|
61
62
|
'react-router',{{#unless useReactRouterV6}}
|
|
62
63
|
'react-router-dom',{{/unless}}
|
|
63
64
|
'd3',
|
|
@@ -65,8 +66,7 @@ const config = async (env): Promise<Configuration> => {
|
|
|
65
66
|
/^@grafana\/ui/i,{{/unless}}
|
|
66
67
|
/^@grafana\/runtime/i,
|
|
67
68
|
/^@grafana\/data/i,{{#if bundleGrafanaUI}}
|
|
68
|
-
'react-inlinesvg',
|
|
69
|
-
'i18next',{{/if}}
|
|
69
|
+
'react-inlinesvg',{{/if}}
|
|
70
70
|
|
|
71
71
|
// Mark legacy SDK imports as external if their name starts with the "grafana/" prefix
|
|
72
72
|
//@ts-ignore - rspack types seem to be a bit broken here.
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
{{#if useCypress}} "@grafana/e2e": "^11.0.7",
|
|
22
22
|
"@grafana/e2e-selectors": "^12.1.0",{{/if}}
|
|
23
23
|
"@grafana/eslint-config": "^8.2.0",{{#if usePlaywright}}
|
|
24
|
-
"@grafana/plugin-e2e": "^2.1.
|
|
24
|
+
"@grafana/plugin-e2e": "^2.1.13",{{/if}}
|
|
25
25
|
"@grafana/tsconfig": "^2.0.0",{{#if usePlaywright}}
|
|
26
26
|
"@playwright/test": "^1.52.0",{{/if}}{{#if useExperimentalRspack}}
|
|
27
27
|
"@rspack/core": "^1.3.0",
|