This repository has been 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
AttributeError
when 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_many
not 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
DATE
types in models. - Added support for fractional seconds for the
TIMESTAMP
type in MySQL 5.6.4+. - Added support for fractional seconds for the
TIMESTAMP
andTIME
types in PostreSQL.
Changed
- Improved implementation of the
chunk
method.
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-factory
toFaker
) (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.