Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
553: Update version for the next release (v0.11.0) r=alallema a=meili-bot This version makes this package compatible with Meilisearch v0.30.0 🎉 Check out the changelog of [Meilisearch v0.30.0](https://github.com/meilisearch/meilisearch/releases/tag/v0.30.0) for more information on the changes(#382). ##⚠️ Breaking changes * Add a builder for `SearchRequest` class (#543) `@alallema` - The search method can now only be instantiated: ```java SearchResult search(String q) Searchable search(SearchRequest searchRequest) ``` * Parameters on `getTasks` name changes: #390 - `status` -> `statuses` - `indexUID` -> `indexUIDS` - `type` -> `types` * New `pagination` strategy with the search parameters `page` and `hitsPerPage` #546 - `public Searchable search(SearchRequest searchRequest)` method now return `Searchable` which can be extended to two different classes of results `SearchResult` and `SearchResultPaginated` - `SearchResult` is now an extended class of `Searchable` - Creation of the `SearchResultPaginated` class to handle pagination results from search - Creation of a common search result class `Searchable` ## 🚀 Enhancements * Implement `getRawIndexes` with query parameters (#558) `@oraliahdz` * New filters on `setTasks`: `uid`, `beforeEnqueuedAt`, `afterEnqueuedAt`, ... see #544 * New `client.cancelTasks` method that lets you cancel `enqueued` and `processing` tasks #547 * New `client.deleteTasks` method that lets you delete tasks #548 * New `client.swapIndexes` method that lets you swap two indexes #554 * New fields on `TaskDetails` and modification of ``TaskInfo` #545 ## 🐛 Bug Fixes * Fix: #550 Add a constructor to initialize HttpClient using Gson by default (#551) `@gpor0` * Fix matching strategy enum usage and add test (#561) `@alallema` Thanks again to `@alallema,` `@gpor0` and `@oraliahdz!` 🎉 Co-authored-by: meili-bot <[email protected]> Co-authored-by: Amélie <[email protected]>
- Loading branch information