edge-core-js 2.47.1 → 2.48.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 +6 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/core/actions.js +5 -0
- package/lib/core/context/context-api.js +4 -0
- package/lib/core/fake/fake-world.js +17 -6
- package/lib/core/login/login-fetch.js +5 -2
- package/lib/core/login/login-reducer.js +8 -0
- package/lib/node/index.js +79 -22
- package/lib/types/types.js +7 -0
- package/lib/util/validateServer.js +33 -3
- package/package.json +1 -1
- package/src/types/types.ts +9 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.48.0 (2026-08-20)
|
|
6
|
+
|
|
7
|
+
- added: `EdgeContext.setAttestationToken` to attach an `x-attestation-token` header on login-server requests.
|
|
8
|
+
- changed: `validateServer` accepts private LAN IPv4 addresses (RFC1918 + 127/8) for `http`/`ws` server overrides only; `https`/`wss` still require localhost or `*.edge(test)?.app`.
|
|
9
|
+
- changed: Fake-world `allowNetworkAccess` fakes only login/info/sync `*.edge.app` hosts; other traffic (including change servers and private LAN) uses real `io.fetch`.
|
|
10
|
+
|
|
5
11
|
## 2.47.1 (2026-07-17)
|
|
6
12
|
|
|
7
13
|
- fixed: Revert `@nymproject/mix-fetch` to v1 (1.4.4), restoring the pinned gateway and network requester. The v2 stack shipped in 2.47.0 fails to complete small HTTPS JSON-RPC requests through most exit nodes and its exit-node auto-discovery rarely converges, which left wallets with NYM privacy enabled unable to sync or send.
|