Releases: hactar-is/wagtail-meilisearch
Releases · hactar-is/wagtail-meilisearch
v0.17.3
Fixes a bug where the meilisearch indexes could end up with a wrong maxTotalHits
v0.17.2
Fixes a bug where the backend could report the wrong counts for results. This turned out to be down to the fact that _do_count can sometimes get called before _do_search, possibly due to Django's paginator. This finally explains why sometimes search queries ran twice.
v0.17.1
Fixes a bug where multi_search can fail when a model index doesn't exist. For models that have no documents meilisearch doesn't create the empty index, so we need to check active indexes before calling multi_search otherwise the entire call fails.
v0.17.0
- Refactored into multiple files to make the codebase easier to reason about
- Performance improvements
- Reliability improvements on the first run of
update_index
v0.16.1
Allows Wagtail 6 in the deps.
v0.16.0
Massive speed improvement using the /multi-search
endpoint in Meilisearch > 1.1.0 - big thanks to @BertrandBordage for this
v0.15.0
Adds Django 4 support and compatibility with the latest meilisearch server (0.30.2) and meilisearch python (0.23.0)
v0.14.0
Updates to work with latest meilisearch-python and latest Meilisearch. If you're upgrading, you'll want to delete the Meilisearch index and recreate it.
v0.12.0
- Adds
QUERY_LIMIT
option to the config
- Allows latest version of
meilisearch
in the reqs