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 57
57
echo Once done please follow the instructions found here: https://github.com/${{github.repository}}/blob/main/README.md#using-github-actions-release-workflow
58
58
if : ${{ env.GRAFANA_API_KEY == '' }}
59
59
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 != '' }}
63
63
64
64
- name : Get plugin metadata
65
65
id : metadata
@@ -97,13 +97,13 @@ jobs:
97
97
md5sum ${{ steps.metadata.outputs.archive }} > ${{ steps.metadata.outputs.archive-checksum }}
98
98
echo "checksum=$(cat ./${{ steps.metadata.outputs.archive-checksum }} | cut -d' ' -f1)" >> $GITHUB_OUTPUT
99
99
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 }}
107
107
108
108
- name : Create Github release
109
109
uses : softprops/action-gh-release@v1
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
12
## 0.1.0
4
13
5
14
Initial 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.
19
19
20
20
## Installation
21
21
22
- ### Download the latest release (0.1 .0)
22
+ ### Download the latest release (0.2 .0)
23
23
24
24
``` 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
26
26
```
27
27
28
28
### Unzip into the plugins directory
29
29
30
30
``` bash
31
31
mkdir -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
33
33
```
34
34
35
35
### Start Grafana
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " quickwit-datasource" ,
3
- "version" : " 0.1 .0" ,
3
+ "version" : " 0.2 .0" ,
4
4
"description" : " Quickwit datasource" ,
5
5
"scripts" : {
6
6
"build" : " webpack -c ./.config/webpack/webpack.config.ts --env production" ,
You can’t perform that action at this time.
0 commit comments