@grafana/create-plugin 6.7.0-canary.2360.20344510513.0 → 6.7.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.0
|
|
3
|
+
"version": "6.7.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": "64e06e63f0c050e9f06a2b63a2f531497b06959f"
|
|
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:
|
|
@@ -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}},
|