Releases: meilisearch/meilisearch-js-plugins
@meilisearch/[email protected]
Patch Changes
- ac74ef7: Update meilisearch-js dependency to v0.40 (ignore previous version v0.39)
 
@meilisearch/[email protected]
Minor Changes
- 12b2fe8: Update minimum meilisearch version to v0.39.0
 
@meilisearch/[email protected]
Minor Changes
- 
234d699: - exposed created
MeiliSearchinstance- re-exported all of 
"meilisearch"package 
These improvements make it so that no separate
"meilisearch"package
has to be installed in order to use its exports directly. This
way a singleMeiliSearchinstance can be re-used, and we can potentially
save on bundle size by avoiding a separate different version installation of
"meilisearch".import { instantMeiliSearch, meilisearch, } from "@meilisearch/instant-meilisearch"; // re-exported "meilisearch" ^ const { meiliSearchInstance, // ^ re-usable MeiliSearch instance searchClient, } = instantMeiliSearch(/*...*/);
 - re-exported all of 
 - 
767a334: Update meilisearch-js version
 
@meilisearch/[email protected]
Minor Changes
- 00f30c9: Remove node 14 and 16 from workflow
 
@meilisearch/[email protected]
Minor Changes
- b1343c1: Enable experimental hybrid search
 
@meilisearch/[email protected]
@meilisearch/[email protected]
Minor Changes
- 
5b6be19 & ed8b6a3: Added ability to override a selection of Meilisearch search parameters.
⚠️ The returned value of the coreinstantMeiliSearchfunction 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.Migration
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, });
 
Patch Changes
- 06377ef: Fixes issue where backslashes ("\") and quotes (
") are not escaped in filters. 
[deprecated] @meilisearch/[email protected]
⚠️ ⚠️ ⚠️  DEPRECATED ⚠️ ⚠️ ⚠️ 
Please use v0.14.0 instead. Both releases contain the same codebase. You can read why we did this here.
Major Changes
- 
5b6be19: Added ability to override a selection of Meilisearch search parameters.
⚠️ The returned value of the coreinstantMeiliSearchfunction 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.Migration
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, });
 
Patch Changes
- 06377ef: Fixes issue where backslashes ("\") and quotes (
") are not escaped in filters. 
@meilisearch/[email protected]
Patch Changes
- 
5b6be19: Added ability to override a selection of Meilisearch search parameters.
⚠️ The returned value of the coreinstantMeiliSearchfunction 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.Migration
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/[email protected]