Upgrade Notes
Please follow the instructions: Installation Process and Solution CLI Setup to install the platform and the Command Line Interface.
The upgrade steps for version 1.1.0 are described below.
Upgrade custom Java solutions
Custom java solutions need a newer dependency in their pom.xml. It must be set to 1.0.90137. Besides that the pre-generated example for KafkaConfiguration.java needs to import:
import org.springframework.kafka.listener.ContainerProperties;
import
org.springframework.kafka.listener.ContainerProperties.AckMode;
instead of
import
org.springframework.kafka.listener.AbstractMessageListenerContainer.AckMode;
import
org.springframework.kafka.listener.config.ContainerProperties;
Also the line
containerProperties.setErrorHandler(listener);
must be deleted.