edge-core-js 2.27.0 → 2.27.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/core/account/account-api.js +55 -12
- package/lib/core/account/account-reducer.js +4 -1
- package/lib/core/actions.js +0 -7
- package/lib/core/context/client-file.js +2 -2
- package/lib/core/context/context-api.js +146 -54
- package/lib/core/login/login-reducer.js +1 -9
- package/lib/core/login/login.js +43 -0
- package/lib/core/login/otp.js +31 -1
- package/lib/core/login/password.js +33 -13
- package/lib/core/login/pin2.js +66 -12
- package/lib/core/root-reducer.js +6 -3
- package/lib/core/root.js +2 -4
- package/lib/flow/error.js +14 -0
- package/lib/node/index.js +387 -151
- package/lib/node/index.mjs +2 -0
- package/lib/types/error.js +14 -0
- package/package.json +1 -1
- package/src/types/error.ts +14 -0
- package/types.js +84 -61
- package/types.mjs +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.27.2 (2025-05-08)
|
|
6
|
+
|
|
7
|
+
- changed: Show all local users even when in duress mode.
|
|
8
|
+
- changed: Stay in duress mode when using `loginWithPassword`.
|
|
9
|
+
- fixed: Broken `changePin({ enableLogin: false })` when in duress mode.
|
|
10
|
+
- fixed: Made `checkPassword` work when in duress mode.
|
|
11
|
+
- fixed: Made `changePassword` a no-op for duress accounts
|
|
12
|
+
- fixed: Made `enableOtp`/`disableOtp` a no-op for duress accounts.
|
|
13
|
+
- fixed: Spoof `changeRecovery` for duress account.
|
|
14
|
+
- fixed: Support duress mode when logging in with `loginWithKey` (biometric login).
|
|
15
|
+
- fixed: Unintentional pin timeouts caused by duress mode pin-logins.
|
|
16
|
+
- fixed: Deleting account while in duress account will forget account rather than throw error.
|
|
17
|
+
|
|
18
|
+
## 2.27.1 (2025-04-30)
|
|
19
|
+
|
|
20
|
+
- fixed: Incorrect protocol for default change server URL.
|
|
21
|
+
|
|
5
22
|
## 2.27.0 (2025-04-28)
|
|
6
23
|
|
|
7
24
|
- added: Added new Duress Mode feature.
|