Skip to content

v0.24.0 🐹

Compare
Choose a tag to compare
@meili-bot meili-bot released this 03 Apr 10:00
· 292 commits to refs/heads/main since this release
9576ecf

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

⚠️ 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 takes CsvDocumentsQuery as a parameter instead of a ...string
    • Changed AddDocumentsCsvInBatches() which takes CsvDocumentsQuery as a parameter instead of a ...string
    • Changed UpdateDocumentsCsv() which takes CsvDocumentsQuery as a parameter instead of a ...string
    • Changed UpdateDocumentsCsvInBatches() which takes CsvDocumentsQuery as a parameter instead of a ...string

πŸš€ 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 ! πŸŽ‰