Skip to content

Releases: meilisearch/strapi-plugin-meilisearch

v0.6.0-strapi-v3.0 🚀

26 Oct 15:11
8c75f7d
Compare
Choose a tag to compare

Plugin version compatible with strapi-v3

The plugin version compatible with strapi v3 is now compatible with Meilisearch v0.29.1 🎉
Check out the changelog of Meilisearch v0.29.0 for more information on the changes.

to update:

npm update strapi-plugin-meilisearch@strapi_v3
# or 
yarn upgrade strapi-plugin-meilisearch@strapi_v3

Thanks again to @bidoubiwa! 🎉

v0.8.0 🚀

12 Oct 14:02
041e12b
Compare
Choose a tag to compare

⚠️ Breaking changes

Removal of populateEntryRule

The setting populateEntryRule in the plugin configuration is removed in favor of populate in entriesQuery (see next session).

Before:

{
  restaurant: { populateEntryRule: [] }
}

After:

{
  restaurant: { entriesQuery: { populate: [] }}
}

New plugin configuration: entriesQuery

It is possible with entriesQuery to define how your data will be fetched from your database. Here are the available options (plus locale from the internalization plugin).
See this readme section for further information.

Example

In plugin.js

module.exports = {
  meilisearch: {
    config: {
      restaurant: {
        entriesQuery: {
          limit: 1000, // batch size
          locale: 'all', // retrieve all languages
          ...
        }
      }
    }
  },
}

Thanks again to @bidoubiwa, and @meili-bors[bot]! 🎉

v0.7.3 🚀

06 Oct 10:41
8156567
Compare
Choose a tag to compare

🐛 Bug Fixes

Thanks again to @bidoubiwa! 🎉

v0.7.2 🚀

03 Oct 16:48
7f18389
Compare
Choose a tag to compare

This version makes this package compatible with Meilisearch v0.29.0 🎉
Check out the changelog of Meilisearch v0.29.0 for more information on the changes.

Thanks again to @LiquidITGuy, @bidoubiwa, @brunoocasali and @romitkarmakar! 🎉

v0.7.1 🚀

26 Jul 20:07
f6cb707
Compare
Choose a tag to compare

🐛 Bug Fixes

Thanks again to @bidoubiwa, @meili-bors[bot] and @oluademola! 🎉

v0.7.0 🚀

12 Jul 13:14
e5fcf99
Compare
Choose a tag to compare

This version makes this package compatible with Meilisearch v0.28.0 🎉
Check out the changelog of Meilisearch v0.28.0 for more information on the changes.

💥 Breaking changes

🚀 Enhancements

  • Pass strapi client agent to meilisearch-js #455

Analytics is enabled by default in the server, but you can disable them by following this guide
Also, of course, every analytics data we collect are ANONYMOUS read the guide for more information.

Thanks again to @bidoubiwa ! 🎉

v0.6.6 🚀

06 Jun 16:42
2b30b98
Compare
Choose a tag to compare

🐛 Bug Fixes

Thanks again to @kimiiz55! 🎉

v0.6.5 🚀

25 May 13:40
fc77153
Compare
Choose a tag to compare

🚀 Enhancements

Thanks again to @bidoubiwa and @nicolasvienot! 🎉

v0.6.4 🚀

18 May 08:15
cade9df
Compare
Choose a tag to compare

This version makes this package compatible with Meilisearch v0.27.0 🎉
Check out the changelog of Meilisearch v0.27.0 for more information on the changes.

🚀 Enhancements

  • Update plugin label name (#412) @dzcpy
  • Fix entries that were added/updated only partially in Meilisearch (#410) @nhvu1988

Thanks again to @bidoubiwa, @dzcpy, and @nhvu1988! 🎉

v0.6.3 🚀

03 May 13:15
b86bd99
Compare
Choose a tag to compare

🚀 Enhancements

  • Change transformEntry function in plugin.js to async function (#387) @dzcpy
  • Make filterEntry async compatible in filterEntries function in config.js (#395) @nicolasvienot

🐛 Bug Fixes

Thanks again to @bidoubiwa, @dzcpy and @nicolasvienot! 🎉