Releases: meilisearch/meilisearch-js
v0.32.2 🌻
🚀 Enhancements
- Add method to add/update documents from a string (#1474) @bidoubiwa
Thanks again to @bidoubiwa! 🎉
v0.32.1 🌻
This version introduces features released on Meilisearch v1.1.0 🎉
Check out the changelog of Meilisearch v1.1.0 for more information on the changes.
If you want to adopt new features of this release, update the Meilisearch server to the according version.
🚀 Enhancements
- New search response field
facetStats
providesmin
andmax
value for facets with numeric attributes #1459 - New method
client.multiSearch()
provides the possibility to make multiple request at once #1458
Example:
client.multiSearch({ queries: [
{
indexUid: 'movies',
q: 'pooh'
},
{
indexUid: 'movies',
q: 'nemo'
},
{
indexUid: 'movie_ratings',
q: 'us'
},
]}
)
Thanks again to @bidoubiwa! 🎉
v0.32.0 🌻
⚠️ Breaking changes
- Make
SearchResponse
types more strict regarding to pagination (#1435) @fehnomenal - feat: added support for custom request config (#1461) @amgadserry
Thanks again to @amgadserry, @bidoubiwa, @brunoocasali, @fehnomenal, @meili-bors[bot], and Amgad Serry! 🎉
v0.32.0-v1.1.0-pre-release.2
This version makes this package compatible with Meilisearch v1.1.0.rc.1 🎉
Check out the changelog of Meilisearch v1.1.0.rc.1 for more information on the changes.
🚀 Enhancements
v0.32.0-v1.1.0-pre-release.0
This version makes this package compatible with Meilisearch v1.1.0.rc.1 🎉
Check out the changelog of Meilisearch v1.1.0.rc.1 for more information on the changes.
🚀 Enhancements
v0.31.1 🌻
v0.31.0 🌻
This version makes this package compatible with Meilisearch v1.0.0 🎉
Check out the changelog of Meilisearch v1.0.0 for more information on the changes.
⚠️ Breaking change
- Some error codes were added and other were removed see: #1438
🚀 Enhancements
Thanks again to @TeyKey1, @bidoubiwa, and @trim21! 🎉
v0.30.0 🌻
This version makes this package compatible with Meilisearch v0.30.0 🎉
Check out the changelog of Meilisearch v0.30.0 for more information on the changes.
🚀 Enhancements
- New
pagination
strategy with the search parameterspage
andhitsPerPage
#1372 - New filters on
getTasks
:uid
,beforeEnqueuedAt
,afterEnqueuedAt
, ... see #1376 - New
client.cancelTasks
method that lets you cancelenqueued
andprocessing
tasks #1379 - New
client.deleteTasks
method that lets you deleted tasks #1382 - New
client.swapIndexes
method that lets you swap two indexes #1384
⚠️ Breaking change
- Parameters on
getTasks
name changes: #1391status
->statuses
index_uid
->index_uids
type
->types
- Task detail
receivedDocumentIds
renamed toprovidedIds
#1386 - Remove
batchUid
fromTask
class #1388 - Error field in
Task
is now always present and has anull
value when there are no errors #1389 - Add and rename some error codes: #1393
- (ts) Make all the fields of details field of TaskObject optional (#1398) @amit-ksh
- (ts) Make all the fields of details field of TaskObject optional (#1398) @amit-ksh
Thanks again to @amit-ksh, @bidoubiwa, @meili-bors[bot] ! 🎉
v0.30.0-beta.0 🌻
This version makes this package compatible with Meilisearch v0.30.0rc1 🎉
Check out the changelog of Meilisearch v0.29.1 for more information on the changes.
🚀 Enhancements
- New
pagination
strategy with the search parameterspage
andhitsPerPage
#1372 - New filters on
getTasks
:uid
,beforeEnqueuedAt
,afterEnqueuedAt
, ... see #1376 - New
client.cancelTasks
method that lets you cancelenqueued
andprocessing
tasks #1379 - New
client.deleteTasks
method that lets you deleted tasks #1382 - New
client.swapIndexes
method that lets you swap two indexes #1384
⚠️ Breaking change
- Parameters on
getTasks
name changes: #1391status
->statuses
index_uid
->index_uids
type
->types
- Task detail
receivedDocumentIds
renamed tomatchedDocuments
#1386 - Remove
batchUid
fromTask
class #1388 - Error field in
Task
is now always present and has anull
value when there are no errors #1389 - Add and rename some error codes: #1393