Releases: merative/acd-java-sdk
Releases · merative/acd-java-sdk
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
2.0.0 (2023-03-24)
Features
- Rebrand ACD SDK (0b9a7c4)
BREAKING CHANGES
- Packaging name change to Merative. All
com.ibm.watson.health.acd.v1
has been changed tocom.merative.acd.v1
. Refer to README for instructions to migrate from version 1.x.x. - Support for the deprecated synchronous cartridge deployment has been removed. This includes classes:
DeployCartridgeOptions
,DeployCartridgeOptionsTest
andTestDeployCartridge
. This includes methods:deployCartridge(DeployCartridgeOptions)
anddeployCartridge()
. To deploy a cartridge, use the asynchronous cartridge deploymentcartridgesPostMultipart
method instead. - Support for the deprecated run_pipeline and run_pipeline_with_flow has been removed. This includes classes:
RunPipelineOptions
,RunPipelineWithFlowOptions
,RunPipelineOptionsTest
andRunPipelineWithFlowOptionsTest
. This includes methods:runPipeline()
,runPipeline(RunPipelineOptions)
andrunPipelineWithFlow(RunPipelineWithFlowOptions)
. To analyze your unstructured text, useanalyze
oranalyzeWithFlow
method instead. - Deprecated classes
AnalyticFlowBeanInput
andAnalyticFlowBeanInputTest
have been removed. - The method
getAnnotatorsById(GetAnnotatorsByIdOptions)
has been changed to now returnServiceCall<ServiceApiBean>
. This aligns more closely to thegetAnnotators
method.