Skip to content

Commit 0f0559c

Browse files
committed
Bump 0.2.0
1 parent bf925ad commit 0f0559c

File tree

4 files changed

+23
-14
lines changed

4 files changed

+23
-14
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ jobs:
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

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
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

514
Initial release.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
3131
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
3333
```
3434

3535
### Start Grafana

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)