Skip to content

Commit d5e1546

Browse files
committed
Allow plugin to be used with Grafana 9
Also improve CHANGELOG format.
1 parent f499ec2 commit d5e1546

File tree

5 files changed

+3730
-6297
lines changed

5 files changed

+3730
-6297
lines changed

CHANGELOG.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3-
## 1.0.0 (2022-05-06)
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
### Changed
11+
12+
- Loosened requirements on Grafana to allow the plugin to run on any version
13+
greater than 8.4.0.
14+
15+
## [1.0.0] - 2022-05-06
416

517
Initial release.
18+
19+
[unreleased]: https://github.com/sd2k/grafana-tokio-console-datasource/compare/v1.0.0...HEAD
20+
[1.0.0]: https://github.com/sd2k/grafana-tokio-console-datasource/tag/v1.0.0

docker-compose.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ services:
88
- "16686:16686"
99

1010
grafana:
11-
image: sd2k/grafana:table-charts
11+
# image: sd2k/grafana:table-charts
12+
image: grafana/grafana:9.0.7
1213
ports:
1314
- "3000:3000"
1415
restart: on-failure

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"author": "Ben Sully",
1414
"license": "Apache-2.0",
1515
"devDependencies": {
16-
"@grafana/data": "^8.4.1",
17-
"@grafana/runtime": "^8.4.1",
18-
"@grafana/toolkit": "^8.4.1",
19-
"@grafana/ui": "^8.4.1",
16+
"@grafana/data": "^9.0.0",
17+
"@grafana/runtime": "^9.0.0",
18+
"@grafana/toolkit": "^9.0.0",
19+
"@grafana/ui": "^9.0.0",
2020
"@types/lodash": "^4.14.177"
2121
},
2222
"resolutions": {
23-
"rxjs": "7.3.0"
23+
"rxjs": "7.5.5"
2424
},
2525
"engines": {
2626
"node": ">=14"

src/plugin.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"streaming": true,
99
"executable": "grafana-tokio-console-datasource",
1010
"dependencies": {
11-
"grafanaDependency": "^8.4.0"
11+
"grafanaDependency": ">=8.4.0"
1212
},
1313
"info": {
1414
"description": "Tokio Console datasource for Grafana",

0 commit comments

Comments
 (0)