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
Authorization
header 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
,updateIndex
anddeleteIndex
are now asynchrone regarding MeiliSearch and do not return aIndex
instance anymore, but a task object. Please useindex()
method instead.- Rename
index.getAllUpdateStatus
intoindex.getTasks
- Rename
index.getUpdateStatus
intoindex.getTask
waitForPendingUpdate
is renamed intowaitForTask
and is accessible fromindex
and fromclient
- Remove
getOrCreateIndex
method (#1125) @bidoubiwa - Remove
deleteIndexIfExists
method (#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 ! ๐