edge-core-js 2.38.4 → 2.40.0
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 +10 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/core/actions.js +3 -0
- package/lib/core/context/context-pixie.js +17 -1
- package/lib/core/currency/currency-pixie.js +279 -230
- package/lib/core/currency/wallet/currency-wallet-api.js +19 -5
- package/lib/core/currency/wallet/currency-wallet-callbacks.js +11 -36
- package/lib/core/currency/wallet/currency-wallet-pixie.js +2 -1
- package/lib/core/currency/wallet/currency-wallet-reducer.js +1 -0
- package/lib/core/login/login-delete.js +1 -1
- package/lib/core/login/login-reducer.js +19 -2
- package/lib/core/login/login.js +2 -2
- package/lib/core/login/vouchers.js +1 -1
- package/lib/core/root-reducer.js +0 -5
- package/lib/core/root.js +6 -0
- package/lib/flow/exports.js +3 -0
- package/lib/flow/types.js +9 -0
- package/lib/node/index.js +320 -255
- package/lib/react-native.js +8 -2
- package/lib/types/exports.js +3 -0
- package/lib/types/types.js +9 -0
- package/package.json +1 -1
- package/src/types/exports.ts +3 -0
- package/src/types/types.ts +9 -0
- package/lib/flow/webby.js +0 -35
- package/src/types/webby.js +0 -33
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.40.0 (2026-01-26)
|
|
6
|
+
|
|
7
|
+
- added: Added change-server subscription timeout fallback.
|
|
8
|
+
|
|
9
|
+
## 2.39.0 (2026-01-16)
|
|
10
|
+
|
|
11
|
+
- added: Add `appVersion`, `osType`, and `osVersion` to `EdgeContextOptions` for v2 coreRollup endpoint support.
|
|
12
|
+
- changed: Use `/v2/coreRollup` endpoint when device info is available, with `/v1/coreRollup` as fallback.
|
|
13
|
+
- fixed: Fixed confirmations bug in `shouldCoreDetermineConfirmations`
|
|
14
|
+
|
|
5
15
|
## 2.38.4 (2026-01-12)
|
|
6
16
|
|
|
7
17
|
- fixed: Allow duplicate sync keys when performing a wallet split, in case a previous failed attempt left a repo behind.
|