Skip to content

Releases: wbh1/grafana-sqlite-to-postgres

v2.2.5

22 Aug 21:15
d5ca6fa
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.2.4...v2.2.5

v2.2.4

06 Sep 02:55
Compare
Choose a tag to compare

What's Changed

  • Add is_revoked for api key table by @epanoff in #40
  • Add more columns that require transforming sqlite integer -> postgres boolean by @temach in #46

New Contributors

Full Changelog: v2.2.3...v2.2.4

v2.2.3

12 Nov 15:42
Compare
Choose a tag to compare
fix: better handling of hex data

Sqlite .dump will output large TEXT values as hex-encoded. This happens a lot with dashboards' JSON data.

Unfortunately, I don't have a great way to distinguish between data that should be
hex-encoded (e.g. things coming from a BLOB column) vs things that
need to be decoded before they're inserted.

So, I do the gross thing and just try it the other way if it failed the first way.

v2.2.2

16 Oct 14:16
Compare
Choose a tag to compare
  • Add data_keys column support
  • Fix handling of hex encoding of values from columns of blob type in sqlite3

Full Changelog: v2.2.1...v2.2.2

v2.2.1

15 Oct 13:51
Compare
Choose a tag to compare
deps: go1.18 and update deps

v2.2.0: Grafana 9 Support

25 Jun 20:06
484954c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.0...v2.2.0

v2.1.0: Grafana 8 support

09 Dec 17:20
453440a
Compare
Choose a tag to compare

Adds support for Grafana 8 migrations thanks to @vjgarcera

v2.0.1

17 Jun 23:53
Compare
Choose a tag to compare
have drone pull git tags

v2.0.0

17 Jun 23:45
f8a53a8
Compare
Choose a tag to compare
  • Major refactor to how table/column changes are stored. Simply add a new table change to pkg/postgresql/tablechanges.go now.
  • Better logging
  • Better filtering of meaningful errors

v1.1.2

27 Jan 18:28
Compare
Choose a tag to compare
  • Split the SQLite dump statements by semi-colon+new line (rather than just new line)