Skip to content

Commit

Permalink
Merge pull request #94 from finarkein/release/v0.7.6
Browse files Browse the repository at this point in the history
Release/v0.7.6
  • Loading branch information
primarypi authored Feb 10, 2023
2 parents f0bd806 + 10360b8 commit f8abe93
Show file tree
Hide file tree
Showing 22 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion fiul-aa-webclient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fiul-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fiul-rest/fiul-rest-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul-rest</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fiul-rest/fiul-rest-consent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul-rest</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fiul-rest/fiul-rest-dataflow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul-rest</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fiul-rest/fiul-rest-notification/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul-rest</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fiul-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.finarkein.fiu</groupId>
<artifactId>fiul</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion fiul-service-consent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ private static FIDataRange consentRelativeFiDataRangeGeneration(ConsentTemplateD
start[0] = start[0] + "S";
expiry[0] = expiry[0] + "S";
String from;
DateTimeFormatter formatter =
DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
if (monthInclusive) {
DateTimeFormatter formatter =
DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS");
from = localDate.plus(Integer.parseInt(start[1]),
ChronoUnit.valueOf(start[0]))
.withDayOfMonth(1)
Expand All @@ -105,8 +105,8 @@ private static FIDataRange consentRelativeFiDataRangeGeneration(ConsentTemplateD
.withNano(0)
.format(formatter);
} else
from = localDate.plus(Integer.parseInt(start[1]), ChronoUnit.valueOf(start[0])).toString();
var to = localDate.plus(Integer.parseInt(expiry[1]), ChronoUnit.valueOf(expiry[0])).toString();
from = localDate.plus(Integer.parseInt(start[1]), ChronoUnit.valueOf(start[0])).atZone(ZoneOffset.UTC).format(formatter);
var to = localDate.plus(Integer.parseInt(expiry[1]), ChronoUnit.valueOf(expiry[0])).atZone(ZoneOffset.UTC).format(formatter);
ArgsValidator.validateDateRange(uuidSupplier.get(), from, to);
return new FIDataRange(from, to);
}
Expand Down
2 changes: 1 addition & 1 deletion fiul-service-dataflow/fiul-dataflow-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.finarkein.fiu</groupId>
<artifactId>fiul-service-dataflow</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fiul-service-dataflow/fiul-dataflow-default-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.finarkein.fiu</groupId>
<artifactId>fiul-service-dataflow</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.finarkein.fiu</groupId>
<artifactId>fiul-service-dataflow</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.finarkein.fiu</groupId>
<artifactId>fiul-service-dataflow</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fiul-service-dataflow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.finarkein.fiu</groupId>
<artifactId>fiul-service-notification</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.finarkein.fiu</groupId>
<artifactId>fiul-service-notification</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.finarkein.fiu</groupId>
<artifactId>fiul-service-notification</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fiul-service-notification/fiul-notification-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.finarkein.fiu</groupId>
<artifactId>fiul-service-notification</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul-service-notification</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul-service-notification</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fiul-service-notification/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>fiul</artifactId>
<groupId>io.finarkein.fiu</groupId>
<version>0.7.5</version>
<version>0.7.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>io.finarkein.fiu</groupId>
<artifactId>fiul</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
<packaging>pom</packaging>

<name>fiul</name>
Expand Down

0 comments on commit f8abe93

Please sign in to comment.