@exodus/headless 5.0.0-rc.89 → 5.0.0-rc.90

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 CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.0.0-rc.90](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.89...@exodus/headless@5.0.0-rc.90) (2026-02-04)
7
+
8
+ ### Bug Fixes
9
+
10
+ - fix: clarify async behavior in Promise.all usage (#15059)
11
+
12
+ - fix: extend private fields fix to all toJSON objects (#15179)
13
+
14
+ - fix(ui-config): sync atoms in plugin instead of in atom definition (#14908)
15
+
6
16
  ## [5.0.0-rc.89](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.88...@exodus/headless@5.0.0-rc.89) (2025-12-02)
7
17
 
8
18
  ### Features
@@ -11,6 +21,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
21
 
12
22
  ### Bug Fixes
13
23
 
24
+ - fix(analytics): support both camelCase & kebab_case on `requireDefaultEventProperties` (#14494)
25
+
14
26
  - fix: update NFT transaction sent status calculation (#14359)
15
27
 
16
28
  ## [5.0.0-rc.88](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.87...@exodus/headless@5.0.0-rc.88) (2025-10-24)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/headless",
3
- "version": "5.0.0-rc.89",
3
+ "version": "5.0.0-rc.90",
4
4
  "description": "The platform-agnostic Exodus wallet SDK",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "type": "module",
@@ -75,12 +75,12 @@
75
75
  "@exodus/ab-testing": "^7.9.0",
76
76
  "@exodus/algorand-lib": "^2.0.1",
77
77
  "@exodus/algorand-meta": "^2.0.0",
78
- "@exodus/analytics": "^15.5.0",
78
+ "@exodus/analytics": "^15.5.1",
79
79
  "@exodus/announcements": "^3.2.1",
80
80
  "@exodus/app-process-mobile": "^3.10.0",
81
81
  "@exodus/apy-rates": "^3.6.0",
82
82
  "@exodus/bip32": "^4.0.2",
83
- "@exodus/bip39": "^1.0.3",
83
+ "@exodus/bip39": "^1.1.0",
84
84
  "@exodus/bitcoin-plugin": "^1.0.14",
85
85
  "@exodus/connected-origins": "^4.3.0",
86
86
  "@exodus/crypto": "^1.0.0-rc.22",
@@ -92,14 +92,14 @@
92
92
  "@exodus/ethereum-meta": "^2.4.1",
93
93
  "@exodus/event-log": "^2.9.0",
94
94
  "@exodus/fetch": "^1.2.1",
95
- "@exodus/fetch-factory": "^2.4.0",
96
- "@exodus/fiat-ramp": "^15.6.0",
95
+ "@exodus/fetch-factory": "^2.4.1",
96
+ "@exodus/fiat-ramp": "^15.12.0",
97
97
  "@exodus/key-identifier": "^1.2.1",
98
98
  "@exodus/kyc": "^7.1.0",
99
99
  "@exodus/logger": "^1.2.3",
100
- "@exodus/market-history": "^10.3.1",
101
- "@exodus/models": "^12.18.0",
102
- "@exodus/nfts": "^9.6.1",
100
+ "@exodus/market-history": "^10.5.0",
101
+ "@exodus/models": "^12.19.0",
102
+ "@exodus/nfts": "^9.6.2",
103
103
  "@exodus/personal-notes": "^3.9.0",
104
104
  "@exodus/referrals": "^8.10.1",
105
105
  "@exodus/sdk-rpc": "^1.0.0",
@@ -108,7 +108,8 @@
108
108
  "@exodus/storage-encrypted": "^1.5.1",
109
109
  "@exodus/storage-memory": "^2.3.0",
110
110
  "@exodus/top-movers-monitor": "^4.4.1",
111
- "@exodus/ui-config": "^3.13.0",
111
+ "@exodus/traceparent": "^1.0.0",
112
+ "@exodus/ui-config": "^3.13.3",
112
113
  "@exodus/wallet-sdk": "^2.0.1",
113
114
  "@exodus/wild-emitter": "^1.0.0",
114
115
  "@exodus/zod": "^3.24.3",
@@ -138,5 +139,5 @@
138
139
  "access": "public",
139
140
  "provenance": false
140
141
  },
141
- "gitHead": "ef39d3d344203e407bcc41f4f4fd85ce2804a216"
142
+ "gitHead": "adb40569b9081e62bc2824c18b61ed9d7c6a7378"
142
143
  }
@@ -15,8 +15,9 @@ const reportCustomizer = (value) => {
15
15
  }
16
16
 
17
17
  // Lodash issue: https://github.com/lodash/lodash/issues/5247
18
- // Avoid cloning SafeError instances to prevent losing private class fields, which are used during JSON serialization.
19
- if (value instanceof SafeError) {
18
+ // Skip cloning objects with custom toJSON - cloning can lose private fields needed for serialization.
19
+ // Cloning is only needed for Error coercion above.
20
+ if (typeof value?.toJSON === 'function') {
20
21
  return value
21
22
  }
22
23
  }
@@ -39,7 +39,7 @@ const setEnvProperties = async ({ analytics, env }) => {
39
39
 
40
40
  const createHeadlessAnalyticsPlugin = ({ analytics, env, getBuildMetadata, systemPreferences }) => {
41
41
  const onStart = async () => {
42
- Promise.all([
42
+ void Promise.all([
43
43
  setEnvProperties({ analytics, env }),
44
44
  setBuildMetadataProperties({ analytics, getBuildMetadata }),
45
45
  setSystemPreferencesProperties({ analytics, systemPreferences }),