Skip to content

v0.14.3 πŸš‚

Compare
Choose a tag to compare
@meili-bot meili-bot released this 13 Mar 19:49
· 42 commits to refs/heads/main since this release
5450df2

πŸš€ Enhancements

  • Allow custom group names in multi search (#391) @ellnix

    From the README:
    You can search the same index multiple times by specifying :index_uid:

    query = 'hero'
    multi_search_results = MeiliSearch::Rails.multi_search(
      'Isekai Manga' => { q: query, class_name: 'Manga', filters: 'genre:isekai', index_uid: 'mangas_production' }
      'Shounen Manga' => { q: query, class_name: 'Manga', filters: 'genre:shounen', index_uid: 'mangas_production' }
      'Steampunk Manga' => { q: query, class_name: 'Manga', filters: 'genre:steampunk', index_uid: 'mangas_production' }
    )

πŸ› Bug Fixes

  • Fix will_paginate crash when Meilisearch disabled (#385) @ellnix
  • Properly set limit in Kaminari (#395) @ellnix
  • Prevent background job queuing when deactivated (#401) @ellnix

Thanks again to @ellnix! πŸŽ‰