Releases: typesense/typesense-java
Releases · typesense/typesense-java
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);