Skip to content

Releases: grafana/sqlds

v3.4.1

30 May 16:46
7f599d2
Compare
Choose a tag to compare

What's Changed

  • slo - capture query and health duration - label with error source by @scottlepp in #122

Full Changelog: v3.4.0...v3.4.1

v3.4.0

28 May 16:25
6631da7
Compare
Choose a tag to compare

What's Changed

  • Docs: Add release instructions by @kevinwcyu in #115
  • Return ExecutedQueryString even when an error is returned by @gabor in #117
  • capture duration and label with error source by @scottlepp in #116
  • test: fix Next() method by @gabor in #120
  • unit-tests for zero-rows-returned situations by @gabor in #119

New Contributors

Full Changelog: v3.3.0...v3.4.0

v3.3.0

16 May 16:24
8e975a8
Compare
Choose a tag to compare

What's Changed

  • Chore: update grafana-plugin-sdk-go to v0.231.0 by @kevinwcyu in #114

New Contributors

Full Changelog: v3.2.0...v3.3.0

v3.2.0

24 Jan 08:29
71090eb
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.1.0...v3.2.0

Compatibility

This release moves some functionality to data/sqlutil in the plugin sdk. Aliases remain for compatibility but are deprecated. New code should use the functionality in sqlutil.

v3.1.0

27 Oct 20:05
dda2dc0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.0...v3.1.0

v3.0.0

18 Oct 09:13
9c6e751
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.7.2...v3.0.0

Fix bug with macros

06 Sep 20:00
4743948
Compare
Choose a tag to compare

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

24 Jul 14:57
7f3ee71
Compare
Choose a tag to compare

Adds a QueryFailTimes option to the DriverOpts so testing a query failing a certain number of times only becomes possible

Test driver

15 Jun 16:04
cc7ea33
Compare
Choose a tag to compare

Adds a test driver for testing scenarios that are difficult to reproduce with a real database

Query errors

07 Jun 14:35
f35dc61
Compare
Choose a tag to compare

Adds a flag to return all query errors so health check shows more detail