Skip to content

Commit 1ca46e4

Browse files
elinohlssonElin Fokine
andauthored
Increase release number (#522)
* Update version prefix. * Update docs. --------- Co-authored-by: Elin Fokine <ElinO@activesolution.se>
1 parent 0d8b624 commit 1ca46e4

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

docs/articles/bankid.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1620,20 +1620,21 @@ We have choosen not to normalize the capitalization of the names as it´s hard o
16201620

16211621
### Cookies issued
16221622

1623-
The `*.AspNetCore` package will issue a cookie to make the auth flow work
1623+
The `*.AspNetCore` package will issue cookies to make the auth, sign and payment flow work
16241624

16251625
- Cookie: `__ActiveLogin.BankIdUiState`
1626-
- This cookie is there to store state during the auth process, as the user will/might be redirected during the flow. The cookie is session based only and will be deleted once the auth process is finished and/or when the user closes the browser.
1627-
1628-
- Because it is strictly related to temp storage during auth, you should not have to inform the user about these specific cookies (according to the [EU "cookie law"](https://www.cookielaw.org/the-cookie-law/)).
1629-
1630-
- With the current implementation (following the convention from Microsoft ASP.NET) the usage of cookies is not optional.
1631-
1626+
- This cookie is there to store state during the auth process, as the user will/might be redirected during the flow. The cookie is session based only and will be deleted once the auth, sign or payment process is finished and/or when the user closes the browser.
16321627
- A more technical deep dive of this cookie can be found in [this issue](https://github.com/ActiveLogin/ActiveLogin.Authentication/issues/156).
1628+
1629+
- Cookie: `__ActiveLogin.BankIdUiOptions`
1630+
- This cookie temporarily stores information about your configured requirements for Auth, Sign, and Payment requests. The data is retained only for the duration of an ongoing BankID transaction (i.e., Auth, Sign, or Payment). The cookie is session-based and is automatically deleted once the transaction is completed or when the user closes the browser.
16331631

16341632
- Cookie: `__ActiveLogin.BankIdDeviceData`
16351633
- This cookie is used to store the device data for the user, in the default implementation, it is used to ensure that the device data is persistent across requests.
16361634

1635+
___Note:___
1636+
1637+
Because `__ActiveLogin.BankIdUiState` and `__ActiveLogin.BankIdUiOptions` are strictly related to temp storage during auth, sign and payment, you should not have to inform the user about these specific cookies (according to the [EU "cookie law"](https://www.cookielaw.org/the-cookie-law/)). With the current implementation (following the convention from Microsoft ASP.NET) the usage of cookies is not optional.
16371638
16381639
___Note:___
16391640

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<PackageId>$(AssemblyName)</PackageId>
1616

17-
<VersionPrefix>11.1.0</VersionPrefix>
17+
<VersionPrefix>11.1.1</VersionPrefix>
1818
<!--<VersionSuffix>rc-1</VersionSuffix>-->
1919
<AssemblyVersion>10.0.0.0</AssemblyVersion>
2020
<FileVersion Condition="'$(BUILD_BUILDNUMBER)' == ''">$(VersionPrefix).0</FileVersion>

0 commit comments

Comments
 (0)