You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: BREAKINGCHANGES.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ ___Note:___ We might, and will probably, miss to document some of this - if so -
7
7
8
8
## TOC
9
9
10
+
*[Version 11.0.0](#version-1100)
10
11
*[Version 10.0.0](#version-1000)
11
12
*[Version 9.0.0](#version-900)
12
13
*[Version 8.0.0](#version-800)
@@ -18,6 +19,37 @@ ___Note:___ We might, and will probably, miss to document some of this - if so -
18
19
19
20
---
20
21
22
+
23
+
## Version 11.0.0
24
+
25
+
Breaking changes between version 11.0.0 and 10.0.0
26
+
27
+
### Upgrade to .NET 9
28
+
We now require .NET 9 - so this requires you to upgrade your website that uses Active Login.
29
+
30
+
### Remove allowed risk Level
31
+
Removed support for blocking auth and sign transactions based on risk level, since no longer supported by BankID. Use return risk instead and handle risk level in your application.
32
+
```csharp
33
+
services.Configure<BankIdAuthOptions>(options=>
34
+
{
35
+
options.BankIdReturnRisk=true;
36
+
});
37
+
```
38
+
BankID provides futher information more about [Risk Indication](https://www.bankid.com/en/foretag/the-service/risk-indication).
39
+
40
+
### Change default client certificate in test environment
41
+
We now use FPTestcert5_20240610.p12 as the default client certificate for the test environment instead of FPTestcert5_20240610-legacy.pfx. Use the code below to switch to an alternative certificate format.
@@ -27,6 +59,7 @@ Breaking changes between version 10.0.0 and 9.0.0
27
59
* Enum for setting policy instead of string
28
60
* Replace embedded BankID certificate for the test environment FPTestcert4_20220818.p12, with the three new versions of the client certificate FPTestcert5_20240610.p12, FPTestcert5_20240610.pem and FPTestcert5_20240610-legacy.pfx. Make it configurable which version to use. For compatibility reasons use FPTestcert5_20240610-legacy.pfx by default.
0 commit comments