Skip to content

v0.25.0 🐹

Compare
Choose a tag to compare
@meili-bot meili-bot released this 05 Jun 11:57
· 269 commits to refs/heads/main since this release
e6ebf2f

Release CHANGELOG:

This version introduces features released on Meilisearch v1.2.0 🎉
Check out the changelog of Meilisearch v1.2.0 for more information on the changes.
⚠️ If you want to adopt new features of this release, update the Meilisearch server to the according version.

🚀 Enhancements

  • Addition of the method DeleteDocumentsByFilter, this method takes an interface{} which allows you to send different types of filters (string, []string, []interface{}{[]string{}}, ...). The filter field works precisely like the filter field used on the search method. See the docs on how to use filters. #440 @alallema

    ⚠️ You must configure the attributes you want to filter using the Index.UpdateFilterableAttributes().
    ⚠️ Remember to update your Meilisearch server to v1.2.0 or newer before adopting it.

  • Add the ability to add Filter in the DocumentsQuery. When a query with a filter is sent to getDocuments, it will filter the documents like the search method. See the docs on how to use filters. #439 @alallema

    ⚠️ You must configure the attributes you want to filter using the Index.UpdateFilterableAttributes().
    ⚠️ Remember to update your Meilisearch server to v1.2.0 or newer before adopting it.

Thanks again to @alallema, @curquiza ! 🎉