edge-core-js 2.48.0 → 2.48.1
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 +4 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/util/nym.js +137 -43
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.48.1 (2026-08-31)
|
|
6
|
+
|
|
7
|
+
- fixed: Stop rebuilding the NYM mixFetch client on every request while its gateway is failing. Each attempt spawns a web worker holding megabytes of WASM that the library gives no way to terminate, so a poll loop retrying every few seconds exhausted the host's memory and killed the JS context, which on iOS reads to the user as being logged out. A failed setup now starts a cooldown that doubles up to five minutes.
|
|
8
|
+
|
|
5
9
|
## 2.48.0 (2026-08-20)
|
|
6
10
|
|
|
7
11
|
- added: `EdgeContext.setAttestationToken` to attach an `x-attestation-token` header on login-server requests.
|