Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@kishorenc kishorenc released this 11 Oct 08:38
· 4 commits to master since this release

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);