Skip to content

Commit

Permalink
3.17.6
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Jul 6, 2024
1 parent 2b2e876 commit 0b16576
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,24 @@ https://github.com/coleifer/peewee/releases

## master

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

## 3.17.6

* Fix bug in recursive `model.delete_instance()` when a table contains
foreign-keys at multiple depths of the graph, #2893.

[View commits](https://github.com/coleifer/peewee/compare/3.17.5...master)
* Fix regression in pool behavior on systems where `time.time()` returns
identical values for two connections. This adds a no-op comparable sentinel
to the heap to prevent any recurrence of this problem, #2901.
* Ensure that subqueries inside `CASE` statements generate correct SQL.
* Fix regression that broke server-side cursors with Postgres (introduced in
3.16.0).
* Fix to ensure compatibility with psycopg3 - the libpq TransactionStatus
constants are no longer available on the `Connection` instance.
* Fix quoting issue in pwiz that could generate invalid python code for
double-quoted string literals used as column defaults.

[View commits](https://github.com/coleifer/peewee/compare/3.17.5...3.17.6)

## 3.17.5

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


__version__ = '3.17.5'
__version__ = '3.17.6'
__all__ = [
'AnyField',
'AsIs',
Expand Down

0 comments on commit 0b16576

Please sign in to comment.