Releases: meilisearch/meilisearch-java
v0.14.2 โ๏ธ
๐ Enhancements
- Distinct search parameter support added (#785) @Barabasbalazs
- Support facet distribution for federated search (#792) @Barabasbalazs
- Language settings & search parameter support for Java client (#788) @Barabasbalazs
Thanks again to @Barabasbalazs! ๐
v0.14.1 โ๏ธ
๐ Enhancements
- Add Federation Parameter to multisearch method (#776) @Nsreddy18
- Add attributesToSearchOn to IndexSearchRequest (#779) @wyz8883
๐ Bug Fixes
- Fix Update settings api failure throws ClassCastException (#765) @jdvalenzuelah
Thanks again to @Nsreddy18, @curquiza, @jdvalenzuelah, @wyz8883 and AlexWong! ๐
v0.14.0 โ๏ธ
No breaking but a big addition (embedding support), so I want to avoid any bug in a patch version due to the big addition
๐ Enhancements
- Add the support of embedder settings (#761) @jdvalenzuelah
- Add similar documents query to index (#761) @jdvalenzuelah
Thanks again to @jdvalenzuelah, ! ๐
v0.13.0 โ๏ธ
โ ๏ธ Breaking changes
- Fixing empty TaskError response (#757) @larskristianhaga
2 breaking changes ๐
1๏ธโฃ TaskError class is moved to the model package, meaning the import will need to be changed.
Old import:
import com.meilisearch.sdk.TaskError;
New import:
import com.meilisearch.sdk.model.TaskError;
2๏ธโฃ Renaming all fields inside the TaskError class, to match what the API actually returns, so the fields will be populated.
Old code:
TaskError taskError = taskResult.getError();
taskError.getTaskErrorCode();
taskError.getTaskErrorType();
taskError.getTaskErrorLink();
New code
TaskError taskError = taskResult.getError();
taskError.getCode();
taskError.getType();
taskError.getLink();
๐ Enhancements
- Adding a new field called message to the TaskError class.
- Add frequency matching strategy (#748) @the-sinner
- Add ranking score threshold (#749) @the-sinner
โ๏ธ Maintenance/misc
- Changes related to the next Meilisearch release (v1.9.0) (#747)
Thanks again to @curquiza, @larskristianhaga, and @the-sinner! ๐
v0.12.0 โ๏ธ
๐ Enhancements
- Custom csv delimiter (#726) @jennweir
- Add searchCutoffMs index settings (#732) @the-sinner
- Add ranking score search parameter (#733) @the-sinner
- Add facet search support (#735) @the-sinner
- Add facet stats in search (#742) @the-sinner
- Add showRankingScoreDetails in search (#743) @the-sinner
- Support text-separator setting (#740) @the-sinner
- Add ability to delete document by filter (#741) @the-sinner
- Add sort facets value feature (#739) @the-sinner
๐ Bug Fixes
- fix WaitForTask timeout in case of a task cancellation (#734) @the-sinner
โ๏ธ Maintenance/misc
- Adjust the targetClass parameter variable of the decode method in JsonHandler from class<?> to class (#738) @Mashull
Thanks again to @Mashull, @curquiza, @jennweir, @the-sinner and fanpeng! ๐
v0.11.9 โ๏ธ
๐ Enhancements
๐ Bug Fixes
- Fix publish workflow for Impossible to deploy on OSSRH issue (#731) @seungyeop-lee
Thanks again to @bhupixb, @curquiza, and @seungyeop-lee! ๐
v0.11.8 โ๏ธ
v0.11.7 โ๏ธ
This release contains all the changes from the previous one, 0.11.6 which was not published to Nexus due to a bug which was fixed on #708.
Here is the previous changelog:
๐ Enhancements
- Make MeilisearchException a RuntimeException (#683) @junghoon-vans
- Add createSnapshot() method (#688) @mesutgk15
- Support user-dictionary loading #660 (#689) @mesutgk15
- Improve GSON JSON handler, moving Key specific logic (#690) @jrhenderson1988
- Add multi search client method (#652) @jd2024
- Add all-args-constructor for easy initial config Pagination (#696) @jonaskahn
โ๏ธ Maintenance/misc
- Ignore tests when running gradle build on releasing (#708) @brunoocasali
- Fix invalid reference url in Searchable (#684) @junghoon-vans
Thanks again to @brunoocasali, @curquiza, @jd2024, @jrhenderson1988, @junghoon-vans, and @mesutgk15! ๐
v0.11.6 โ๏ธ
Please come help the maintenance of this repo ๐
๐ Enhancements
- Make MeilisearchException a RuntimeException (#683) @junghoon-vans
- Add createSnapshot() method (#688) @mesutgk15
- Support user-dictionary loading #660 (#689) @mesutgk15
- Improve GSON JSON handler, moving Key specific logic (#690) @jrhenderson1988
- Add multi search client method (#652) @jd2024
โ๏ธ Maintenance/misc
- Fix invalid reference url in Searchable (#684) @junghoon-vans
Thanks again to @brunoocasali, @curquiza, @jd2024, @jrhenderson1988, @junghoon-vans, and @mesutgk15! ๐
v0.11.5 โ๏ธ
๐ Bug Fixes
- Add re-interrupt to waitForTask method (#670) @junghoon-vans
โ๏ธ Maintenance/misc
- Change reference url in javadoc to see tag (#676) @junghoon-vans
Thanks again to @curquiza, @junghoon-vans, ! ๐