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

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,22 @@
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.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
+
8
+ ### Features
9
+
10
+ - feat: update all consumers to use safe strings for error namespaces (#14429)
11
+
12
+ ### Bug Fixes
13
+
14
+ - fix: update NFT transaction sent status calculation (#14359)
15
+
16
+ ## [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)
17
+
18
+ ### Bug Fixes
19
+
20
+ - fix(headless): track and log error on migrateableFusion.load (#14211)
21
+
6
22
  ## [5.0.0-rc.87](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.86...@exodus/headless@5.0.0-rc.87) (2025-10-23)
7
23
 
8
24
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/headless",
3
- "version": "5.0.0-rc.87",
3
+ "version": "5.0.0-rc.89",
4
4
  "description": "The platform-agnostic Exodus wallet SDK",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "type": "module",
@@ -39,9 +39,9 @@
39
39
  "@exodus/assets-feature": "^8.2.0",
40
40
  "@exodus/atoms": "^9.0.0",
41
41
  "@exodus/available-assets": "^8.4.0",
42
- "@exodus/balances": "^13.7.1",
42
+ "@exodus/balances": "^13.14.0",
43
43
  "@exodus/basic-utils": "^4.0.0",
44
- "@exodus/blockchain-metadata": "^16.0.0",
44
+ "@exodus/blockchain-metadata": "^17.0.0",
45
45
  "@exodus/cached-sodium-encryptor": "^1.3.0",
46
46
  "@exodus/enabled-assets": "^10.10.1",
47
47
  "@exodus/error-tracking": "^3.0.0",
@@ -75,7 +75,7 @@
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.4.0",
78
+ "@exodus/analytics": "^15.5.0",
79
79
  "@exodus/announcements": "^3.2.1",
80
80
  "@exodus/app-process-mobile": "^3.10.0",
81
81
  "@exodus/apy-rates": "^3.6.0",
@@ -93,12 +93,12 @@
93
93
  "@exodus/event-log": "^2.9.0",
94
94
  "@exodus/fetch": "^1.2.1",
95
95
  "@exodus/fetch-factory": "^2.4.0",
96
- "@exodus/fiat-ramp": "^15.3.0",
96
+ "@exodus/fiat-ramp": "^15.6.0",
97
97
  "@exodus/key-identifier": "^1.2.1",
98
98
  "@exodus/kyc": "^7.1.0",
99
99
  "@exodus/logger": "^1.2.3",
100
100
  "@exodus/market-history": "^10.3.1",
101
- "@exodus/models": "^12.17.1",
101
+ "@exodus/models": "^12.18.0",
102
102
  "@exodus/nfts": "^9.6.1",
103
103
  "@exodus/personal-notes": "^3.9.0",
104
104
  "@exodus/referrals": "^8.10.1",
@@ -138,5 +138,5 @@
138
138
  "access": "public",
139
139
  "provenance": false
140
140
  },
141
- "gitHead": "856bf510f6f88af0d1e3f853fcb5421dc7d071c4"
141
+ "gitHead": "ef39d3d344203e407bcc41f4f4fd85ce2804a216"
142
142
  }
@@ -72,7 +72,14 @@ const attachMigrations = ({ migrations = [], application, modules, adapters, con
72
72
  await unlockEncryptedStorage(migrateableStorage)
73
73
  }
74
74
 
75
- migrateableFusion.load()
75
+ void migrateableFusion.load().catch((error) => {
76
+ logger.error(`fusion.load() failed during migrate hook: ${error.stack}`)
77
+ errorTracking.track({
78
+ error,
79
+ namespace: safeString`migrations`,
80
+ context: { phase: 'migration-hook:fusion-load' },
81
+ })
82
+ })
76
83
 
77
84
  const migrationNames = migrations.map((migration) => migration.name)
78
85
  const migrationFlags = await migrationFlagsStorage.batchGet(migrationNames)