Releases: typesense/typesense-java
Releases · typesense/typesense-java
v2.1.0
v2.0.0
Typesense Java client v2.0.0 is compatible with Typesense versions >= 30.0.rca31. Check the changelog for v30 here: https://typesense.org/docs/30.0/api/#what-s-new
Changelog
v1.3.0
v1.2.0
v1.1.0
v1.0.0
Changelog
- URL encode user-inputted Ids, migrate to Github actions (#63)
- Handle all of java.net exceptions (#66)
- Update license in build file to use Apache 2 correctly
- Pull changes to API spec
Breaking changes
The enum type of the action parameter for document insert or import has changed:
import org.typesense.model.ImportDocumentsParameters;
import org.typesense.model.IndexAction;
ImportDocumentsParameters queryParameters = new ImportDocumentsParameters();
queryParameters.action(IndexAction.CREATE);