Skip to content

Releases: meilisearch/meilisearch-js

v0.15.0 🌻

29 Oct 15:28
22cedfc
Compare
Choose a tag to compare

Changes

  • Fix the non-standard (V8) captureStackTrace method call in the custom error instance (#634) @neupauer
  • Add an ErrorStatusCode enum (#638) @neupauer
  • Add ability to abort search request (#636) @neupauer

Breaking changes

Thanks again to @emulienfou, @emyann, @neupauer, and @bidoubiwa! 🎉

v0.14.2 🌻

15 Oct 16:04
36930fe
Compare
Choose a tag to compare

Changes

  • Resolve path removal of host url (#628) @bidoubiwa :
    Fixes problem where additional sub-routes in host address was ignored,
    for example: Given this address as a host "http://localhost:7700/api", the /api will not be ignored anymore.

Thanks again to Janne Keiski and @bidoubiwa ! 🎉

v0.14.1 🌻

14 Oct 14:54
1367d10
Compare
Choose a tag to compare

Changes

Thanks again to @bidoubiwa, @curquiza, @eskombro and @neupauer! 🎉

v0.14.0 🌻

22 Sep 12:20
d02be31
Compare
Choose a tag to compare

Changes

  • replaced Object.fromEntries() to support node < v12.0 (#583) @Asher-q

Breaking changes

  • Remove axios and change browser bundle name (#573) @bidoubiwa
    • The commonJS bundle cjs has been removed and replaced with an umd bundle. The umd bundle works on both browsers and node.
    • The main in package.json was previously a path to the cjs bundle, it is now a path to the umd bundle.
    • The browser bundle was previously named meilisearch.browser.js it is now renamed to meilisearch.umd.js. If you'r using a direct path or a CDN don't forgot to change that path with: /dist/bundles/meilisearch.umd.js.
      New path to browser bundle:
<script src="https://cdn.jsdelivr.net/npm/meilisearch@latest/dist/bundles/meilisearch.umd.js"></script>
  • Client object has changed. Axios related information has been removed, fetch related information has been added:

New client object:

{
  client: MeiliSearch {
    config: { host: 'http://127.0.0.1:7700', apiKey: 'masterKey' },
    httpRequest: HttpRequests {
      headers: [Object],
      baseUrl: 'http://127.0.0.1:7700',
      url: [URL]
    }
  }
}

Thanks again to @Asher-q and @bidoubiwa ! 🎉

v0.13.1 🌻

01 Sep 14:56
b81b4ac
Compare
Choose a tag to compare

Changes

Thanks again to @bidoubiwa, @curquiza, and @eskombro! 🎉

v0.13.0 🌻

20 Aug 13:40
3d9ffac
Compare
Choose a tag to compare

Changes

  • allow for additional header and set correct content type for requests (#546) @niemannd

Breaking changes

Thanks again to @MicroDroid, @bidoubiwa, and @niemannd! 🎉

v0.12.0 🌻

03 Aug 15:33
36d4339
Compare
Choose a tag to compare

Changes

  • Linting update: simplification of scripts and linting on tests (#523) @bidoubiwa

Breaking changes

Thanks again to @bidoubiwa ! 🎉

v0.11.3 🌻

20 Jul 16:59
6c39e7c
Compare
Choose a tag to compare

Changes

Thanks again to @JoshGlazebrook, @bidoubiwa, @curquiza, and @emyann! 🎉

v0.11.2 🌻

01 Jul 17:07
4eb6c26
Compare
Choose a tag to compare

Changes

Thanks again to @bidoubiwa! 🎉

v0.11.1 🌻

25 Jun 08:52
f246418
Compare
Choose a tag to compare

Changes

  • Add release drafter (#452) @curquiza
  • Update code_sample of updateDocuments (#453) @bidoubiwa
  • Feat: Make IndexInterface generic. createIndex and getIndex generic support (#442) @emyann
  • Rename Meilisearch class into MeiliSearch in Typescript files (#467) @curquiza
  • Add tests on facetfilter with spaces (#461) @bidoubiwa
  • Remove not working umd bundle and replace with iife and cjs (#471) @bidoubiwa

Thanks again to @bidoubiwa, @curquiza, and @emyann! 🎉