- 731254f: Add highlight metadata
- 7bc6b54: Fix rollup importing wrong "meilisearch"
- 26e7cfd: - update
meilisearch
js client- update
parcel
andturbo
- get rid of angular playground tests, as angular-instantsearch got deprecated
- update
- Updated dependencies [26e7cfd]
- @meilisearch/instant-meilisearch@0.21.0
- 00f30c9: Remove node 14 and 16 from workflow
-
5b6be19: Added ability to override a selection of Meilisearch search parameters.
⚠️ The returned value of the coreinstantMeiliSearch
function has changed!This change was necessary for the aforementioned ability to be implemented and applied in a clean manner. The necessary migration should be of minimal impact.
Change the following
// 1. const client = instantMeiliSearch(/*...*/); // 2. const searchClient = instantMeiliSearch(/*...*/); // 3. instantsearch({ indexName: "movies", searchClient: instantMeiliSearch(/*...*/), });
to the following
// 1. const { searchClient: client } = instantMeiliSearch(/*...*/); // 2. const { searchClient } = instantMeiliSearch(/*...*/); // 3. instantsearch({ indexName: "movies", searchClient: instantMeiliSearch(/*...*/).searchClient, });
-
Updated dependencies [5b6be19]
-
Updated dependencies [06377ef]
- @meilisearch/instant-meilisearch@1.0.0
- 753e9ba: Fix the getting started wrongly instanciating the autocomplete client
- 0f44764: Creation of search client compatible with autocomplete.
- Updated dependencies [0f44764]
- @meilisearch/instant-meilisearch@0.13.2