Skip to content

Releases: aio-libs/aiomysql

Release 0.0.15

20 May 18:10
Compare
Choose a tag to compare

CHANGES

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

Release 0.0.14

22 Apr 18:46
Compare
Choose a tag to compare

CHANGES

  • Fixed SSL connection finalization #282

Release 0.0.13

19 Apr 19:28
Compare
Choose a tag to compare

CHANGES

Release 0.0.12

18 Jan 21:24
Compare
Choose a tag to compare

CHANGES

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

Release 0.0.9

14 Sep 20:28
Compare
Choose a tag to compare

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)

Release 0.0.8

24 Aug 18:52
Compare
Choose a tag to compare

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)

Release 0.0.7

27 Jan 19:52
Compare
Choose a tag to compare

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

Release 0.0.6

10 Dec 22:16
Compare
Choose a tag to compare

CHANGES

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

Release 0.0.5

27 Oct 22:07
Compare
Choose a tag to compare

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

Release 0.0.4

23 May 09:43
Compare
Choose a tag to compare

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