From 18be95e87933686c94ef5fafa1b87609edbe4a7e Mon Sep 17 00:00:00 2001 From: Jacob Colvin Date: Mon, 26 Jul 2021 22:23:22 -0400 Subject: [PATCH] Bump plugin version (2.0.0 -> 2.0.1) --- CHANGELOG.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- server/README.md | 2 +- src/plugin.json | 4 ++-- 4 files changed, 52 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..582d57f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,48 @@ +# Changelog + +## 2.0.1 (2021-07-26) + +- Use Grafana's eslint config (#20). +- Updates plugin dependencies. +- Switches to Grafana plugin workflows for CI/Release. + +## 2.0.0 (2021-04-21) + +- Panel is now stateless, sessions are matched using a UUID, not a database ID. +- Panel now optionally forwards heartbeats, which can be used to accurately report session duration. +- New payload schema, now including variables & focused state. +- Updates and cleans up plugin dependencies. +- Adds a verified Grafana signature. +- Adds an included backend server (see readme for details). +- Adds better examples, docs, descriptions, etc. + +## 1.1.1 (2020-08-06) + +- Fixes an issue with Grafana 7.1 compatibility (#5). + +## 1.1.0 (2020-08-06) + +- Rethrows exceptions on post issues (to make finding non-working panels easier). +- Adds an optional config file that can be used to specify default settings. +- Adds support for template variables (value to change in #6). + +## 1.0.0 (2020-06-15) + +- Removes references to Grafana Angular components. +- Replaces JSON component with Grafana React JSON component. +- Adds an option to toggle between normal and flattened data. +- Displays errors on the panel when a fetch cannot be completed. + +## 0.0.3 (2020-06-09) + +- Fixes an issue where references were incorrect in Grafana 7. +- Flattens output JSON to support Telegraf's HTTP listener. +- Adds switchable CORS modes to support some Telegraf environments. + +## 0.0.2 (2020-06-09) + +- Grafana 7 hotfix. + +## 0.0.1 (2019-11-30) + +- Initial release. diff --git a/package.json b/package.json index c9e5414..eb1c7b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "analytics-panel", - "version": "2.0.0", + "version": "2.0.1", "description": "Grafana Analytics Panel", "license": "GPL-2.0", "repository": { diff --git a/server/README.md b/server/README.md index 87db821..3b73236 100644 --- a/server/README.md +++ b/server/README.md @@ -57,7 +57,7 @@ Flags: | Server | Panel | | ------ | ----- | | | 1.x.x | -| 0.0.1 | 2.0.0 | +| 0.0.1 | 2.0.x | ## Examples diff --git a/src/plugin.json b/src/plugin.json index 90fb2ac..4a5b13a 100644 --- a/src/plugin.json +++ b/src/plugin.json @@ -20,8 +20,8 @@ } ], "screenshots": [], - "version": "2.0.0", - "updated": "2021-04-11" + "version": "2.0.1", + "updated": "2021-07-26" }, "dependencies": { "grafanaVersion": "7.x.x",