Skip to content

Releases: meilisearch/meilisearch-js-plugins

v0.5.1 🔗

25 Aug 13:08
d6038d1
Compare
Choose a tag to compare

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 🔗

24 May 10:29
6e86860
Compare
Choose a tag to compare

Changes

Breaking changes ⚠️

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 🔗

26 Apr 17:04
b7ae607
Compare
Choose a tag to compare

Changes

  • Communicate filters and numeric filters properly to instantsearch (#372) @bidoubiwa

Thanks again to @bidoubiwa ! 🎉

v0.4.1 🔗

02 Apr 21:12
aa48a3e
Compare
Choose a tag to compare

Changes

Thanks again to @bidoubiwa! 🎉

v0.4.0 🔗

01 Apr 09:58
cfd5d78
Compare
Choose a tag to compare

Changes

Breaking changes ⚠️

  • Fix nested object being transfom into [object, object] in highlight (#344) @bidoubiwa

Thanks again to @bidoubiwa, @mdubus ! 🎉

v0.3.2 🔗

11 Mar 20:33
af4fafb
Compare
Choose a tag to compare

Changes

Thanks again to @bidoubiwa! 🎉

v0.3.1 🔗

18 Feb 15:09
75189ce
Compare
Choose a tag to compare

Changes

Thanks again to @bidoubiwa, ! 🎉

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! 🎉