All Versions
27
Latest Version
Avg Release Cycle
86 days
Latest Release
1628 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.9.10 Changes
September 28, 2020๐ Change Log
- ๐ Fixes issue with MySQL auto commit being closed while inside a transaction
-
v0.9.9 Changes
July 15, 2019๐ 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.
-
v0.9.8 Changes
October 10, 2018๐ 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.
- Fixed the
-
v0.9.7 Changes
May 17, 2017๐ Fixed
- ๐ Fixed
orator
command no longer working
- ๐ Fixed
-
v0.9.6 Changes
May 16, 2017โ 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
- โ Added support for
-
v0.9.5 Changes
February 12, 2017๐ Changed
make:migration
now shows the name of the created migration file. (Thanks to denislins)
๐ Fixed
- ๐ Fixed transactions not working for PostgreSQL and SQLite.
-
v0.9.4 Changes
January 12, 2017๐ Fixed
- ๐ Fixes
BelongsTo.associate()
for non saved models. - ๐ Fixes reconnection for PostgreSQL.
- ๐ Fixes dependencies (changed
fake-factory
toFaker
) (thanks to acristoffers)
- ๐ Fixes
-
v0.9.3 Changes
November 10, 2016๐ Fixed
- Fixes
compile_table_exists()
method in PostgreSQL schema grammar that could break migrations.
- Fixes
-
v0.9.2 Changes
October 18, 2016๐ 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.
- โ Adds ability to specify multiple conditions in a single
-
v0.9.1 Changes
September 29, 2016๐ Changed
- ๐ Improves migrate command output when pretending.
๐ Fixed
- ๐ Fixes errors when using PyMySQL.
- ๐ Fixes
use_qmark
information not being passed to schema grammars.