Aiopg Versions Save

aiopg is a library for accessing a PostgreSQL database from the asyncio

v0.11.0

7 years ago

CHANGES

  • Immediately remove callbacks from a closed file descriptor #139
  • Drop Python 3.3 support

v0.10.0

7 years ago

Connection pool is more stable now.

Changes

  • Refactor tests to use dockerized Postgres server #107
  • Reduce default pool minsize to 1 #106
  • Explicitly enumerate packages in setup.py #85
  • Remove expired connections from pool on acquire #116
  • Don't crash when Connection is GC'ed #124
  • Use loop.create_future() if available

v0.9.2

8 years ago

Changes

  • Make pool.release return asyncio.Future, so we can wait on it in __aexit__ #102
  • Add support for uuid type #103

v0.9.1

8 years ago

Documentation release, no code changes.

v0.9.0

8 years ago

Added support for async/await syntax into SQLAlchemy layer

Changes

  • Add async context managers for transactions #91
  • Support async iterator in ResultProxy #92
  • Add async with for engine #90

v0.8.0

8 years ago

Fixed a bug with processing timeouts, added support for async with statements in core API.

SQLAlchemy layer is not converted yet.

Full list of changes:

  • Add PostgreSQL notification support #58
  • Support pools with unlimited size #59
  • Cancel current DB operation on asyncio timeout #66
  • Add async with support for Pool, Connection, Cursor #88

v0.7.0

9 years ago

Major aiopg 0.7.0 release.

CHANGES

  • Get rid of resource leak on connection failure.
  • Report ResourceWarning on non-closed connections.
  • Deprecate iteration protocol support in cursor and ResultProxy.
  • Release sa connection to pool on connection.close().

v0.6.1

9 years ago

Better support for aiopg.sa query execution

Changes

  • Accept dict, list, tuple, named and positional parameters in SAConnection.execute()

v0.5.2

9 years ago

Minor release, fixes a bug that leaves connection in broken state after cursor.execute() failure.

v0.5.1

9 years ago

Minor bugfix release.

Fix allows to use next transaction on the same connection for aiopg.sa machinery.