Skip to content

Releases: aio-libs/aioodbc

Release 0.5.0

28 Oct 21:35
62069a2
Compare
Choose a tag to compare

Changes

  • Added support for python 3.12
  • Bumped minimal supported version of pyodbc to 5.0.1
  • Dropped aiodocker related testing to unlock python 3.12

Release 0.4.1

28 Oct 18:43
9711e9c
Compare
Choose a tag to compare

Changes

  • Implemented cursor setinputsizes.
  • Implemented cursor fetchval.
  • Added more type annotations.
  • Added autocommit setter for cusror.

Release 0.4.0

17 Mar 01:28
Compare
Choose a tag to compare

Changes

  • Fixed compatibility with python 3.9+.
  • Removed usage of explicit loop parameter.
  • Added default read size parameter for cursor.
  • Updated tests and CI scripts.
  • Code base formatted with black.

Release 0.3.3

05 Jul 23:45
Compare
Choose a tag to compare

Changes

  • Parameter echo passed properly in cursor #185
  • Close bad connections before returning back to pool #195

Release 0.3.2

04 Aug 20:21
Compare
Choose a tag to compare

Changes

  • Added basic documentation for after_created and ThreadPoolExecutor #176 (thanks @alexhagerman)
  • Cursor/connection context managers now rollback transaction on error,
    otherwise commit if autocommit=False #178 (thanks @julianit)

Release 0.3.1

23 Mar 20:31
Compare
Choose a tag to compare

Changes

  • Add after_create hook for connection configuration (thanks @lanfon72)

Release 0.3.0

23 Feb 19:49
Compare
Choose a tag to compare

Changes

  • Added optional pool connections recycling #167 (thanks @drpoggi)

Release 0.2.0

24 Jun 12:36
Compare
Choose a tag to compare

Changes

  • Fixed Cursor.execute returns a pyodbc.Cursor instead of itself #114
  • Fixed __aiter__ to not be awaitable for python>=3.5.2 #113
  • Tests now using aiodocker #106

Release 0.1.0

30 Apr 19:04
Compare
Choose a tag to compare

Changes

  • Fixed project version

Release 0.0.4

30 Apr 18:43
Compare
Choose a tag to compare

Changes

  • Improved mysql tests