Skip to content

v0.26.0 🐍

Compare
Choose a tag to compare
@meili-bot meili-bot released this 03 Apr 10:06
· 614 commits to refs/heads/main since this release
04b4518

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.

⚠️ Breaking changes

  • Change error names from MeiliSerach to Meilisearch (#720) @sanders41

πŸš€ Enhancements

  • Add the ability to provide a specific csv-delimiter when adding and updating documents in CSV format (#716) @alallema
  • New method client.multi_search() provides the possibility to make multiple requests at once (#714) @alallema

Example:

  client.multi_search(
    [
      {'indexUid': 'movies', 'q': 'pooh', 'limit': 5},
      {'indexUid': 'movies', 'q': 'nemo', 'limit': 5},
      {'indexUid': 'movie_ratings', 'q': 'us'}
    ]
  )

πŸ› Bug Fixes

Thanks again to @alallema and @sanders41! πŸŽ‰