From 558d3331fd246536db6814bf8f2e145e490b91ab Mon Sep 17 00:00:00 2001 From: Dmytro Kozlov Date: Tue, 3 Dec 2024 15:11:50 +0100 Subject: [PATCH] pre-release updates (#129) --- CHANGELOG.md | 2 ++ README.md | 6 +++--- package.json | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab0227c..7f94306 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## tip +## v0.9.0 + * 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). * 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). diff --git a/README.md b/README.md index eec27c3..7073243 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Please find the example of provisioning Grafana instance with VictoriaLogs datas grafana: image: grafana/grafana:11.0.0 environment: - - GF_INSTALL_PLUGINS=https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.8.0/victorialogs-datasource-v0.8.0.zip;victorialogs-datasource + - GF_INSTALL_PLUGINS=https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.9.0/victorialogs-datasource-v0.9.0.zip;victorialogs-datasource - GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=victorialogs-datasource ports: - 3000:3000/tcp @@ -95,7 +95,7 @@ Option 1. Using Grafana provisioning: ``` yaml env: - GF_INSTALL_PLUGINS: "https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.8.0/victorialogs-datasource-v0.8.0.zip;victorialogs-datasource" + GF_INSTALL_PLUGINS: "https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.9.0/victorialogs-datasource-v0.9.0.zip;victorialogs-datasource" GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS: "victorialogs-datasource" ``` @@ -103,7 +103,7 @@ Option 2. Using Grafana plugins section in `values.yaml`: ``` yaml plugins: - - https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.8.0/victorialogs-datasource-v0.8.0.zip;victorialogs-datasource + - https://github.com/VictoriaMetrics/victorialogs-datasource/releases/download/v0.9.0/victorialogs-datasource-v0.9.0.zip;victorialogs-datasource ``` Option 3. Using init container: diff --git a/package.json b/package.json index c2bf156..ec56832 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "victorialogs-datasource", - "version": "0.8.0", + "version": "0.9.0", "description": "VictoriaLogs datasource plugin for grafana", "scripts": { "build": "webpack -c ./.config/webpack/webpack.config.ts --env production",