Skip to content

Releases: sdispater/orator

0.9.10

28 Sep 16:05
0666e52
Compare
Choose a tag to compare

Change Log

  • Fixes issue with MySQL auto commit being closed while inside a transaction

0.9.9

15 Jul 18:40
0.9.9
8aaeafe
Compare
Choose a tag to compare

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

10 Oct 21:10
0.9.8
0d745b4
Compare
Choose a tag to compare

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.

0.9.7

17 May 22:03
0.9.7
6b4d35c
Compare
Choose a tag to compare

Fixed

  • Fixed orator command no longer working

0.9.6

16 May 20:37
0.9.6
2e82570
Compare
Choose a tag to compare

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

0.9.5

12 Feb 00:27
0.9.5
f878d1d
Compare
Choose a tag to compare

Changed

  • make:migration now shows the name of the created migration file. (Thanks to denislins)

Fixed

  • Fixed transactions not working for PostgreSQL and SQLite.

0.9.4

12 Jan 16:37
0.9.4
20816f2
Compare
Choose a tag to compare

Fixed

  • Fixes BelongsTo.associate() for non saved models.
  • Fixes reconnection for PostgreSQL.
  • Fixes dependencies (changed fake-factory to Faker) (thanks to acristoffers)

0.9.3

10 Nov 22:50
0.9.3
a77e1eb
Compare
Choose a tag to compare

Fixed

  • Fixes compile_table_exists() method in PostgreSQL schema grammar that could break migrations.

0.9.2

18 Oct 04:04
0.9.2
f428f48
Compare
Choose a tag to compare

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.

0.9.1

29 Sep 14:48
0.9.1
dca1bc5
Compare
Choose a tag to compare

Changed

  • Improves migrate command output when pretending.

Fixed

  • Fixes errors when using PyMySQL.
  • Fixes use_qmark information not being passed to schema grammars.