meilisearch-java
meilisearch-java copied to clipboard
Java client for Meilisearch
# Pull Request ## What does this PR do? it replaces String[] arguments with varargs (String ... foo). It simplifies method calls and it should be backwards compatible. NOTE: This...
*Following this [central issue](https://github.com/meilisearch/integration-guides/issues/286)* - [ ] Add two new settings: `separatorTokens` and `nonSeparatorTokens` with `get`, `update`, and `reset` methods associated. Here are the JS equivalents in meilisearch-js you should...
⚠️ This issue is generated, it means the examples and the namings do not necessarily correspond to the language of this repository. Also, if you are a maintainer, please add...
⚠️ This issue is generated, it means the examples and the namings do not necessarily correspond to the language of this repository. Also, if you are a maintainer, please add...
⚠️ This issue is generated, it means the examples and the namings do not necessarily correspond to the language of this repository. Also, if you are a maintainer, please add...
⚠️ This issue is generated, it means the examples and the namings do not necessarily correspond to the language of this repository. Also, if you are a maintainer, feel free...
⚠️ This issue is generated, it means the examples and the namings do not necessarily correspond to the language of this repository. Also, if you are a maintainer, feel free...
https://github.com/meilisearch/meilisearch-java/actions/workflows/ossrh-publish.yml https://github.com/meilisearch/meilisearch-java/actions/runs/4285342955/jobs/7463520292 There is some warnings raised by the publish action: `./gradlew closeAndReleaseRepository` ``` > Task :closeRepository DEPRECATION WARNING. The staging repository ID is not provided. The fallback mode may...
⚠️ This issue is generated, it means the examples and the namings do not necessarily correspond to the language of this repository. Also, if you are a maintainer, feel free...
**Description** Type safety is not applied when decoding the `Result` class throught the JSON handler in the method `getKeys()` and `getTasks()` ```java Result result = httpClient.get(urlPath, Result.class, Key.class); ``` ```java...