Changelog for persistent-mysql-2.3
2.3
- Distinguish between binary and non-binary strings in MySQL 451
- Previously all string columns (VARCHAR, TEXT, etc.) were being returned from Persistent as
PersistByteStrings (i.e. as binary data). Persistent now checks character set information to determine if the value should be returned asPersistTextorPersistByteString. - This is a breaking change if your code is relying on a
PersistByteStringbeing returned for string-like MySQL values; persistent-mysql itself had several runtime errors that needed to be fixed because of this patch. High-level code dealing purely withPersistEntitiesshould be unaffected.
- Previously all string columns (VARCHAR, TEXT, etc.) were being returned from Persistent as
2.2
- Update to persistent 2.2
2.1.3
- Added a
Showinstance forMySQLConf.
2.1.2.1
Documentation typo fix
2.1.2
Provide a FromJSON instance for MySQLConf.