v0.24.0 ๐ป
This package version is compatible with MeiliSearch v0.25.0 ๐
โ ๏ธ Breaking changes
- This package is only compatible with MeiliSearch v0.25.0 and later, but not with v0.24.0 and older. Be sure you are using at least MeiliSearch v0.24.0 or newer before doing the upgrade.
Why isn't it compatible?- MeiliSearch v0.25.0 uses
Authorizationheader instead ofX-Meili-API-Key - MeiliSearch v0.25.0 has a new API regarding the updates that have been renamed into tasks. More details in the following points
- MeiliSearch v0.25.0 uses
- Changes related to the new task API (#1123) @bidoubiwa Check out the task API references and the asynchronous tasks guide
createIndex,updateIndexanddeleteIndexare now asynchrone regarding MeiliSearch and do not return aIndexinstance anymore, but a task object. Please useindex()method instead.- Rename
index.getAllUpdateStatusintoindex.getTasks - Rename
index.getUpdateStatusintoindex.getTask waitForPendingUpdateis renamed intowaitForTaskand is accessible fromindexand fromclient
- Remove
getOrCreateIndexmethod (#1125) @bidoubiwa - Remove
deleteIndexIfExistsmethod (#1124) @bidoubiwa client.getKeys()does not return an object of keys, but an array of keys. Check out keys API references.
๐ Enhancements
- Add API keys methods (#1123) @bidoubiwa
client.createKey()client.updateKey()client.deleteKey()client.getKey()
Check out the documentation guide.
- Add new methods
client.getTasks()andclient.getTask()
Thanks again to @bidoubiwa, @alallema and @curquiza ! ๐