v0.14.0 🌻
Changes
Breaking changes
- Remove axios and change browser bundle name (#573) @bidoubiwa
- The commonJS bundle 
cjshas been removed and replaced with anumdbundle. Theumdbundle works on both browsers and node. - The 
mainin package.json was previously a path to thecjsbundle, it is now a path to theumdbundle. - The browser bundle was previously named 
meilisearch.browser.jsit is now renamed tomeilisearch.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: 
 - The commonJS 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 ! 🎉