Skip to content

Commit 7b403f6

Browse files
committed
Bump to version 0.6.0
Signed-off-by: Patrik Cyvoct <patrik@ptrk.io>
1 parent 1c13e5c commit 7b403f6

4 files changed

Lines changed: 31 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 0.6.0
4+
5+
### What's Changed
6+
7+
- React 19 compatibility for Grafana 13
8+
- Migrate e2e tests from Cypress to Playwright and add Quickwit datasource e2e test
9+
- Add Grafana version matrix to e2e tests
10+
- Fix Shift-Enter keymapping on latest Grafana versions
11+
- Bump Go and Node dependencies to fix high vulnerabilities
12+
- Bump `grafana/plugin-actions/is-compatible` GitHub action
13+
314
## 0.5.0
415

516
### What's Changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44

55
The Quickwit data source plugin allows you to query and visualize Quickwit data from within Grafana.
66

7-
## 🎉 What's New in v0.5.0
7+
## 🎉 What's New in v0.6.0
88

9-
- **Grafana 11.x Support**
10-
- **Fixed Adhoc Filters**: Improved adhoc filters feature for dynamic query building
11-
- **Enhanced Stability**: Various bug fixes and improvements
9+
- **Grafana 12.1+ and 13 Support** (React 19 compatibility)
10+
- **Playwright e2e tests** replacing Cypress, with a Grafana version matrix
11+
- **Fixed Shift-Enter keymapping** on latest Grafana versions
12+
- **Security updates**: Go and Node dependency bumps
1213

1314
It is available for installation directly from the
1415
[Grafana catalog](https://grafana.com/grafana/plugins/quickwit-quickwit-datasource/) until version 0.4.5
@@ -17,40 +18,39 @@ or you can download the latest version and follow the
1718

1819
## Version compatibility
1920

20-
We recommend Grafana v10.X or v11.X.
21+
We recommend Grafana v12.1+ or v13.
2122

2223
Quickwit 0.7 is compatible with 0.3.x versions only.
2324

24-
Quickwit 0.8 is compatible with 0.4.x and 0.5.x versions.
25+
Quickwit 0.8 is compatible with 0.4.x, 0.5.x and 0.6.x versions.
2526

26-
- **v0.5.x** (Latest): Grafana 11.x with improved adhoc filters
27-
- **v0.4.x**: Grafana 10.x
27+
- **v0.6.x** (Latest): Grafana 12.1+ and 13 (React 19)
28+
- **v0.5.x**: Grafana 11.x
29+
- **v0.4.x**: Grafana 10.x
2830
- **v0.3.x**: Grafana 9.x / Quickwit 0.7
2931

3032
## Installation
3133

32-
You can either download the plugin manually and unzip it into the plugin directory or use the env variable `GF_INSTALL_PLUGINS` to install it.
34+
You can either download the plugin manually and unzip it into the plugin directory, or use a Grafana env variable to install it. Note that `GF_INSTALL_PLUGINS` is **deprecated since Grafana 12.1** — use `GF_PLUGINS_PREINSTALL_SYNC` instead on recent versions.
3335

34-
### 0.5.0 (Latest) for Quickwit 0.8 + Grafana 12.1
36+
### 0.6.0 (Latest) for Quickwit 0.8 + Grafana 12.1+ / 13
3537

36-
`GF_INSTALL_PLUGINS` has been deprecated since 12.1. `GF_PLUGINS_PREINSTALL_SYNC` must be used instead
37-
38-
Run `grafana` container with the env variable:
38+
Run `grafana` container with the env variable (format: `<plugin-id>@<version>@<url>`):
3939

4040
```bash
41-
docker run -p 3000:3000 -e GF_PLUGINS_PREINSTALL_SYNC="quickwit-quickwit-datasource@0.5.0@https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.5.0/quickwit-quickwit-datasource-0.5.0.zip" grafana/grafana run
41+
docker run -p 3000:3000 -e GF_PLUGINS_PREINSTALL_SYNC="quickwit-quickwit-datasource@0.6.0@https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.6.0/quickwit-quickwit-datasource-0.6.0.zip" grafana/grafana run
4242
```
4343

4444
Or download the plugin manually and start Grafana
4545

4646
```bash
47-
wget https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.5.0/quickwit-quickwit-datasource-0.5.0.zip
47+
wget https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.6.0/quickwit-quickwit-datasource-0.6.0.zip
4848
mkdir -p plugins
49-
unzip quickwit-quickwit-datasource-0.5.0.zip -d plugins/quickwit-quickwit-datasource-0.5.0
49+
unzip quickwit-quickwit-datasource-0.6.0.zip -d plugins/quickwit-quickwit-datasource-0.6.0
5050
docker run -p 3000:3000 -e GF_PATHS_PLUGINS=/data/plugins -v ${PWD}/plugins:/data/plugins grafana/grafana run
5151
```
5252

53-
### 0.5.0 (Latest) for Quickwit 0.8 + Grafana 11
53+
### 0.5.0 for Quickwit 0.8 + Grafana 11
5454

5555
Run `grafana` container with the env variable:
5656

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.5.0",
3+
"version": "0.6.0",
44
"description": "Quickwit datasource",
55
"scripts": {
66
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",

0 commit comments

Comments
 (0)