Skip to content

Releases: meilisearch/meilisearch-js-plugins

v0.8.1-optional-words-beta.0 🔗

02 Aug 14:36
2e6cd36
Compare
Choose a tag to compare
Pre-release

This version makes this package compatible with Meilisearch v0.29.0-optional-words.beta.1 🎉

In this version, you can try out the new optionalWords search parameter we are testing out. For complete information on the feature, please refer to this guide.

🚀 Enhancements

  • Feature prototype: define strategy on optional words during search #817

Usage

optionalWords gives you the possibility to chose how Meilisearch should handle the presence of multiple query words.

For example, if your query is Hello world by default Meilisearch returns documents containing either both Hello and world or documents that only contain hello. This is the last strategy, where words are stripped from the right.
The other strategy is none, where both hello and worlds must be present in a document for it to be returned.

import { instantMeiliSearch } from '@meilisearch/instant-meilisearch'

const searchClient = instantMeiliSearch(
  host,
  apiKey,
  {
      optionalWords: 'none' // default last
  }
)

Thanks again to @bidoubiwa ! 🎉

v0.8.1 🔗

26 Jul 10:00
dd7cd75
Compare
Choose a tag to compare

🚀 Enhancements

  • Add ability to clear cache to allow real-time refresh of search results. (#808) @fadeaway

Thanks again to @PolyDevil, @bidoubiwa, @fadeaway, @meili-bors[bot] and @sc-kknowles! 🎉

v0.8.1-pagination-beta.0

26 Jul 11:33
1d95cfe
Compare
Choose a tag to compare
Pre-release

This version makes this package compatible with Meilisearch v0.29.0-pagination.beta.1 🎉

Pagination Changes

Previously, when using the Pagination widget you had to add the parameters paginationTotalHits and finitePagination in your instantMeilisearch options to showcase page numbers.

With this beta feature, the paged pagination is handled natively by Meilisearch.

For complete information on the feature, please refer to this guide.

💥 Breaking changes

  • The parameters paginationTotalHits and finitePagination are removed

v0.8.0 🔗

12 Jul 09:19
064b0f7
Compare
Choose a tag to compare

This version makes this package compatible with Meilisearch v0.28.0 🎉
Check out the changelog of Meilisearch v0.28.0 for more information on the changes.

💥 Breaking changes

  • This release is only compatible with the latest version of Meilisearch v0.28.0
  • facetsDistribution search request parameter was renamed to facets causing a throw when using this package version with a version of Meilisearch prior to v0.28.0. (#779) @bidoubiwa

🚀 Enhancements

Analytics is enabled by default in the server, but you can disable them by following this guide
Also, of course, every analytics data we collect are ANONYMOUS read the guide for more information.

Thanks again to @bidoubiwa ! 🎉

v0.8.0-beta.0

04 Jul 10:55
Compare
Choose a tag to compare
v0.8.0-beta.0 Pre-release
Pre-release

This version makes this package compatible with Meilisearch v0.28.0rc1 🎉
Check out the changelog of Meilisearch v0.28.0rc1 for more information on the changes.

💥 Breaking changes

  • facetsDistribution search request parameter was renamed to facets causing a throw when using this package version with a version of Meilisearch prior to v0.28.0rcX. #779

Thanks again to @bidoubiwa ! 🎉

v0.7.1 🔗

09 May 14:17
c38480c
Compare
Choose a tag to compare

This version makes this package compatible with Meilisearch v0.27.0 🎉
Check out the changelog of Meilisearch v0.27.0 for more information on the changes.

🚀 Enhancements

Thanks again to @bidoubiwa and @mmachatschek! 🎉

v0.7.0 🔗

06 Apr 11:39
0e27187
Compare
Choose a tag to compare

⚠️ Breaking changes

  • Introduce finitePagination setting: remove default fetch of 200 documents (#707) @bidoubiwa
  • Remove meilisearch client from public access (#708) @bidoubiwa

🐛 Bug Fixes

🔒 Security

  • [Security] Bump minimist from 1.2.5 to 1.2.6 (#711)

Thanks again to @bidoubiwa, and @meili-bors[bot]! 🎉

v0.6.2 🔗

21 Mar 16:40
a4e4546
Compare
Choose a tag to compare

🚀 Enhancements

  • Add possibility to show facets with 0 matching documents (#695) @bidoubiwa

See this documentation for more information

Thanks again to @bidoubiwa and @curquiza! 🎉

v0.6.1 🔗

14 Mar 18:49
980fbc8
Compare
Choose a tag to compare

🚀 Enhancements

  • Bump meilisearch version (#686) @brunoocasali
  • Bump follow-redirects from 1.14.7 to 1.14.8 in /playgrounds/vue (#666)

🔒 Security

  • [Security] Bump nanoid from 3.1.20 to 3.2.0 in /playgrounds/angular (#651)
  • [Security] Bump shelljs from 0.8.4 to 0.8.5 (#643)

Thanks again to @bidoubiwa, @brunoocasali, @curquiza! 🎉

v0.6.0 🔗

13 Jan 15:23
6e313d0
Compare
Choose a tag to compare

This package version is compatible with MeiliSearch v0.25.0 🎉

⚠️ Breaking changes

  • This package uses meilisearch-js v0.24.0 that only works with MeiliSearch v0.25.0. It means this instant-meilisearch version is only compatible with MeiliSearch v0.25.0 and later, but not with v0.24.0 and older. Be sure you are using at least MeiliSearch v0.25.0 or newer before doing the upgrade.

🚀 Enhancements

  • Add compatibility with or operator on refinmentlist (#611) @bidoubiwa

Thanks again to @bidoubiwa ! 🎉