Skip to content

Commit f973155

Browse files
committed
bump version to 2.1.1
1 parent 9385d15 commit f973155

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 2.1.1
4+
5+
Key changes:
6+
7+
* propagate the error message from the backend to the frontend
8+
* set batch size to 1000 and batch interval to 100ms for the streaming query
9+
310
## 2.1.0
411

512
Key changes:

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ID = timeplus-proton-datasource
2-
Version = 2.1.0
2+
Version = 2.1.1
33

44
init:
55
npm install

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ For example, on a Linux machine, you can run the following commands:
3232
cd /var/lib/grafana
3333
mkdir plugins
3434
cd plugins
35-
wget d.timeplus.com/grafana/timeplus-proton-datasource-2.1.0.zip
36-
unzip timeplus-proton-datasource-2.1.0.zip
35+
wget d.timeplus.com/grafana/timeplus-proton-datasource-2.1.1.zip
36+
unzip timeplus-proton-datasource-2.1.1.zip
3737
/bin/systemctl start grafana-server.service
3838
```
3939

@@ -43,8 +43,8 @@ For macOS, you can run the following commands:
4343
cd /opt/homebrew/var/lib/grafana
4444
mkdir plugins
4545
cd plugins
46-
wget d.timeplus.com/grafana/timeplus-proton-datasource-2.1.0.zip
47-
unzip timeplus-proton-datasource-2.1.0.zip
46+
wget d.timeplus.com/grafana/timeplus-proton-datasource-2.1.1.zip
47+
unzip timeplus-proton-datasource-2.1.1.zip
4848
brew services restart grafana
4949
```
5050

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "timeplus-proton-datasource",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Grafana data source plugin to connect to Timeplus and visualize streaming or batch queries.",
55
"scripts": {
66
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",

src/plugin.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
{ "name": "Query Editor", "path": "img/query.png" },
2525
{ "name": "Dashboard", "path": "img/dashboard.png" }
2626
],
27-
"version": "2.1.0",
28-
"updated": "2025-01-13"
27+
"version": "2.1.1",
28+
"updated": "2025-01-22"
2929
},
3030
"dependencies": {
3131
"grafanaDependency": ">=11.3.0",

0 commit comments

Comments
 (0)