File tree Expand file tree Collapse file tree 4 files changed +23
-14
lines changed Expand file tree Collapse file tree 4 files changed +23
-14
lines changed Original file line number Diff line number Diff line change 5757 echo Once done please follow the instructions found here: https://github.com/${{github.repository}}/blob/main/README.md#using-github-actions-release-workflow
5858 if : ${{ env.GRAFANA_API_KEY == '' }}
5959
60- - name : Sign plugin
61- run : npm run sign
62- if : ${{ env.GRAFANA_API_KEY != '' }}
60+ # - name: Sign plugin
61+ # run: npm run sign
62+ # if: ${{ env.GRAFANA_API_KEY != '' }}
6363
6464 - name : Get plugin metadata
6565 id : metadata
@@ -97,13 +97,13 @@ jobs:
9797 md5sum ${{ steps.metadata.outputs.archive }} > ${{ steps.metadata.outputs.archive-checksum }}
9898 echo "checksum=$(cat ./${{ steps.metadata.outputs.archive-checksum }} | cut -d' ' -f1)" >> $GITHUB_OUTPUT
9999
100- - name : Validate plugin
101- run : |
102- git clone https://github.com/grafana/plugin-validator
103- pushd ./plugin-validator/pkg/cmd/plugincheck2
104- go install
105- popd
106- plugincheck2 -config ./plugin-validator/config/default.yaml ${{ steps.metadata.outputs.archive }}
100+ # - name: Validate plugin
101+ # run: |
102+ # git clone https://github.com/grafana/plugin-validator
103+ # pushd ./plugin-validator/pkg/cmd/plugincheck2
104+ # go install
105+ # popd
106+ # plugincheck2 -config ./plugin-validator/config/default.yaml ${{ steps.metadata.outputs.archive }}
107107
108108 - name : Create Github release
109109 uses : softprops/action-gh-release@v1
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.2.0
4+
5+ ### Added
6+ - Add HTTP Basic Auth support
7+ - Clean the datasource parameters stored in the database (breaking change).
8+
9+ ### Fixed
10+ - Sub aggregations were broken when a sub bucket was empty. This can happen if some document have missing values on the sub field.
11+
312## 0.1.0
413
514Initial release.
Original file line number Diff line number Diff line change @@ -19,17 +19,17 @@ Grafana v9.5 is recommended as the data source was only tested on this version.
1919
2020## Installation
2121
22- ### Download the latest release (0.1 .0)
22+ ### Download the latest release (0.2 .0)
2323
2424``` bash
25- wget https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.1.0/quickwit-quickwit-datasource-0.1 .0.zip
25+ wget https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.1.0/quickwit-quickwit-datasource-0.2 .0.zip
2626```
2727
2828### Unzip into the plugins directory
2929
3030``` bash
3131mkdir -p grafana-storage/plugins
32- unzip quickwit-quickwit-datasource-0.1 .0.zip -d grafana-storage/plugins
32+ unzip quickwit-quickwit-datasource-0.2 .0.zip -d grafana-storage/plugins
3333```
3434
3535### Start Grafana
Original file line number Diff line number Diff line change 11{
22 "name" : " quickwit-datasource" ,
3- "version" : " 0.1 .0" ,
3+ "version" : " 0.2 .0" ,
44 "description" : " Quickwit datasource" ,
55 "scripts" : {
66 "build" : " webpack -c ./.config/webpack/webpack.config.ts --env production" ,
You can’t perform that action at this time.
0 commit comments