@grafana/create-plugin 6.2.0-canary.2314.19529376890.0 → 6.3.0-canary.2314.19529525779.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,15 @@
|
|
|
1
|
+
# v6.2.0 (Thu Nov 20 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Create Plugin: Support new add cmd [#2233](https://github.com/grafana/plugin-tools/pull/2233) ([@sunker](https://github.com/sunker))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Erik Sundell ([@sunker](https://github.com/sunker))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v6.1.14 (Wed Nov 19 2025)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0-canary.2314.19529525779.0",
|
|
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": "41ae4942f75e34ef8c07414e6a9eb07c8c3cb058"
|
|
65
65
|
}
|
|
@@ -21,7 +21,7 @@ A typical panel plugin includes:
|
|
|
21
21
|
## **Main module (`src/module.ts`)**
|
|
22
22
|
|
|
23
23
|
- Exports: `new PanelPlugin(PanelComponent)`
|
|
24
|
-
- Registers panel options, migrations, defaults, extensions
|
|
24
|
+
- Registers panel options, migrations, defaults, ui extensions
|
|
25
25
|
|
|
26
26
|
## **Panel component (`src/components/Panel.tsx`)**
|
|
27
27
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
## Project overview
|
|
2
2
|
|
|
3
|
-
This repository contains a **Grafana panel plugin**.
|
|
3
|
+
This repository contains a **Grafana panel plugin**. Before making changes, the agent must read and follow all rules in ./config/AGENTS/fundamentals.md.
|