PyMySQL v0.10.0 Release Notes

  • ๐Ÿš€ Release date: 2020-07-18

    ๐Ÿ‘ This version is the last version supporting Python 2.7.

    • ๐Ÿ‘ MariaDB ed25519 auth is supported.
    • ๐Ÿ‘ Python 3.4 support is dropped.
    • ๐Ÿšš Context manager interface is removed from Connection. It will be added with different meaning.
    • โš  MySQL warnings are not shown by default because many user report issue to PyMySQL issue tracker when they see warning. You need to call "SHOW WARNINGS" explicitly when you want to see warnings.
    • Formatting of float object is changed from "3.14" to "3.14e0".
    • ๐Ÿ‘‰ Use cp1252 codec for latin1 charset.
    • ๐Ÿ›  Fix decimal literal.
    • TRUNCATED_WRONG_VALUE_FOR_FIELD, and ILLEGAL_VALUE_FOR_TYPE are now DataError instead of InternalError.