Skip to content

Releases: juliotrigo/sqlalchemy-filters

v0.13.0

Choose a tag to compare

@tomviner tomviner released this 13 Apr 11:16
e182378
  • Add support for SQLAlchemy 1.4 (#69) thanks to @bodik
  • Add support for Python 3.9 & Python 3.10. Drop support for Python 2.7, 3.5 & 3.6 (#81) thanks to @tomviner

v0.12.0

Choose a tag to compare

@juliotrigo juliotrigo released this 12 May 18:41
a2180ee
  • Add support for hybrid attributes (properties and methods): filtering and sorting (#45) as a continuation of the work started here (#32) by @vkylamba
    • Addresses (#22)

v0.11.0

Choose a tag to compare

@juliotrigo juliotrigo released this 25 Apr 16:47
  • Add support for the not_ilike operator (#40) thanks to @bodik
  • Add support for the any and not_any operators (#36) thanks to @bodik
  • Add ability to use the select_from clause to apply filters (#34) thanks to @bodik
  • Add new parameter to apply_filters to disable auto_join on demand (#35) thanks to @bodik
  • Add support for Python 3.8 (#43)
  • Drop support for Python 3.4 (#33)
  • Fix Python 3.7 deprecations (#41) thanks to @bodik
  • Add multiple SQLAlchemy versions support: 1.0, 1.1, 1.2, 1.3 (#33)

v0.10.0

Choose a tag to compare

@juliotrigo juliotrigo released this 13 Mar 17:13
8730e30
  • Add nullsfirst and nullslast sorting options (#30)

v0.9.0

Choose a tag to compare

@juliotrigo juliotrigo released this 07 Mar 13:40
1b01291
  • Add compatibility (no official support) with Python 2.7 (#23 which addresses #18 thanks to @itdependsnetworks)
  • Add support for Python 3.7 (#25)
  • Add support (tests) for PostgreSQL (#28)
  • Fix and improve documentation (#21 thanks to @daviskirk, #28)

Release 0.8.0

Choose a tag to compare

@mattbennett mattbennett released this 25 Jun 07:32
439c035
  • Adds support for ilike (case-insensitive) string comparison (#19 thanks to @rockwelln)
  • Drop support for Python 3.3 (#20)

Release 0.7.0

Choose a tag to compare

@mattbennett mattbennett released this 12 Feb 11:48
6347ca0

Filters and sorts on related models now result in an "automatic join" if the query being filtered does not already contain the related model.

v0.6.0

Choose a tag to compare

@mattbennett mattbennett released this 30 Nov 12:10
07e38e1

Adds support for restricting the columns that are loaded from the database.

v0.5.0

Choose a tag to compare

@mattbennett mattbennett released this 15 Nov 15:18

Adds support for queries against multiple models, e.g. joins.

v0.4.0

Choose a tag to compare

@juliotrigo juliotrigo released this 21 Jun 10:37
  • Adds support for queries based on model fields or aggregate functions.