Skip to content

Releases: meilisearch/meilisearch-js-plugins

@meilisearch/instant-meilisearch@0.18.1

15 May 11:51
7e8908b
Compare
Choose a tag to compare

Patch Changes

  • ac74ef7: Update meilisearch-js dependency to v0.40 (ignore previous version v0.39)

@meilisearch/instant-meilisearch@0.18.0

06 May 14:28
6178f19
Compare
Choose a tag to compare

Minor Changes

  • 12b2fe8: Update minimum meilisearch version to v0.39.0

⚠️ Meilisearch 0.39.0 has a breaking change when it comes to Vite apps check it out: https://github.com/meilisearch/meilisearch-js/releases/tag/v0.39.0

@meilisearch/instant-meilisearch@0.17.0

11 Mar 13:35
73a41e5
Compare
Choose a tag to compare

Minor Changes

  • 234d699: - exposed created MeiliSearch instance

    • 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 single MeiliSearch instance 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(/*...*/);
  • 767a334: Update meilisearch-js version

@meilisearch/autocomplete-client@0.3.0

13 Feb 08:59
8bf9016
Compare
Choose a tag to compare

Minor Changes

  • 00f30c9: Remove node 14 and 16 from workflow

@meilisearch/instant-meilisearch@0.16.0

07 Feb 14:14
22f37d5
Compare
Choose a tag to compare

Minor Changes

  • b1343c1: Enable experimental hybrid search

@meilisearch/instant-meilisearch@0.15.0

22 Jan 13:57
ee10f9d
Compare
Choose a tag to compare

Minor Changes

  • 72726ac: Update meilisearch-js version
  • 36b5a62: Fixed RegExp in filter-adapter.ts and sort-context.ts to work in Safari

@meilisearch/instant-meilisearch@0.14.0

26 Dec 14:27
cf7b710
Compare
Choose a tag to compare

Minor Changes

  • 5b6be19 & ed8b6a3: Added ability to override a selection of Meilisearch search parameters.

    ⚠️ The returned value of the core instantMeiliSearch 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.

    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/instant-meilisearch@1.0.0

11 Dec 02:48
2bd6163
Compare
Choose a tag to compare

⚠️⚠️⚠️ 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 core instantMeiliSearch 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.

    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/autocomplete-client@0.2.2

11 Dec 02:48
2bd6163
Compare
Choose a tag to compare

Patch Changes

  • 5b6be19: Added ability to override a selection of Meilisearch search parameters.

    ⚠️ The returned value of the core instantMeiliSearch 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.

    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/instant-meilisearch@1.0.0

@meilisearch/instant-meilisearch@0.13.6

26 Sep 14:20
b94f440
Compare
Choose a tag to compare

Patch Changes

  • abd298e: Fix HierarchicalMenu when keepZeroFacets is set to true
  • 52c3d9b: Update the meilisearch-js version