Skip to content

Commit 558d333

Browse files
authored
pre-release updates (#129)
1 parent 899e371 commit 558d333

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## tip
44

5+
## v0.9.0
6+
57
* FEATURE: Add support for the `$__range` variable in queries. It will be transformed to the `[time_from, time_to]` in the Unix format. See [this issue](https://github.com/VictoriaMetrics/victorialogs-datasource/issues/112).
68

79
* BUGFIX: show the original error message returned from the VictoriaLogs backend. It should help to troubleshoot problems with query or syntax. See [this issue](https://github.com/VictoriaMetrics/victorialogs-datasource/issues/126).

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Please find the example of provisioning Grafana instance with VictoriaLogs datas
6767
grafana:
6868
image: grafana/grafana:11.0.0
6969
environment:
70-
- GF_INSTALL_PLUGINS=https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.8.0/victorialogs-datasource-v0.8.0.zip;victorialogs-datasource
70+
- GF_INSTALL_PLUGINS=https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.9.0/victorialogs-datasource-v0.9.0.zip;victorialogs-datasource
7171
- GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=victorialogs-datasource
7272
ports:
7373
- 3000:3000/tcp
@@ -95,15 +95,15 @@ Option 1. Using Grafana provisioning:
9595

9696
``` yaml
9797
env:
98-
GF_INSTALL_PLUGINS: "https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.8.0/victorialogs-datasource-v0.8.0.zip;victorialogs-datasource"
98+
GF_INSTALL_PLUGINS: "https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.9.0/victorialogs-datasource-v0.9.0.zip;victorialogs-datasource"
9999
GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS: "victorialogs-datasource"
100100
```
101101

102102
Option 2. Using Grafana plugins section in `values.yaml`:
103103

104104
``` yaml
105105
plugins:
106-
- https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.8.0/victorialogs-datasource-v0.8.0.zip;victorialogs-datasource
106+
- https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.9.0/victorialogs-datasource-v0.9.0.zip;victorialogs-datasource
107107
```
108108

109109
Option 3. Using init container:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "victorialogs-datasource",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "VictoriaLogs datasource plugin for grafana",
55
"scripts": {
66
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",

0 commit comments

Comments
 (0)