Releases: CanopyTax/asyncpgsa
Releases · CanopyTax/asyncpgsa
Version 0.17.0 bug fix
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
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
Version 0.14.2 bugfix
changes from 0.14.1:
execute
now works with sqlalchemy objects (see #41)
Version 0.14.1 bugfix
0.9.0 released
changes
- Changed the dialect from psycopg2 to pypostgres. This should be
mostly backwards compatible, but if you notice weird issues, this is why. - 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.