Update version for the next release (v0.14.0) #323
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
MeiliSearch#getKeys
now returns aKeysResults
. (Remove unused code in KeyTests & Add a cleanup step before KeyTests #319, Review improvements #321, Keys changes #313) @brunoocasaliMeiliSearch#getIndexes
now returns aIndexesResults
(Remove unused code in KeyTests & Add a cleanup step before KeyTests #319, Review improvements #321, Indexes changes #314) @brunoocasaliMeiliSearch#createDump
now responds with aResult<TaskInfo, Swift.Error>
object. (Remove unused code in KeyTests & Add a cleanup step before KeyTests #319, Review improvements #321, Drop dumps #311) @brunoocasaliMeiliSearch#getDumpStatus
was removed. Use theMeiliSearch#getTasks
orMeiliSearch#getTask
instead. (Drop dumps #311) @brunoocasaliTaskInfo
type to handle enqueued tasks. (Add TaskInfo #310) @brunoocasaliDump
type was removed (Drop dumps #311) @brunoocasali.SearchParameters
changes (Search changes #317) @brunoocasalifacetsDistribution
field tofacets
.matches
field toshowMatchesPosition
.SearchResult<T>
changes (Search changes #317) @brunoocasalinbHits
field toestimatedTotalHits
.exhaustiveFacetsCount
field.exhaustiveNbHits
field.Index#getDocuments<T>
now returns an objectDocumentsResults<T>
(Remove unused code in KeyTests & Add a cleanup step before KeyTests #319, Review improvements #321, Document changes #312) @brunoocasaliMeiliSearch#getTasks
andIndex#getTasks
now returns an objectTasksResults
(Remove unused code in KeyTests & Add a cleanup step before KeyTests #319, Review improvements #321, Add TaskInfo #310, Tasks changes #315) @brunoocasaliaddDocuments<T>
,createDump
,updateSettings
and other methods that "creates" a new task, now responds with aResult<TaskInfo, Swift.Error>
and therefore they have ataskUid
instead ofuid
(Add TaskInfo #310) @brunoocasaliMeiliSearch#updateKey
method to update keys now receive a new objectKeyUpdateParams
(Keys changes #313, Remove unused code in KeyTests & Add a cleanup step before KeyTests #319) @brunoocasali🐛 Enhancements
MeiliSearch#getIndexes
now accepts an object with paginationIndexesQuery
. (Indexes changes #314) @brunoocasaliMeiliSearch#getDocuments<T>
now accepts an object with paginationDocumentsQuery
. (Document changes #312) @brunoocasaliMeiliSearch#getDocument<T>
now accepts a param calledfields
which takes an array of strings to remap the response. (Document changes #312) @brunoocasaliT
should be able to handle the missing fields.MeiliSearch#createKey
andMeiliSearch#deleteKey
accepts bothapi key
orapi key uid
. (Remove unused code in KeyTests & Add a cleanup step before KeyTests #319, Keys changes #313) @brunoocasaliMeiliSearch#createKey
can optionally specify auid:
to generate deterministic API keys. (Remove unused code in KeyTests & Add a cleanup step before KeyTests #319, Keys changes #313) @brunoocasaliThanks again to @brunoocasali! 🎉