Skip to content

Releases: CanopyTax/asyncpgsa

Version 0.17.0 bug fix

29 Aug 03:40
Compare
Choose a tag to compare

Found a way to fix an issue with the tests without requiring dynamic subclassing. This fixes the regression in 0.16.0, so SAConnection is now reference-able again.

Version 0.16.0 Major bug fix

28 Aug 22:52
Compare
Choose a tag to compare

This Version fixes the testing framework, which was broken in 0.14.x.

Your tests might not be completely backwards compatible. If that is the case, please file an issue so I can make sure we handle all cases.

Major change: This also breaks asyncpgsa.connection.SAConnection and so any direct references to that class will fail. If you have a use-case for referencing it. Please let me know.

Version 0.15.0 Feature Release

14 Aug 20:39
Compare
Choose a tag to compare
  • Adds support for custom column types (see #42)

Shoutout to @achimnol for implementing this.

Version 0.14.2 bugfix

10 Aug 02:27
Compare
Choose a tag to compare

changes from 0.14.1:

  • execute now works with sqlalchemy objects (see #41)

Version 0.14.1 bugfix

21 Jul 19:13
Compare
Choose a tag to compare

Changes from 0.14.0:

  • bugfix, pg.execute() now maintains args when passing a string. See #39. Shoutout to @fantix for the fix.

0.9.0 released

21 Apr 22:29
Compare
Choose a tag to compare
0.9.0 released Pre-release
Pre-release

changes

  1. Changed the dialect from psycopg2 to pypostgres. This should be
    mostly backwards compatible, but if you notice weird issues, this is why.
  2. You can now plug-in your own dialect using pg.init(..., dialect=my_dialect),
    or setting the dialect on the pool. See the top of the connection file
    for an example of creating a dialect. Please let me know if the change from
    psycopg2 to pypostgres broke you. If this happens enough,
    I might make psycopg2 the default.