-
Notifications
You must be signed in to change notification settings - Fork 63
Migration guide v7.3.0
Downstream projects should:
-
TBD
-
Upgrade the version in their XIIDM / JIIDM unit test files corresponding to the current version:
-
For ".xiidm" or ".xml" files: replace
xmlns:iidm="http://www.powsybl.org/schema/iidm/1_16"withxmlns:iidm="http://www.powsybl.org/schema/iidm/1_17"; -
For ".json" or ".jiidm" files: replace
"version" : "1.16"with"version" : "1.17".
-
N/A
Classes
The following classes were renamed:
| Old name | New name |
|---|---|
TBD |
TBD |
Methods
The following methods were renamed:
| Old name | New name |
|---|---|
TBD |
TBD |
Constants
The following constants were renamed:
| Old name | New name |
|---|---|
TBD |
TBD |
Reports
The following ReportNode keys were renamed:
| Old name | New name |
|---|---|
TBD |
TBD |
In the messages of the following ReportNode keys, some variables were renamed:
- ReportNode keys:
TBD
| Old name | New name |
|---|---|
TBD |
TBD |
If you are using the following constructors:
LimitViolation(String subjectId, @Nullable String subjectName, String operationalLimitsGroupId, LimitViolationType limitType, @Nullable String limitName, int acceptableDuration, double limit, double limitReduction, double value, @Nullable ThreeSides side, @Nullable ViolationLocation voltageLocation)LimitViolation(String subjectId, LimitViolationType limitType, double limit, double limitReduction, double value, ViolationLocation voltageLocation)
Then no change is required.
Otherwise you can:
- use
LimitViolationBuilder, either withnew LimitViolationBuilder()or withLimitViolation.builder(), add the values and then use.build() - use the constructor of
LimitViolationwith all the variables (mentionned above), and provide null values for all the variables you do not have a value for
Note that if you were using a constructor and were providing null values to it, you do not need to do that with the Builder. Also note that the default limitReduction is 1 and the default acceptableDuration is Integer.MAX_VALUE.
N/A
N/A
N/A
N/A
N/A
N/A
N/A