Skip to content

Pony ORM Release 0.7

Compare
Choose a tag to compare
@kozlovsky kozlovsky released this 11 Oct 19:15
· 694 commits to orm since this release

Starting with this release Pony ORM is release under the Apache License, Version 2.0.

New features

Backward incompatible changes

  • #159: exceptions happened during flush() should not be wrapped with CommitException

Before this release an exception that happened in a hook(https://docs.ponyorm.com/api_reference.html#entity-hooks), could be raised in two ways - either wrapped into the CommitException or without wrapping. It depended if the exception happened during the execution of flush() or commit() function on the db_session exit. Now the exception happened inside the hook never will be wrapped into the CommitException.

Bugfixes

  • #190: Timedelta is not supported when using pymysql