Aiomysql Versions Save

aiomysql is a library for accessing a MySQL database from the asyncio

v0.0.15

6 years ago

CHANGES

  • Fixed handling of user-defined types for sqlalchemy #290
  • Fix KeyError when server reports unknown collation #289

v0.0.14

6 years ago

CHANGES

  • Fixed SSL connection finalization #282

v0.0.13

6 years ago

CHANGES

  • Added SSL support #280 (Thanks @terrycain)
  • Fixed all in aiomysql/init #270 (Thanks @matianjun1)
  • Added docker fixtures #275 (Thanks @terrycain)

v0.0.12

6 years ago

CHANGES

  • Fixed support for SQLAlchemy 1.2.0 #244
  • Fixed argument for cursor.execute in sa engine #239 (Thanks @NotSoSuper)

v0.0.9

7 years ago

CHANGES

  • Fixed AttributeError in _request_authentication function #104 (Thanks @ttlttl)
  • Fixed legacy auth #105
  • uvloop added to test suite #106
  • Fixed bug with unicode in json field #107 (Thanks @methane)

v0.0.8

7 years ago

CHANGES

  • Default min pool size reduced to 1 #80 (Thanks @Drizzt1991)
  • Update to PyMySQL 0.7.5 #89
  • Fixed connection cancellation in process of executing a query #79 (Thanks @Drizzt1991)

v0.0.7

8 years ago

CHANGES

  • Fix for multiple results issue, ported from pymysql #52
  • Fixed useless warning with no_delay option #55
  • Added async/await support for Engine, SAConnection, Transaction #57
  • pool.release returns future so we can wait on it in __aexit__ #60
  • Update to PyMySQL 0.6.7

v0.0.6

8 years ago

CHANGES

  • Fixed bug with SA rollback (Thanks @khlyestovillarion!)
  • Fixed issue with default no_delay option (Thanks @khlyestovillarion!)

v0.0.5

8 years ago

CHANGES

  • no_delay option is deprecated and True by default
  • Add Cursor.mogrify() method
  • Support for "LOAD LOCAL INFILE" query.
  • Check connection inside pool, in case of timeout drop it, fixes #25
  • Add support of python 3.5 features to pool, connection and cursor

v0.0.4

9 years ago

CHANGES

  • Allow to call connection.wait_closed twice.
  • Fixed sqlalchemy 1.0.0 support.
  • Fix #11: Rename Connection.wait_closed() to .ensure_closed()
  • Raise ResourceWarning on non-closed Connection
  • Rename Connection.connect to _connect