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

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.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
+
8
+ ### Bug Fixes
9
+
10
+ - fix(headless): dont wait fusion.load during migration (#14196)
11
+
12
+ ## [5.0.0-rc.86](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.85...@exodus/headless@5.0.0-rc.86) (2025-09-26)
13
+
14
+ ### ⚠ BREAKING CHANGES
15
+
16
+ - bump `@exodus/message-signer` to v3 (#13936)
17
+
18
+ ### Features
19
+
20
+ - feat!: bump `@exodus/message-signer` to v3 (#13936)
21
+
6
22
  ## [5.0.0-rc.85](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.84...@exodus/headless@5.0.0-rc.85) (2025-09-23)
7
23
 
8
24
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/headless",
3
- "version": "5.0.0-rc.85",
3
+ "version": "5.0.0-rc.87",
4
4
  "description": "The platform-agnostic Exodus wallet SDK",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "type": "module",
@@ -54,7 +54,7 @@
54
54
  "@exodus/key-viewer": "^1.1.5",
55
55
  "@exodus/keychain": "^7.8.0",
56
56
  "@exodus/locale": "^2.3.0",
57
- "@exodus/message-signer": "^1.4.2",
57
+ "@exodus/message-signer": "^3.0.0",
58
58
  "@exodus/pricing": "^1.10.0",
59
59
  "@exodus/public-key-provider": "^4.1.1",
60
60
  "@exodus/rates-monitor": "^4.14.3",
@@ -72,7 +72,7 @@
72
72
  "ms": "^2.1.3"
73
73
  },
74
74
  "devDependencies": {
75
- "@exodus/ab-testing": "^7.8.0",
75
+ "@exodus/ab-testing": "^7.9.0",
76
76
  "@exodus/algorand-lib": "^2.0.1",
77
77
  "@exodus/algorand-meta": "^2.0.0",
78
78
  "@exodus/analytics": "^15.4.0",
@@ -98,7 +98,7 @@
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.16.0",
101
+ "@exodus/models": "^12.17.1",
102
102
  "@exodus/nfts": "^9.6.1",
103
103
  "@exodus/personal-notes": "^3.9.0",
104
104
  "@exodus/referrals": "^8.10.1",
@@ -135,7 +135,8 @@
135
135
  }
136
136
  },
137
137
  "publishConfig": {
138
- "access": "public"
138
+ "access": "public",
139
+ "provenance": false
139
140
  },
140
- "gitHead": "5752a6d2f0f4b5393071ab5fe7f1d3334f8653be"
141
+ "gitHead": "856bf510f6f88af0d1e3f853fcb5421dc7d071c4"
141
142
  }
@@ -1,5 +1,6 @@
1
1
  import { SafeError } from '@exodus/errors'
2
2
  import { safeString } from '@exodus/safe-string'
3
+ // eslint-disable-next-line no-restricted-imports -- TODO: Fix this the next time the file is edited.
3
4
  import lodash from 'lodash'
4
5
 
5
6
  import { rejectAfter } from '../utils/promises.js'
@@ -1,4 +1,5 @@
1
1
  import { combine, compute, dedupe } from '@exodus/atoms'
2
+ // eslint-disable-next-line no-restricted-imports -- TODO: Fix this the next time the file is edited.
2
3
  import lodash from 'lodash'
3
4
 
4
5
  const { uniq } = lodash
@@ -72,7 +72,7 @@ const attachMigrations = ({ migrations = [], application, modules, adapters, con
72
72
  await unlockEncryptedStorage(migrateableStorage)
73
73
  }
74
74
 
75
- await migrateableFusion.load()
75
+ migrateableFusion.load()
76
76
 
77
77
  const migrationNames = migrations.map((migration) => migration.name)
78
78
  const migrationFlags = await migrationFlagsStorage.batchGet(migrationNames)