All Versions
125
Latest Version
Avg Release Cycle
-
Latest Release
-

Changelog History
Page 5

  • v0.15.22 Changes

    • ๐Ÿ›  Fix the aggregates using the wrong side of the join when doing a self-referential aggregation.
    • Fix for generate_schemas param being ignored in tortoise.contrib.quart.register_tortoise
  • v0.15.21 Changes

    • Fixed invalid var IN () SQL generated using __in= and __not_in filters.
    • ๐Ÿ›  Fix bug with order_by on nested fields
    • ๐Ÿ›  Fix joining with self by reverse-foreign-key for filtering and annotation
  • v0.15.20 Changes

    • 0๏ธโƒฃ Default values() & values_list() now includes annotations.
    • Annotations over joins now work correctly with values() & values_list()
    • Ensure GROUP BY precedes HAVING to ensure that filtering by aggregates work correctly.
    • Cast BooleanField values correctly on SQLite & MySQL
  • v0.15.19 Changes

    • ๐Ÿ›  Fix Function with source_field option. (#311)
  • v0.15.18 Changes

    • ๐Ÿ Install on Windows does not require a C compiler any more.
    • Fix IntegrityError with unique field and get_or_create
  • v0.15.17 Changes

    • Now get_or_none(...), classmethod of Model class, works in the same way as queryset
  • v0.15.16 Changes

    • get_or_none(...) now raises MultipleObjectsReturned if multiple object fetched. (#298)
  • v0.15.15 Changes

    • โž• Add ability to suppply a to_field= parameter for FK/O2O to a non-PK but still uniquely indexed remote field. (#287)
  • v0.15.14 Changes

    • โž• add F expression support in queryset.update() - This allows for atomic updates of data in the database. (#294)
  • v0.15.13 Changes

    • 0๏ธโƒฃ Applies default ordering on related queries
    • ๐Ÿ›  Fix post-ManyToMany related queries not being evaluated correctly
    • Ordering is now preserved on ManyToMany related fetches
    • ๐Ÿ›  Fix aggregate function on joined table to use correct primary key
    • ๐Ÿ›  Fix filtering by backwards FK to use correct primary key