Skip to content

Releases: meilisearch/meilisearch-js-plugins

v0.3.0 🔗

11 Feb 19:14
4caafa2
Compare
Choose a tag to compare

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 🔗

26 Jan 13:37
0012fa1
Compare
Choose a tag to compare

Changes

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).

105406751-26d97000-5c2d-11eb-9606-7db4f210c078

If you'd like to contribute to the templates 😊 Please visit our contribution guide.

Thanks again to @bidoubiwa! 🎉

v0.2.6 🔗

18 Jan 23:32
211efed
Compare
Choose a tag to compare

Changes

  • Add error information in console (#216) @bidoubiwa
  • Upgrade dependencies and fix security vulnerabilities

Thanks again to @bidoubiwa, and @curquiza! 🎉

v0.2.5 🔗

31 Dec 10:46
8eda17d
Compare
Choose a tag to compare

Changes

  • Upgrade dependencies to fix security vulnerabilities

Thanks again to @bidoubiwa and @curquiza! 🎉

v0.2.4 🔗

12 Nov 16:36
2a8b2bc
Compare
Choose a tag to compare

Changes

v0.2.3 🔗

10 Nov 15:29
199546b
Compare
Choose a tag to compare

Changes

  • Update dependencies
  • Update the docs

This package is now compatible with the last version of MeiliSearch (v0.16.0) without any breakable issue.

Also, thanks to @bb for his involvement in making the CI process of this project better 🎉

v0.2.2 🔗

24 Sep 15:25
4b2203e
Compare
Choose a tag to compare

Changes

  • Set undefined highlight tags to default value for InstantSearch (#85) @curquiza

v0.2.1 🔗

21 Sep 10:41
235c067
Compare
Choose a tag to compare

Changes

Thanks again to @andrelillvede! 🎉

v0.2.0 🔗

20 Aug 16:27
de0a779
Compare
Choose a tag to compare

Changes

Breaking changes

  • Remove histPerPage and rename limitPerRequest into paginationTotalResults (#37) @curquiza

Thanks again to @bidoubiwa, and @curquiza ! 🎉

v0.1.4 🔗

10 Aug 15:03
62a04da
Compare
Choose a tag to compare

Changes

  • Fix pagination issue in React CodeSandBox and add React playground (#31) @curquiza
  • Add browse when no queries are entered (#34) @curquiza