Migration notes 4.1

This page explains the changes required to migrate to the stated version of the Atoti Adjustments Services API.

Migrate to 4.1.0

Artifact group ID

The artifact’s group ID has changed. To import this dependency, you now need to use:

<dependency>
    <groupId>com.activeviam.solutions</groupId>
    <artifactId>adjustments-services</artifactId>
    <version>${adjustment-services.version}</version>
</dependency>

Upgrade to Java 21

Java 21 is now required to compile and use the library.

Upgrade to Common Parent POM and Common Dependencies BOM 2.0.1

The library has been upgraded to Common Parent POM and Common Dependencies BOM 2.0.1.

To use the library, please import it as:

<dependency>
    <groupId>com.activeviam.solutions</groupId>
    <artifactId>adjustments-services</artifactId>
    <version>4.1.0</version>
</dependency>

Adjustment filters and input converted to List

The filters and input fields in AdjustmentRequestDTO.java and SupportedAdjustmentDTO.java are now Lists instead of Sets. This change enables the UI to construct dashboards with the order of filters and hierarchies defined by the host server application. This is a breaking change, as any implementation of Atoti Adjustments Services API may need to be updated to use Lists instead of Sets.