All Versions
27
Latest Version
Avg Release Cycle
86 days
Latest Release
1277 days ago

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 showing DISTINCT.
    • ๐Ÿ›  Fixed save_many() for Python 3.
    • ๐Ÿ›  Fixed an error when listing columns for recent MySQL versions.
  • v0.9.7 Changes

    May 17, 2017

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixed orator command no longer working
  • 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 and TIME 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
  • 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 to Faker) (thanks to acristoffers)
  • v0.9.3 Changes

    November 10, 2016

    ๐Ÿ›  Fixed

    • Fixes compile_table_exists() method in PostgreSQL schema grammar that could break migrations.
  • 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.
  • 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.