Releases: juliotrigo/sqlalchemy-filters
Releases · juliotrigo/sqlalchemy-filters
v0.13.0
v0.12.0
v0.11.0
- Add support for the
not_ilike
operator (#40) thanks to @bodik - Add support for the
any
andnot_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 disableauto_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
v0.9.0
- 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
- Adds support for
ilike
(case-insensitive) string comparison (#19 thanks to @rockwelln) - Drop support for Python 3.3 (#20)
Release 0.7.0
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
Adds support for restricting the columns that are loaded from the database.
v0.5.0
Adds support for queries against multiple models, e.g. joins.
v0.4.0
- Adds support for queries based on model fields or aggregate functions.