Skip to content

Commit

Permalink
update to 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hagen1778 committed Mar 12, 2018
1 parent a3b6fce commit f76cefb
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# 1.4.1 (2018-03-12)

## New Features

* $unescape - unescapes variable value by removing single quotes. Used for multiple-value string variables: "SELECT $unescape($column) FROM requests WHERE $unescape($column) = 5"

## Fixes

* labmda-operator `->` no more breaks while reformatting query


# 1.4.0 (2018-03-08)

## New Features

Ad-hoc filters support:
* If there is an Ad-hoc variable, plugin will fetch all columns of all tables of all databases (except system database) as tags.
So in dropdown menu will be options like `database.table.column`
Expand Down
12 changes: 12 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# 1.4.1 (2018-03-12)

## New Features

* $unescape - unescapes variable value by removing single quotes. Used for multiple-value string variables: "SELECT $unescape($column) FROM requests WHERE $unescape($column) = 5"

## Fixes

* labmda-operator `->` no more breaks while reformatting query


# 1.4.0 (2018-03-08)

## New Features

Ad-hoc filters support:
* If there is an Ad-hoc variable, plugin will fetch all columns of all tables of all databases (except system database) as tags.
So in dropdown menu will be options like `database.table.column`
Expand Down
2 changes: 1 addition & 1 deletion dist/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"url": "https://github.com/Vertamedia/clickhouse-grafana"
}
],
"version": "1.4.0"
"version": "1.4.1"
}
}
2 changes: 1 addition & 1 deletion dist/scanner.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/scanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ export default class Scanner {
};
}


let wsRe = "\\s+",
commentRe = "--[^\n]*|/\\*(?:[^*]|\\*[^/])*\\*/",
idRe = "[a-zA-Z_][a-zA-Z_0-9]*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vertamedia-clickhouse",
"version": "1.4.0",
"version": "1.4.1",
"description": "ClickHouse datasource for Grafana",
"scripts": {
"build": "grunt",
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"url": "https://github.com/Vertamedia/clickhouse-grafana"
}
],
"version": "1.4.0"
"version": "1.4.1"
}
}

0 comments on commit f76cefb

Please sign in to comment.