-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
full isolation mode & force_rollback fixes (#48)
Changes: - add full_isolation mode. - `batched_iterate` interface of `Connection` differed from the one of `Database`. - `iterate` interface of `Connection` differed from the one of `Database`. - Hooks are not called anymore on automatically created Database objects (fixes problems with subdatabases). - More multithreading safety. - Fixes for force_rollback - bump version - fix link in docs
- Loading branch information
Showing
11 changed files
with
626 additions
and
264 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from databasez.core import Database, DatabaseURL | ||
|
||
__version__ = "0.9.7" | ||
__version__ = "0.10.0" | ||
|
||
__all__ = ["Database", "DatabaseURL"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.