From 00935d61a07be1261e120bf471ec512dc34fac10 Mon Sep 17 00:00:00 2001 From: Florent MILLOT <75525996+flomillot@users.noreply.github.com> Date: Tue, 30 Dec 2025 15:39:41 +0100 Subject: [PATCH 1/2] chore: update gridsuite-filter to 1.18.0 and computation to 1.10.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ab049b3..7ee6fc3 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ 2.29.0 - 1.16.0 + 1.18.0 2.2 3.3.0 gridsuite From 6dfa4fa8349e6800a760d44402d0277fee6751b6 Mon Sep 17 00:00:00 2001 From: Florent MILLOT <75525996+flomillot@users.noreply.github.com> Date: Fri, 9 Jan 2026 12:37:02 +0100 Subject: [PATCH 2/2] test: update GlobalFilter test to use voltage ranges instead of nominal voltages Signed-off-by: Florent MILLOT <75525996+flomillot@users.noreply.github.com> --- .../java/org/gridsuite/computation/utils/FilterUtilsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/gridsuite/computation/utils/FilterUtilsTest.java b/src/test/java/org/gridsuite/computation/utils/FilterUtilsTest.java index 12a0e70..40f5bd2 100644 --- a/src/test/java/org/gridsuite/computation/utils/FilterUtilsTest.java +++ b/src/test/java/org/gridsuite/computation/utils/FilterUtilsTest.java @@ -58,7 +58,7 @@ void testFromStringGlobalFiltersToDTO() throws Exception { UUID uuid1 = UUID.randomUUID(); UUID uuid2 = UUID.randomUUID(); globalFilter = new GlobalFilter(); - globalFilter.setNominalV(List.of("380", "225")); + globalFilter.setVoltageRanges(List.of(List.of(300, 500), List.of(200, 300))); globalFilter.setCountryCode(List.of(Country.FR, Country.BE)); globalFilter.setGenericFilter(List.of(uuid1, uuid2)); globalFilter.setSubstationProperty(Map.of());