diff --git a/CHANGELOG.md b/CHANGELOG.md index ef41cb308..2fa5f4b2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Order should be `CHANGE`, `FEATURE`, `ENHANCEMENT`, and `BUGFIX` +## v0.10.3 + +* [BUGFIX] Fix `cortextool analyse grafana` failure on certain dashboards that use templating and/or panel heights due to unmarshalling errors with the underlying `grafana-tools/sdk` library. #192 + ## v0.10.2 * [FEATURE] Blockgen: adding a new tool to generate blocks of mock data. diff --git a/changelogs/v0.10.2.md b/changelogs/v0.10.2.md index dd3838616..71575a830 100644 --- a/changelogs/v0.10.2.md +++ b/changelogs/v0.10.2.md @@ -13,7 +13,7 @@ ```console # download the binary (adapt os and arch as needed) -$ curl -fSL -o "/usr/local/bin/cortextool" "https://github.com/grafana/cortex-tools/releases/download/v0.10.1/cortextool_0.10.1_linux_x86_64" +$ curl -fSL -o "/usr/local/bin/cortextool" "https://github.com/grafana/cortex-tools/releases/download/v0.10.2/cortextool_0.10.2_linux_x86_64" # make it executable $ chmod a+x "/usr/local/bin/cortextool" diff --git a/changelogs/v0.10.3.md b/changelogs/v0.10.3.md new file mode 100644 index 000000000..da4763d60 --- /dev/null +++ b/changelogs/v0.10.3.md @@ -0,0 +1,20 @@ +# v0.10.3 Release + +## Changes + +* [BUGFIX] Fix `cortextool analyse grafana` failure on certain dashboards that use templating and/or panel heights due to unmarshalling errors with the underlying `grafana-tools/sdk` library. #192 + +## Installation + +## cortextool + +```console +# download the binary (adapt os and arch as needed) +$ curl -fSL -o "/usr/local/bin/cortextool" "https://github.com/grafana/cortex-tools/releases/download/v0.10.3/cortextool_0.10.3_linux_x86_64" + +# make it executable +$ chmod a+x "/usr/local/bin/cortextool" + +# have fun :) +$ cortextool --help +```