v0.24.0 πΉ
meili-bot
released this
03 Apr 10:00
·
332 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.
π Bug Fixes
- fix(indexes): Fill in
client
forGetIndexes
results (#426) @candiduslynx
β οΈ Breaking changes
- Add the ability to provide a specific
csv-delimiter
when adding and updating documents in CSV format (#424) @alallema- New type
CsvDocumentsQuery{}
- Changed
AddDocumentsCsv()
which takesCsvDocumentsQuery
as a parameter instead of a...string
- Changed
AddDocumentsCsvInBatches()
which takesCsvDocumentsQuery
as a parameter instead of a...string
- Changed
UpdateDocumentsCsv()
which takesCsvDocumentsQuery
as a parameter instead of a...string
- Changed
UpdateDocumentsCsvInBatches()
which takesCsvDocumentsQuery
as a parameter instead of a...string
- New type
π Enhancements
- Add FacetStats field in SearchResponse (#423) @alallema
- New method
client.MultiSearch()
provides the possibility to make multiple requests at once (#422) @alallema
Example:
client.MultiSearch(&MultiSearchRequest{
Queries: []SearchRequest{
{
IndexUID: "movies",
Query: "pooh",
Limit: 5,
},
{
IndexUID: "movies",
Query: "nemo",
Limit: 5,
},
{
IndexUID: "movie_ratings",
Query: "us",
},
},
})
Thanks again to @alallema, @candiduslynx ! π