bpkList = szrClient.getBpk(matchedPersonData, targetId, vkz);
if (!bpkList.isEmpty()) {
bpk = bpkList.get(0);
}
diff --git a/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/SzrClientProductionTest.java b/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/SzrClientProductionTest.java
index d2bfe662..ecffaa19 100644
--- a/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/SzrClientProductionTest.java
+++ b/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/SzrClientProductionTest.java
@@ -45,7 +45,6 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants;
import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.szr.SzrClient;
import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.MatchedPersonResult;
-import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData;
import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasSAuthenticationException;
import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.SzrCommunicationException;
import at.gv.egiz.eaaf.core.api.data.EaafConstants;
@@ -127,13 +126,13 @@ public class SzrClientProductionTest {
}
- private SimpleEidasData getEidData() {
- return SimpleEidasData.builder()
+ private MatchedPersonResult getEidData() {
+ return MatchedPersonResult.builder()
.familyName("Mustermann")
.givenName("Franz")
.dateOfBirth("1989-05-04")
- .citizenCountryCode("IS")
- .pseudonym("1234ffgsdfg56789ABCDEF")
+ .bpk("1234ffgsdfg56789ABCDEF")
+ .countryCode("XX")
.build();
}
diff --git a/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/SzrClientTest.java b/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/SzrClientTest.java
index e61532a3..a35f9bad 100644
--- a/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/SzrClientTest.java
+++ b/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/SzrClientTest.java
@@ -58,7 +58,7 @@ import com.github.skjolber.mockito.soap.SoapServiceRule;
import at.asitplus.eidas.specific.core.test.config.dummy.MsConnectorDummyConfigMap;
import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants;
import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.szr.SzrClient;
-import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData;
+import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.MatchedPersonResult;
import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasSAuthenticationException;
import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.SzrCommunicationException;
import at.gv.egiz.eaaf.core.api.data.EaafConstants;
@@ -270,15 +270,15 @@ public class SzrClientTest {
}
- private SimpleEidasData getEidData() {
- return SimpleEidasData.builder()
+ private MatchedPersonResult getEidData() {
+ return MatchedPersonResult.builder()
.familyName("Mustermann")
.givenName("Franz")
.dateOfBirth("1989-05-05")
- .citizenCountryCode("IS")
- .pseudonym("1234sdgsdfg56789ABCDEF")
+ .bpk("1234sdgsdfg56789ABCDEF")
+ .countryCode("IS")
.build();
}
-
+
}
--
cgit v1.2.3
From b32ad3b192e00b39b6a7dd61f46391fc6eb3fdc1 Mon Sep 17 00:00:00 2001
From: Thomas <>
Date: Mon, 1 Aug 2022 13:40:11 +0200
Subject: fix(eidas): unset flag on execution-context that probibits
create-new-ERnP-entry operation
---
.../auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java | 1 +
.../v2/test/tasks/ReceiveOtherLoginMethodGuiResponseTaskTest.java | 6 ++++--
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java b/modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java
index 03414f9e..ec858116 100644
--- a/modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java
+++ b/modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java
@@ -143,6 +143,7 @@ public class ReceiveOtherLoginMethodGuiResponseTask extends AbstractLocaleAuthSe
case ADD_ME_AS_NEW:
executionContext.put(Constants.TRANSITION_TO_CREATE_NEW_ERNP_ENTRY_TASK, true);
+ executionContext.put(Constants.TRANSITION_TO_REQUESTING_NEW_ERNP_ENTRY_TASK, false);
return;
default:
diff --git a/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/ReceiveOtherLoginMethodGuiResponseTaskTest.java b/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/ReceiveOtherLoginMethodGuiResponseTaskTest.java
index 66867fce..7b3a8657 100644
--- a/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/ReceiveOtherLoginMethodGuiResponseTaskTest.java
+++ b/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/ReceiveOtherLoginMethodGuiResponseTaskTest.java
@@ -127,10 +127,12 @@ httpReq.setParameter(Constants.REQ_SELECTED_LOGIN_METHOD_PARAMETER, SelectedLog
@Test
public void withAddMeAsNewSelection() throws TaskExecutionException {
testTransition(SelectedLoginMethod.ADD_ME_AS_NEW, Constants.TRANSITION_TO_CREATE_NEW_ERNP_ENTRY_TASK);
- assertEquals("return to selection", false, executionContext.get(Constants.TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK));
+ assertEquals("return to selection", false, executionContext.get(Constants.TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK));
+ assertEquals("return to selection", false, executionContext.get(Constants.TRANSITION_TO_REQUESTING_NEW_ERNP_ENTRY_TASK));
+
}
-
+
@Test
public void withRequestingNewEntrySelection() throws TaskExecutionException {
testTransition(SelectedLoginMethod.REQUESTING_NEW_ENTRY, Constants.TRANSITION_TO_REQUESTING_NEW_ERNP_ENTRY_TASK);
--
cgit v1.2.3
From f11086ce44f71ed259a6b592edf46c07bab45e60 Mon Sep 17 00:00:00 2001
From: Thomas <>
Date: Mon, 1 Aug 2022 13:41:20 +0200
Subject: fix(matching): fix wrong parameter in other_matching_method GUI form
---
basicConfig/templates/other_login_method.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/basicConfig/templates/other_login_method.html b/basicConfig/templates/other_login_method.html
index d392a553..30bae604 100644
--- a/basicConfig/templates/other_login_method.html
+++ b/basicConfig/templates/other_login_method.html
@@ -66,7 +66,7 @@
--
cgit v1.2.3
From 2c9839d5efd4fde7b998e726632c361f720d3e5f Mon Sep 17 00:00:00 2001
From: Thomas <>
Date: Mon, 1 Aug 2022 14:40:46 +0200
Subject: doc: add documentation of eIDAS person-matching functionality
---
.../Dokumentation eIDAS-Personen-Matching v1.0.pdf | Bin 0 -> 564713 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 infos/handbook/Dokumentation eIDAS-Personen-Matching v1.0.pdf
diff --git a/infos/handbook/Dokumentation eIDAS-Personen-Matching v1.0.pdf b/infos/handbook/Dokumentation eIDAS-Personen-Matching v1.0.pdf
new file mode 100644
index 00000000..67f24b2a
Binary files /dev/null and b/infos/handbook/Dokumentation eIDAS-Personen-Matching v1.0.pdf differ
--
cgit v1.2.3
From 8d9a0115e8c6fe7ea1067d070fa13b2cde48dcfe Mon Sep 17 00:00:00 2001
From: Thomas <>
Date: Mon, 1 Aug 2022 14:41:18 +0200
Subject: doc: add readme and update history
---
infos/history.txt | 5 +++++
infos/readme_1.3.2.md | 27 +++++++++++++++++++++++++++
2 files changed, 32 insertions(+)
create mode 100644 infos/readme_1.3.2.md
diff --git a/infos/history.txt b/infos/history.txt
index 5dbe4d56..a02dc724 100644
--- a/infos/history.txt
+++ b/infos/history.txt
@@ -1,5 +1,10 @@
Dieses Dokument zeigt die Veränderungen und Erweiterungen am eIDAS MS-Connector
+Version 1.3.2 (2022-08-03):
+- Bugfix
+ - Fehlerhafter Prozessstatus bei GUI basierten Matching behoben, welche die Neueintragung ins ERnP verhindert
+ - Fehlender Parameter bei GUI basierten Matching behoben, welcher zu falschen Statistiklogger Einträgen führt
+
Version 1.3.1 (2022-07-05):
- Optimierung und Fehlerkorrektur für UX basierten Matching-Schritten
- Konfigurierbare Maximalanzahl von Ergebnissen bei Adresssuche
diff --git a/infos/readme_1.3.2.md b/infos/readme_1.3.2.md
new file mode 100644
index 00000000..eb503f54
--- /dev/null
+++ b/infos/readme_1.3.2.md
@@ -0,0 +1,27 @@
+# MS-Connector v1.3.2 Release vom 03.08.2022
+
+Der MS-Connector implementiert eine Bridge zwischen dem österreichischen E-ID System und dem eIDAS Framework um ausländischen Benutzern eine Anmeldung am österreichischen Service-Providern zu ermöglichen.
+
+### Änderungen in dieser Version
+
+ - Bugfix
+ - Fehlerhafter Prozessstatus bei GUI basierten Matching behoben, welche die Neueintragung ins ERnP verhindert
+ - Fehlender Parameter bei GUI basierten Matching behoben, welcher zu falschen Statistiklogger Einträgen führt
+
+
+### Durchführen eines Updates
+
+Nachfolgend finden Sie die erforderlichen Schritte für das Update eines bestehenden MS-specific eIDAS Connectors auf die aktuelle Version 1.3.2. Das vollständige Handbuch mit allen Konfigurationsparametern finden Sie im Releasepackage im Verzeichnis: _infos/handbook/_
+
+### Ausgehend von einer bestehenden Version 1.3.1
+
+1. Stoppen Sie die *MS-Connector* Applikation und fertigen Sie eine Sicherungskopie Ihrer Applikation inklusive Konfiguration an
+
+2. Entpacken Sie das Releasepacket *ms_specific_connector-1.3.2-dist.zip* in ein temporäres Verzeichnis welches in weiterer Folge __MsConnectorPackage__ bezeichnet wird.
+
+3. Kopieren sie die Applikation __MsConnectorPackage__/ms_connector.war nach in das Applikationsverzeichnis ihres Applikationsservers
+
+4. Update bestehender Dateien . Die nachfolgenden Dateien wurden geändert und erfordern eine Anpassung oder eine Übernahme dem Releasepacket, sofern die Anpassung nicht bereits durchgeführt wurde
+
+ * Vollständige Übernahme: __MsConnectorPackage__/config/templates/other_login_method.html
+
--
cgit v1.2.3
From 7cafb476eb9d235a285f9ac82937854abee06608 Mon Sep 17 00:00:00 2001
From: Thomas <>
Date: Tue, 2 Aug 2022 08:00:18 +0200
Subject: test(matching): optimize validation of execution-context parameters
---
...ReceiveOtherLoginMethodGuiResponseTaskTest.java | 27 ++++++++++++++++++----
1 file changed, 22 insertions(+), 5 deletions(-)
diff --git a/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/ReceiveOtherLoginMethodGuiResponseTaskTest.java b/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/ReceiveOtherLoginMethodGuiResponseTaskTest.java
index 7b3a8657..dfbb0266 100644
--- a/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/ReceiveOtherLoginMethodGuiResponseTaskTest.java
+++ b/modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/ReceiveOtherLoginMethodGuiResponseTaskTest.java
@@ -126,18 +126,35 @@ httpReq.setParameter(Constants.REQ_SELECTED_LOGIN_METHOD_PARAMETER, SelectedLog
@Test
public void withAddMeAsNewSelection() throws TaskExecutionException {
- testTransition(SelectedLoginMethod.ADD_ME_AS_NEW, Constants.TRANSITION_TO_CREATE_NEW_ERNP_ENTRY_TASK);
+ testTransition(SelectedLoginMethod.ADD_ME_AS_NEW, Constants.TRANSITION_TO_CREATE_NEW_ERNP_ENTRY_TASK);
+
+ assertEquals("return to selection", false,
+ executionContext.get(Constants.TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK));
+ assertEquals("return to selection", false,
+ executionContext.get(Constants.TRANSITION_TO_REQUESTING_NEW_ERNP_ENTRY_TASK));
+ assertNull("return to selection",
+ executionContext.get(Constants.TRANSITION_TO_GENERATE_EIDAS_LOGIN));
+ assertNull("return to selection",
+ executionContext.get(Constants.TRANSITION_TO_GENERATE_GUI_QUERY_AUSTRIAN_RESIDENCE_TASK));
+ assertNull("return to selection",
+ executionContext.get(Constants.TRANSITION_TO_GENERATE_MOBILE_PHONE_SIGNATURE_REQUEST_TASK));
- assertEquals("return to selection", false, executionContext.get(Constants.TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK));
- assertEquals("return to selection", false, executionContext.get(Constants.TRANSITION_TO_REQUESTING_NEW_ERNP_ENTRY_TASK));
-
}
@Test
public void withRequestingNewEntrySelection() throws TaskExecutionException {
testTransition(SelectedLoginMethod.REQUESTING_NEW_ENTRY, Constants.TRANSITION_TO_REQUESTING_NEW_ERNP_ENTRY_TASK);
+
assertEquals("return to selection", true, executionContext.get(Constants.TRANSITION_TO_REQUESTING_NEW_ERNP_ENTRY_TASK));
- assertEquals("return to selection", false, executionContext.get(Constants.TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK));
+ assertEquals("return to selection", false, executionContext.get(Constants.TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK));
+ assertNull("return to selection",
+ executionContext.get(Constants.TRANSITION_TO_CREATE_NEW_ERNP_ENTRY_TASK));
+ assertNull("return to selection",
+ executionContext.get(Constants.TRANSITION_TO_GENERATE_EIDAS_LOGIN));
+ assertNull("return to selection",
+ executionContext.get(Constants.TRANSITION_TO_GENERATE_GUI_QUERY_AUSTRIAN_RESIDENCE_TASK));
+ assertNull("return to selection",
+ executionContext.get(Constants.TRANSITION_TO_GENERATE_MOBILE_PHONE_SIGNATURE_REQUEST_TASK));
}
--
cgit v1.2.3
From 1d6d103727811c970a7e01f762795d9374311ac3 Mon Sep 17 00:00:00 2001
From: Thomas <>
Date: Tue, 2 Aug 2022 09:34:24 +0200
Subject: build: switch to next release version
---
build_reporting/pom.xml | 2 +-
connector/pom.xml | 2 +-
modules/authmodule-eIDAS-v2/pom.xml | 2 +-
modules/core_common_lib/pom.xml | 2 +-
modules/core_common_webapp/pom.xml | 2 +-
modules/pom.xml | 2 +-
pom.xml | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/build_reporting/pom.xml b/build_reporting/pom.xml
index 76de79a3..250170ce 100644
--- a/build_reporting/pom.xml
+++ b/build_reporting/pom.xml
@@ -6,7 +6,7 @@
at.asitplus.eidas
ms_specific
- 1.3.2-SNAPSHOT
+ 1.3.2
build_reporting
pom
diff --git a/connector/pom.xml b/connector/pom.xml
index 514ad766..342daf9f 100644
--- a/connector/pom.xml
+++ b/connector/pom.xml
@@ -6,7 +6,7 @@
at.asitplus.eidas
ms_specific
- 1.3.2-SNAPSHOT
+ 1.3.2
at.asitplus.eidas.ms_specific
diff --git a/modules/authmodule-eIDAS-v2/pom.xml b/modules/authmodule-eIDAS-v2/pom.xml
index 24491951..468a17ae 100644
--- a/modules/authmodule-eIDAS-v2/pom.xml
+++ b/modules/authmodule-eIDAS-v2/pom.xml
@@ -6,7 +6,7 @@
at.asitplus.eidas.ms_specific
modules
- 1.3.2-SNAPSHOT
+ 1.3.2
at.asitplus.eidas.ms_specific.modules
authmodule-eIDAS-v2
diff --git a/modules/core_common_lib/pom.xml b/modules/core_common_lib/pom.xml
index f3378b17..f5337057 100644
--- a/modules/core_common_lib/pom.xml
+++ b/modules/core_common_lib/pom.xml
@@ -7,7 +7,7 @@
at.asitplus.eidas.ms_specific
modules
- 1.3.2-SNAPSHOT
+ 1.3.2
core_common_lib
ms_specific_common_lib
diff --git a/modules/core_common_webapp/pom.xml b/modules/core_common_webapp/pom.xml
index 058f1bbe..5fe83e16 100644
--- a/modules/core_common_webapp/pom.xml
+++ b/modules/core_common_webapp/pom.xml
@@ -3,7 +3,7 @@
at.asitplus.eidas.ms_specific
modules
- 1.3.2-SNAPSHOT
+ 1.3.2
core_common_webapp
WebApplication commons
diff --git a/modules/pom.xml b/modules/pom.xml
index f706a492..528eb47e 100644
--- a/modules/pom.xml
+++ b/modules/pom.xml
@@ -4,7 +4,7 @@
at.asitplus.eidas
ms_specific
- 1.3.2-SNAPSHOT
+ 1.3.2
at.asitplus.eidas.ms_specific
modules
diff --git a/pom.xml b/pom.xml
index d31a322a..65767d69 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
4.0.0
at.asitplus.eidas
ms_specific
- 1.3.2-SNAPSHOT
+ 1.3.2
pom
MS specific eIDAS components
--
cgit v1.2.3
From a68b565349664285933be2a3a498ebb640c29c1e Mon Sep 17 00:00:00 2001
From: Thomas <>
Date: Tue, 2 Aug 2022 13:51:04 +0200
Subject: build: switch to next snapshot version
---
build_reporting/pom.xml | 2 +-
connector/pom.xml | 2 +-
modules/authmodule-eIDAS-v2/pom.xml | 2 +-
modules/core_common_lib/pom.xml | 2 +-
modules/core_common_webapp/pom.xml | 2 +-
modules/pom.xml | 2 +-
pom.xml | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/build_reporting/pom.xml b/build_reporting/pom.xml
index 250170ce..7c5cdffd 100644
--- a/build_reporting/pom.xml
+++ b/build_reporting/pom.xml
@@ -6,7 +6,7 @@
at.asitplus.eidas
ms_specific
- 1.3.2
+ 1.3.3-SNAPSHOT
build_reporting
pom
diff --git a/connector/pom.xml b/connector/pom.xml
index 342daf9f..01a8f225 100644
--- a/connector/pom.xml
+++ b/connector/pom.xml
@@ -6,7 +6,7 @@
at.asitplus.eidas
ms_specific
- 1.3.2
+ 1.3.3-SNAPSHOT
at.asitplus.eidas.ms_specific
diff --git a/modules/authmodule-eIDAS-v2/pom.xml b/modules/authmodule-eIDAS-v2/pom.xml
index 468a17ae..4fe775cc 100644
--- a/modules/authmodule-eIDAS-v2/pom.xml
+++ b/modules/authmodule-eIDAS-v2/pom.xml
@@ -6,7 +6,7 @@
at.asitplus.eidas.ms_specific
modules
- 1.3.2
+ 1.3.3-SNAPSHOT
at.asitplus.eidas.ms_specific.modules
authmodule-eIDAS-v2
diff --git a/modules/core_common_lib/pom.xml b/modules/core_common_lib/pom.xml
index f5337057..1a33b352 100644
--- a/modules/core_common_lib/pom.xml
+++ b/modules/core_common_lib/pom.xml
@@ -7,7 +7,7 @@
at.asitplus.eidas.ms_specific
modules
- 1.3.2
+ 1.3.3-SNAPSHOT
core_common_lib
ms_specific_common_lib
diff --git a/modules/core_common_webapp/pom.xml b/modules/core_common_webapp/pom.xml
index 5fe83e16..7184f843 100644
--- a/modules/core_common_webapp/pom.xml
+++ b/modules/core_common_webapp/pom.xml
@@ -3,7 +3,7 @@
at.asitplus.eidas.ms_specific
modules
- 1.3.2
+ 1.3.3-SNAPSHOT
core_common_webapp
WebApplication commons
diff --git a/modules/pom.xml b/modules/pom.xml
index 528eb47e..0c82392a 100644
--- a/modules/pom.xml
+++ b/modules/pom.xml
@@ -4,7 +4,7 @@
at.asitplus.eidas
ms_specific
- 1.3.2
+ 1.3.3-SNAPSHOT
at.asitplus.eidas.ms_specific
modules
diff --git a/pom.xml b/pom.xml
index 65767d69..41a5ae4a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
4.0.0
at.asitplus.eidas
ms_specific
- 1.3.2
+ 1.3.3-SNAPSHOT
pom
MS specific eIDAS components
--
cgit v1.2.3
From 48f19dc45cec670fe62399d09fb34732fb4eeedc Mon Sep 17 00:00:00 2001
From: Thomas <>
Date: Tue, 2 Aug 2022 13:51:42 +0200
Subject: doc: update release date of version 1.3.2
---
README.md | 6 ++++++
infos/history.txt | 2 +-
infos/readme_1.3.2.md | 3 ++-
3 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 5eabd899..4307efaa 100644
--- a/README.md
+++ b/README.md
@@ -92,6 +92,12 @@ The full release package will be located add
## Changelog
+**v1.3.2**
+
+- Bugfix
+ - Fehlerhafter Prozessstatus bei GUI basierten Matching behoben, welche die Neueintragung ins ERnP verhindert
+ - Fehlender Parameter bei GUI basierten Matching behoben, welcher zu falschen Statistiklogger Einträgen führt
+
**v1.3.1**
- Optimierung und Fehlerkorrektur bei UX basierten Matching-Schritten
diff --git a/infos/history.txt b/infos/history.txt
index a02dc724..909aeabb 100644
--- a/infos/history.txt
+++ b/infos/history.txt
@@ -1,6 +1,6 @@
Dieses Dokument zeigt die Veränderungen und Erweiterungen am eIDAS MS-Connector
-Version 1.3.2 (2022-08-03):
+Version 1.3.2 (2022-08-02):
- Bugfix
- Fehlerhafter Prozessstatus bei GUI basierten Matching behoben, welche die Neueintragung ins ERnP verhindert
- Fehlender Parameter bei GUI basierten Matching behoben, welcher zu falschen Statistiklogger Einträgen führt
diff --git a/infos/readme_1.3.2.md b/infos/readme_1.3.2.md
index eb503f54..b290f4fe 100644
--- a/infos/readme_1.3.2.md
+++ b/infos/readme_1.3.2.md
@@ -1,4 +1,4 @@
-# MS-Connector v1.3.2 Release vom 03.08.2022
+# MS-Connector v1.3.2 Release vom 02.08.2022
Der MS-Connector implementiert eine Bridge zwischen dem österreichischen E-ID System und dem eIDAS Framework um ausländischen Benutzern eine Anmeldung am österreichischen Service-Providern zu ermöglichen.
@@ -25,3 +25,4 @@ Nachfolgend finden Sie die erforderlichen Schritte für das Update eines bestehe
* Vollständige Übernahme: __MsConnectorPackage__/config/templates/other_login_method.html
+
--
cgit v1.2.3