This repository was archived by the owner on May 14, 2024. It is now read-only.
Releases: sdispater/orator
Releases · sdispater/orator
0.9.10
0.9.9
Fixed
- Fixed missing relationships when eager loading multiple nested relationships.
- Fixed a possible
AttributeErrorwhen starting a transaction. - Fixed an infinite recursion when using
where_exists()on a soft-deletable model. - Fixed some cases where a reconnection would not occur for PostgreSQL.
0.9.8
Fixed
- Fixed the
morphed_by_many()decorator. - Fixed decoding errors for MySQL.
- Fixed connection errors check.
- Fixed the
touches()method. - Fixed
has_manynot showingDISTINCT. - Fixed
save_many()for Python 3. - Fixed an error when listing columns for recent MySQL versions.
0.9.7
0.9.6
Added
- Added support for
DATEtypes in models. - Added support for fractional seconds for the
TIMESTAMPtype in MySQL 5.6.4+. - Added support for fractional seconds for the
TIMESTAMPandTIMEtypes in PostreSQL.
Changed
- Improved implementation of the
chunkmethod.
Fixed
- Fixed timezone offset errors when inserting datetime aware objects into PostgreSQL.
- Fixed a bug occurring when using
__touches__with an optional relationship. - Fixed collections serialization when using the query builder
0.9.5
0.9.4
Fixed
- Fixes
BelongsTo.associate()for non saved models. - Fixes reconnection for PostgreSQL.
- Fixes dependencies (changed
fake-factorytoFaker) (thanks to acristoffers)
0.9.3
0.9.2
Changed
- Adds ability to specify multiple conditions in a single
where()(thanks to mathankumart).
Fixed
- Fixes an error when table prefix is set to
None. - Fixes column listing.