Releases: wbh1/grafana-sqlite-to-postgres
Releases · wbh1/grafana-sqlite-to-postgres
v2.2.5
What's Changed
- doc: add warning to README by @wbh1 in #49
- Transform char(13) to chr(13) by @dracoyunho in #47
New Contributors
- @dracoyunho made their first contribution in #47
Full Changelog: v2.2.4...v2.2.5
v2.2.4
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
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
- 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
v2.2.0: Grafana 9 Support
What's Changed
- Add columns to work with Grafana ~9.0.0 by @Funzinator in #27
Full Changelog: v2.1.0...v2.2.0
v2.1.0: Grafana 8 support
Adds support for Grafana 8 migrations thanks to @vjgarcera