Releases: meilisearch/meilisearch-js-plugins
v0.5.1 🔗
This version makes this package compatible with MeiliSearch v0.21.0
🎉 Check out the changelog of MeiliSearch v0.21.0
Changes
- Changes related to the next MeiliSearch release (v0.21.0) (#377)
- [Security] Bump path-parse from 1.0.6 to 1.0.7 (#475)
- [Security] Bump postcss from 7.0.35 to 7.0.36 (#433)
- [Security] Bump glob-parent from 5.1.1 to 5.1.2 (#496)
Thanks again to @bidoubiwa, @curquiza, ! 🎉
v0.5.0 🔗
Changes
- FIX: Avoid snippeting on empty string (#403) @bidoubiwa
Breaking changes ⚠️
- Change instantMeiliSearch parameters (#378) @bidoubiwa
- Tests suites (#383) @bidoubiwa
Access MeiliSearch Client
Now:
const searchClient = instantMeiliSearch(..)
searchClient.client.MeiliSearchClient
Before:
const searchClient = instantMeiliSearch(..)
searchClient.client.client
instantMeilisearch search client has less parameters
more details see #378
New prototype:
export type InstantMeiliSearchInstance = {
MeiliSearchClient: MStypes.MeiliSearch
search: (
requests: IStypes.SearchRequest[]
) => Promise<{ results: SearchResponse[] }>
}
Thanks again to @bidoubiwa ! 🎉
v0.4.2 🔗
Changes
- Communicate filters and numeric filters properly to instantsearch (#372) @bidoubiwa
Thanks again to @bidoubiwa ! 🎉
v0.4.1 🔗
v0.4.0 🔗
Changes
- Fix infinite hits (#335) @bidoubiwa
Breaking changes ⚠️
- Fix nested object being transfom into [object, object] in highlight (#344) @bidoubiwa
Thanks again to @bidoubiwa, @mdubus ! 🎉
v0.3.2 🔗
Changes
- Add objectID when primaryKey is provided (#322) @bidoubiwa
- Fix processing time that was always 0 in Stats widget (#323) @bidoubiwa
Thanks again to @bidoubiwa! 🎉
v0.3.1 🔗
Changes
- Add angular repo to readme (#260) @bidoubiwa
- Fix broken pagination (#273) @bidoubiwa
Thanks again to @bidoubiwa, ! 🎉
v0.3.0 🔗
Breaking changes ⚠️
- Convert project to TypeScript (#178) @bb, @bidoubiwa, @curquiza
- Instant MeiliSearch becomes compatible with all typescript projects
- Changed to named export instead of default export (#238) @bidoubiwa
New usage
ES:
import {instantMeiliSearch } from '@meilisearch/instant-meilisearch' // ES
const searchClient = instantMeiliSearch(...);
Node
const { instantMeiliSearch } = require('@meilisearch/instant-meilisearch') // Node
const searchClient = instantMeiliSearch(...);
instantMeiliSearch // browser
window.instantMeiliSearch // browser
const searchClient = instantMeiliSearch(...);
const searchClient2 = window.instantMeiliSearch(...);
Thanks again to @bb, @bidoubiwa, @curquiza, and @react-learner! 🎉
v0.2.7 🔗
Changes
- Add css template and html playground (#225) @bidoubiwa
We added a template folder with css
suggestions for instant-meilisearch.
As of this release, we only provide a simple one field search design, more are bound to come. Feel free to contribute with your own css template <3 (SCSS, Sass, Less, Stylus are also accepted).
If you'd like to contribute to the templates 😊 Please visit our contribution guide.
Thanks again to @bidoubiwa! 🎉
v0.2.6 🔗
Changes
- Add error information in console (#216) @bidoubiwa
- Upgrade dependencies and fix security vulnerabilities
Thanks again to @bidoubiwa, and @curquiza! 🎉