Aiopg Versions Save

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

v1.4.0

1 year ago

What's Changed

Full Changelog: https://github.com/aio-libs/aiopg/compare/v1.3.5...v1.4.0

v1.2.1

3 years ago

Changes

  • Implement timeout on acquiring connection from pool(#766)

  • Deprecate blocking connection.cancel() method (#570)

  • Fix IsolationLevel.read_committed and introduce IsolationLevel.default (#770)

  • Fix python 3.8 warnings in tests (#771)

  • Don't run ROLLBACK when the connection is closed (#778)

  • Multiple cursors support (#801)

  • Set max supported sqlalchemy version (#805)

  • Pop loop in connection init due to backward compatibility (#808)

v1.1.0

3 years ago

Changes

  • Fix on_connect multiple call on acquire(#552)

  • Fix python 3.8 warnings(#622)

  • Bump minimum psycopg version to 2.8.4(#754)

  • Fix Engine.release method to release connection in any way(#756)

  • Added missing slots to context managers (#763)

v1.0.0

4 years ago
  • Removal of an asynchronous call in favor of issues #550
  • Big editing of documentation and minor bugs #534

v0.16.0

5 years ago

Changes

  • Fix select priority name (#525)

  • Rename psycopg2 to psycopg2-binary to fix deprecation warning (#507)

  • Fix #189 hstore when using ReadDictCursor (#512)

  • close cannot be used while an asynchronous query is underway (#452)

  • sqlalchemy adapter trx begin allow transaction_mode (#498)

v0.15.0

5 years ago

Changes

  • Support Python 3.7 (#437)

v0.14.0

5 years ago

Changes

  • Add get_dialect func to have ability to pass json_serializer #451

v0.13.2

6 years ago

Changes

  • Fixed compatibility with SQLAlchemy 1.2.0 #412

  • Added support for transaction isolation levels #219

v0.13.1

6 years ago

Changes

  • Added connection poll recycling logic #373

v0.13.0

7 years ago

Changes

  • Add async with support to .begin_nested() #208
  • Fix connection.cancel() #212 #223
  • Raise informative error on unexpected connection closing #191
  • Added support for python types columns issues #217
  • Added support for default values in SA table issues #206