This commit is contained in:
Charles Leifer
2026-04-23 16:15:53 -05:00
parent b0b5f1a1a2
commit 93da1ac2e4
2 changed files with 13 additions and 2 deletions
+12 -1
View File
@@ -7,7 +7,18 @@ https://github.com/coleifer/peewee/releases
## master ## master
[View commits](https://github.com/coleifer/peewee/compare/4.0.4...master) [View commits](https://github.com/coleifer/peewee/compare/4.0.5...master)
## 4.0.5
* Fix bug where `db_value()` may not get called in subclasses of Postgres
JSONField / BinaryJSONField, refs #3044.
* Fix bug where indexes for table may be defined on multiple schema, #3043.
* Always fall-through to base exception class if exception is not recognized in
DB drivers. This simplifies checking driver-specific subclasses of standard
DB-API exceptions.
[View commits](https://github.com/coleifer/peewee/compare/4.0.4...4.0.5)
## 4.0.4 ## 4.0.4
+1 -1
View File
@@ -69,7 +69,7 @@ except ImportError:
mysql = None mysql = None
__version__ = '4.0.4' __version__ = '4.0.5'
__all__ = [ __all__ = [
'AnyField', 'AnyField',
'AsIs', 'AsIs',