Skip to content
This repository was archived by the owner on Nov 14, 2021. It is now read-only.

Commit 579e387

Browse files
committed
v3.1.
1 parent 6dd2dd4 commit 579e387

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v3.1
2+
3+
+ Add support for all full text kwargs
4+
15
# v3
26

37
+ Full ES 2 DSL support

docs/queries.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Query.simple_query_string
1111

1212
.. code:: python
1313
14-
Query.simple_query_string(query, fields=[])
14+
Query.simple_query_string(query, fields=[], default_operator=None, analyzer=None, flags=None, locale=None, lenient=None, lowercase_expanded_terms=None, analyze_wildcard=None, minimum_should_match=None)
1515
1616
1717
Query.span_first
@@ -67,7 +67,7 @@ Query.match
6767

6868
.. code:: python
6969
70-
Query.match(field, query, operator=None, zero_terms_query=None, cutoff_frequency=None, boost=None)
70+
Query.match(field, query, operator=None, zero_terms_query=None, cutoff_frequency=None, boost=None, rewrite=None, prefix_length=None, fuzziness=None, minimum_should_match=None, analyzer=None, max_expansions=None)
7171
7272
7373
Query.type
@@ -123,7 +123,7 @@ Query.common
123123

124124
.. code:: python
125125
126-
Query.common(query)
126+
Query.common(query, minimum_should_match=None, high_freq=None, low_freq=None, high_freq_operator=None, low_freq_operator=None, cutoff_frequency=None)
127127
128128
129129
Query.indices
@@ -195,7 +195,7 @@ Query.multi_match
195195

196196
.. code:: python
197197
198-
Query.multi_match([fields], query)
198+
Query.multi_match([fields], query, operator=None, zero_terms_query=None, cutoff_frequency=None, boost=None, rewrite=None, prefix_length=None, fuzziness=None, minimum_should_match=None, analyzer=None, max_expansions=None)
199199
200200
201201
Query.more_like_this
@@ -347,7 +347,7 @@ Query.query_string
347347

348348
.. code:: python
349349
350-
Query.query_string(query, fields=[])
350+
Query.query_string(query, fields=[], default_field=None, default_operator=None, analyzer=None, allow_leading_wildcard=None, lowercase_expanded_terms=None, enable_position_increments=None, fuzzy_max_expansions=None, fuzziness=None, fuzzy_prefix_length=None, phrase_slop=None, boost=None, analyze_wildcard=None, auto_generate_phrase_queries=None, max_determinized_states=None, minimum_should_match=None, lenient=None, locale=None, time_zone=None)
351351
352352
353353
Query.constant_score

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
if __name__ == '__main__':
99
setup(
10-
version='3',
10+
version='3.1',
1111
name='ElasticQuery',
1212
description='A simple query builder for Elasticsearch 2',
1313
author='Nick Barrett',

0 commit comments

Comments
 (0)