Releases: pelias/query
v11.4.0
v11.3.0
v11.2.0
v11.1.0
v11.0.0
11.0.0 (2020-08-27)
Features
- multi_match: Remove old multi_match view (ae426ae)
BREAKING CHANGES
- multi_match: the old multi_match view is removed.
I don't remember writing it, but since
#14 in early 2016(!) we have had a
general purpose view for
multi_match
queries.
This view doesn't fit our current pattern for keeping general purpose
(i.e. corresponding to built in Elasticsearch query) views in the
view/leaf directory, and it doesn't support as much functionality as
the multi_match view @Joxit made for us in
#114 last year.
This PR removes the older view, and in the process converts the
admin_multi_match view over to using the new multi_match leaf query.
While I don't think anything in the Pelias API uses the old
multi_match query directly, this removal will require changes to the
API tests because of minor differences in the final output.
v10.0.0
10.0.0 (2020-06-23)
Features
- allow specifying analyzer for
address_parts.street(cb818e6)
BREAKING CHANGES
- This allows us to change the query-time analyzer for
theaddress_parts.streetfield within the API.
While this PR by itself should not change any behavior of the Pelias
API, it will change queries enough to break our test fixtures. Making
this a breaking change allows us to update cleanly.