Skip to content

Latest commit

 

History

History
140 lines (73 loc) · 2.49 KB

CHANGES.rst

File metadata and controls

140 lines (73 loc) · 2.49 KB

Changelog

Here you can see the full list of changes between each SQLAlchemy-Searchable release.

0.5.0 (not released yet)

  • Python 3 support

0.4.5 (2013-10-22)

  • Updated validators dependency to 0.2.0

0.4.4 (2013-10-17)

  • Search query string parser now notices emails and leaves them as they are (same behavious as in PostgreSQL tsvector parser)

0.4.3 (2013-10-07)

  • Fixed index/trigger creation when multiple vectors attached to single class
  • Search vector without columns do not generate triggers anymore

0.4.2 (2013-10-07)

  • Fixed single table inheritance handling in define_triggers_and_indexes manager method.

0.4.1 (2013-10-04)

  • Fixed negation operator parsing

0.4.0 (2013-10-04)

  • Completely rewritten search API
  • Renamed SearchQueryMixin.search and main module search function's 'language' parameter to 'catalog'
  • Support for multiple search vectors per class

0.3.3 (2013-10-03)

  • Fixed support for numbers in parse_search_query

0.3.2 (2013-10-03)

  • Added support for hyphens between words

0.3.1 (2013-10-02)

  • Fixed parse_search_query to support nested parenthesis and negation operator

0.3.0 (2013-10-01)

  • Added better search query parsing capabilities (support for nested parenthesis, or operator and negation operator)

0.2.1 (2013-08-01)

  • Made psycopg dependency more permissive

0.2.0 (2013-08-01)

  • Added dependency to SQLAlchemy-Utils
  • Search vectors must be added manually to each class

0.1.8 (2013-07-30)

  • Fixed safe_search_terms single quote handling

0.1.7 (2013-05-22)

  • Language set explicitly on each query condition

0.1.6 (2013-04-17)

  • Fixed search function when using session based queries

0.1.5 (2013-04-03)

  • Added table name identifier quoting

0.1.4 (2013-01-30)

  • Fixed search_filter func when using empty or undefined search options

0.1.3 (2013-01-30)

  • Added support for custom language parameter in query search functions

0.1.2 (2013-01-30)

  • Added psycopg2 to requirements, fixed travis.yml

0.1.1 (2013-01-12)

  • safe_search_terms support for other than english catalogs

0.1.0 (2013-01-12)

  • Initial public release