Skip to content

v0.32.1 🌻

Compare
Choose a tag to compare
@meili-bot meili-bot released this 03 Apr 10:01
· 964 commits to refs/heads/main since this release
4f60551

This version introduces features released on Meilisearch v1.1.0 πŸŽ‰
Check out the changelog of Meilisearch v1.1.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

  • New search response field facetStats provides min and max value for facets with numeric attributes #1459
  • New method client.multiSearch() provides the possibility to make multiple request at once #1458

Example:

client.multiSearch({ queries: [
    {
      indexUid: 'movies',
      q: 'pooh'
    },
    {
      indexUid: 'movies',
      q: 'nemo'
    },
    {
      indexUid: 'movie_ratings',
      q: 'us'
    },
  ]}
)

Thanks again to @bidoubiwa! πŸŽ‰