Skip to content

Releases: meilisearch/meilisearch-java

v0.15.0 ☕️

06 Jun 17:28
c80c42b
Compare
Choose a tag to compare

🚀 Enhancements

Misc

Thanks again to @Strift, @brunoocasali! 🎉

v0.14.7 ☕️

02 Jun 12:26
6eb6842
Compare
Choose a tag to compare

Thanks again to @brunoocasali, @larskristianhaga! 🎉

v0.14.6 ☕️

30 May 20:02
b5a0705
Compare
Choose a tag to compare

🚀 Enhancements

Thanks again to @brunoocasali 🎉

v0.14.5

30 May 19:05
Compare
Choose a tag to compare

This is a blank release, made to fix the CI after the deprecation of the oss.sonatype.org.

v0.14.4 ☕️

22 Apr 12:42
c69b8ba
Compare
Choose a tag to compare

🚀 Enhancements

  • Add usedDatabaseSize to stats, document and embeddings database metrics to index stats (#830) @pratts

🐛 Bug Fixes

  • Add check for empty API key before adding Authorization header (#835) @svavassori

Thanks again to @prateek-ec, @pratts, @svavassori and dependabot[bot]! 🎉

v0.14.3 ☕️

25 Mar 14:22
43252b6
Compare
Choose a tag to compare

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @Strift, @ma1581, @samuele-ruffino96, dependabot[bot] and samuele ruffino! 🎉

v0.14.2 ☕️

27 Nov 18:55
348dd0a
Compare
Choose a tag to compare

🚀 Enhancements

Thanks again to @Barabasbalazs! 🎉

v0.14.1 ☕️

03 Oct 12:41
a82293b
Compare
Choose a tag to compare

🚀 Enhancements

🐛 Bug Fixes

Thanks again to @Nsreddy18, @curquiza, @jdvalenzuelah, @wyz8883 and AlexWong! 🎉

v0.14.0 ☕️

20 Aug 13:59
9d8616d
Compare
Choose a tag to compare

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

Thanks again to @jdvalenzuelah, ! 🎉

v0.13.0 ☕️

15 Jul 13:42
a046206
Compare
Choose a tag to compare

⚠️ 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! 🎉