From 20a86e5641ee4481dedee65e65df7bab9b4abe4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Farkas?= Date: Tue, 14 May 2024 12:39:54 +0200 Subject: [PATCH] add maintenance-mode message (#310) * prepare release 0.6.18 * add maintenance-mode message * Update _index.md (#311) * Update README.md --------- Co-authored-by: Sriram <153843+yesoreyeram@users.noreply.github.com> --- CHANGELOG.md | 4 ++++ README.md | 3 +++ docs/sources/_index.md | 4 ++++ package.json | 2 +- src/README.md | 2 ++ 5 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1804624..148d94a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.6.18 - 2024-05-14 + +- ⚙️ **Chore**: Updated the eslint-plugin-prettier dependency + ## v0.6.17 - 2024-04-18 - ⚙️ **Chore**: Bump grafana-plugin-sdk-go from `v0.220.0` to `v0.225.0` diff --git a/README.md b/README.md index ce0852a..f8c3038 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # CSV data source for Grafana +> [!CAUTION] +> This plugin is now in maintenance mode, no new features will be added. We recommend using the [Infinity data source plugin](https://grafana.com/grafana/plugins/yesoreyeram-infinity-datasource/) instead + The Grafana CSV Datasource plugin is designed to load CSV data into Grafana, expanding your capabilities to visualize and analyze data stored in CSV (Comma-Separated Values) format. Whether you have log files, historical data, or other datasets in CSV format, this plugin streamlines the process of integrating this data into your Grafana dashboards. ## Documentation diff --git a/docs/sources/_index.md b/docs/sources/_index.md index 140ef6b..13fc889 100644 --- a/docs/sources/_index.md +++ b/docs/sources/_index.md @@ -13,6 +13,10 @@ labels: weight: 100 --- +{{< admonition type="warning" >}} +This plugin is now in maintenance mode, no new features will be added. We recommend using the [Infinity data source plugin](https://grafana.com/grafana/plugins/yesoreyeram-infinity-datasource/) instead +{{< /admonition >}} + The CSV data source is an open source plugin for Grafana that lets you visualize data from any URL that returns CSV data, such as REST APIs or static file servers. You can even load data from a local file path. Since the plugin doesn't keep a record of previous queries, each query needs to contain the complete data set you want to visualize. If you'd like to visualize how the data changes over time, you're probably better off storing the data in a database. diff --git a/package.json b/package.json index b43fd0d..9063d4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "grafana-csv-datasource", - "version": "0.6.17", + "version": "0.6.18", "description": "A Grafana data source for loading CSV data", "keywords": [ "grafana", diff --git a/src/README.md b/src/README.md index 352cb77..6f34f33 100644 --- a/src/README.md +++ b/src/README.md @@ -1,5 +1,7 @@ # CSV data source for Grafana +## (NOTE: this plugin is now in maintenance mode, no new features will be added. We recommend using the [Infinity data source plugin](https://grafana.com/grafana/plugins/yesoreyeram-infinity-datasource/) instead) + The Grafana CSV Datasource plugin is designed to load CSV data into Grafana, expanding your capabilities to visualize and analyze data stored in CSV (Comma-Separated Values) format. Whether you have log files, historical data, or other datasets in CSV format, this plugin streamlines the process of integrating this data into your Grafana dashboards. ## Documentation