v0.26.0 π
meili-bot
released this
03 Apr 10:06
·
614 commits
to refs/heads/main
since this release
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
- fix: remove duplicate key on code-samples (#727) @justkahdri
Thanks again to @alallema and @sanders41! π