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.