Releases: grafana/sqlds
Releases · grafana/sqlds
Release list
v3.1.0
v3.0.0
Fix bug with macros
Macros now handle multi param function args.
Before if your macro was select * from foo where $__params(FUNC(foo, bar)) it would parse the macro params as ["FUNC(foo", "bar)"]
It will now parse the params as ["FUNC(foo, bar)"]
Improve Query testing with QueryFailTimes
Adds a QueryFailTimes option to the DriverOpts so testing a query failing a certain number of times only becomes possible
Test driver
Adds a test driver for testing scenarios that are difficult to reproduce with a real database
Query errors
Adds a flag to return all query errors so health check shows more detail
Forward headers
Adds support to forward oauth headers that are applied from middleware.
v2.5.0
v2.4.1
Add interface to mutate query before it's run
v2.4.0 QueryMutator interface for driver (#87)