Releases: meilisearch/meilisearch-js-plugins
v0.8.1-optional-words-beta.0 🔗
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 🔗
🚀 Enhancements
Thanks again to @PolyDevil, @bidoubiwa, @fadeaway, @meili-bors[bot] and @sc-kknowles! 🎉
v0.8.1-pagination-beta.0
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
andfinitePagination
are removed
v0.8.0 🔗
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 tofacets
causing a throw when using this package version with a version of Meilisearch prior tov0.28.0
. (#779) @bidoubiwa
🚀 Enhancements
- Pass client agent to meilisearch-js (#780) @bidoubiwa
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
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 tofacets
causing a throw when using this package version with a version of Meilisearch prior tov0.28.0rcX
. #779
Thanks again to @bidoubiwa ! 🎉
v0.7.1 🔗
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
- Add highlight prefix suffix tags (#739) @bidoubiwa
- Add crop marker support (#738) @bidoubiwa
Thanks again to @bidoubiwa and @mmachatschek! 🎉
v0.7.0 🔗
⚠️ Breaking changes
- Introduce finitePagination setting: remove default fetch of 200 documents (#707) @bidoubiwa
- Remove meilisearch client from public access (#708) @bidoubiwa
🐛 Bug Fixes
- Fix placeholdersearch (#710) @bidoubiwa
🔒 Security
- [Security] Bump minimist from 1.2.5 to 1.2.6 (#711)
Thanks again to @bidoubiwa, and @meili-bors[bot]! 🎉
v0.6.2 🔗
🚀 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 🔗
🚀 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 🔗
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 ! 🎉