v0.24.0 πΉ
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
clientforGetIndexesresults (#426) @candiduslynx
β οΈ Breaking changes
- Add the ability to provide a specific
csv-delimiterwhen adding and updating documents in CSV format (#424) @alallema- New type
CsvDocumentsQuery{} - Changed
AddDocumentsCsv()which takesCsvDocumentsQueryas a parameter instead of a...string - Changed
AddDocumentsCsvInBatches()which takesCsvDocumentsQueryas a parameter instead of a...string - Changed
UpdateDocumentsCsv()which takesCsvDocumentsQueryas a parameter instead of a...string - Changed
UpdateDocumentsCsvInBatches()which takesCsvDocumentsQueryas 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 ! π