diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d296f5..fd5f6e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,15 @@ # Change Log +## 1.3.3 (2022-04-13) + +### Breaking changes +- Grafana v7.X.X or earlier is not supported from this version + +### Enhancements +- Build system for documentaion uses myst-parser instead of commonmark + +### Bug fixes +- **Frontend**: Fix initial value of function add button + ## 1.3.3 (2021-10-15) ### Enhancements diff --git a/docs/releases.md b/docs/releases.md index 7532889..bbfb099 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -1,4 +1,17 @@ # Release Notes +## 1.3.4 + +**2022-04-13** + +### Breaking changes +- Grafana v7.X.X or earlier is not supported from this version + +### Enhancements +- Build system for documentaion uses myst-parser instead of commonmark + +### Bug fixes +- **Frontend**: Fix initial value of function add button + ## 1.3.3 **2021-10-15** diff --git a/package.json b/package.json index 6ccbf38..5b47a50 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "sasaki77-archiver-appliance", "alerting": true, "private": true, - "version": "1.3.3", + "version": "1.3.4", "description": "ArchiverAppliance", "main": "index.js", "scripts": { diff --git a/src/plugin.json b/src/plugin.json index 1bbadff..e05e0d7 100644 --- a/src/plugin.json +++ b/src/plugin.json @@ -3,36 +3,42 @@ "name": "ArchiverAppliance", "id": "sasaki77-archiverappliance-datasource", "type": "datasource", - "metrics": true, "streaming": true, "annotations": false, "backend": true, "alerting": true, "executable": "gpx_archiver-datasource-backend", - "info": { "description": "Archiver Appliance Datasource", "author": { "name": "Shinya Sasaki", "url": "http://www-acc.kek.jp/WWW-ACC-exp/KEKB/control/KEKB-Control-home.html" }, - "keywords": ["EPICS", "Archiver Appliance"], + "keywords": [ + "EPICS", + "Archiver Appliance" + ], "logos": { "small": "img/EPICS_Logo.png", "large": "img/EPICS_Logo.png" }, "links": [ - {"name": "GitHub", "url": "https://github.com/sasaki77/archiverappliance-datasource"}, - {"name": "MIT License", "url": "https://github.com/sasaki77/archiverappliance-datasource/blob/master/LICENSE"} + { + "name": "GitHub", + "url": "https://github.com/sasaki77/archiverappliance-datasource" + }, + { + "name": "MIT License", + "url": "https://github.com/sasaki77/archiverappliance-datasource/blob/master/LICENSE" + } ], "version": "%VERSION%", "updated": "%TODAY%" }, - "dependencies": { - "grafanaDependency": ">=7.0.0", - "grafanaVersion": "7.x.x", + "grafanaDependency": ">=8.0.0", + "grafanaVersion": "8.x.x", "plugins": [] } -} +} \ No newline at end of file