Skip to content

Commit

Permalink
3.14.8
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Oct 28, 2021
1 parent 8c80725 commit 52149cb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,20 @@ https://github.com/coleifer/peewee/releases

## master

[View commits](https://github.com/coleifer/peewee/compare/3.14.7...master)
[View commits](https://github.com/coleifer/peewee/compare/3.14.8...master)

## 3.14.8

Back-out all changes to automatically use RETURNING for `SqliteExtDatabase`,
`CSqliteExtDatabase` and `APSWDatabase`. The issue I found is that when a
RETURNING cursor is not fully-consumed, any parent SAVEPOINT (and possibly
transaction) would not be able to be released. Since this is a
backwards-incompatible change, I am going to back it out for now.

Returning clause can still be specified for Sqlite, however it just needs to be
done so manually rather than having it applied automatically.

[View commits](https://github.com/coleifer/peewee/compare/3.14.7...3.14.8)

## 3.14.7

Expand Down
2 changes: 1 addition & 1 deletion peewee.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
mysql = None


__version__ = '3.14.7'
__version__ = '3.14.8'
__all__ = [
'AnyField',
'AsIs',
Expand Down

0 comments on commit 52149cb

Please sign in to comment.