@exodus/headless 5.0.0-rc.62 → 5.0.0-rc.64

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,18 @@
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.64](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.63...@exodus/headless@5.0.0-rc.64) (2025-04-14)
7
+
8
+ ### Features
9
+
10
+ - feat: add minute granularity support for market history charts (#11984)
11
+
12
+ ## [5.0.0-rc.63](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.62...@exodus/headless@5.0.0-rc.63) (2025-04-10)
13
+
14
+ ### Bug Fixes
15
+
16
+ - fix: prevent losing private class fields in reporting API (#11987)
17
+
6
18
  ## [5.0.0-rc.62](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.61...@exodus/headless@5.0.0-rc.62) (2025-04-09)
7
19
 
8
20
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/headless",
3
- "version": "5.0.0-rc.62",
3
+ "version": "5.0.0-rc.64",
4
4
  "description": "The platform-agnostic Exodus wallet SDK",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "main": "src/index.js",
@@ -54,7 +54,7 @@
54
54
  "@exodus/keychain": "^7.8.0",
55
55
  "@exodus/locale": "^2.3.0",
56
56
  "@exodus/message-signer": "^1.4.2",
57
- "@exodus/pricing": "^1.8.0",
57
+ "@exodus/pricing": "^1.10.0",
58
58
  "@exodus/public-key-provider": "^4.1.1",
59
59
  "@exodus/rates-monitor": "^4.11.1",
60
60
  "@exodus/remote-config": "^3.0.0",
@@ -85,7 +85,7 @@
85
85
  "@exodus/dependency-types": "^2.1.1",
86
86
  "@exodus/domain-serialization": "^1.5.0",
87
87
  "@exodus/ethereum-lib": "^5.0.0",
88
- "@exodus/ethereum-meta": "^1.1.0",
88
+ "@exodus/ethereum-meta": "^2.4.1",
89
89
  "@exodus/event-log": "^2.6.3",
90
90
  "@exodus/fetch": "^1.2.1",
91
91
  "@exodus/fetch-factory": "^2.2.6",
@@ -93,7 +93,7 @@
93
93
  "@exodus/key-identifier": "^1.2.1",
94
94
  "@exodus/kyc": "^7.0.0",
95
95
  "@exodus/logger": "^1.2.3",
96
- "@exodus/market-history": "^10.0.1",
96
+ "@exodus/market-history": "^10.1.0",
97
97
  "@exodus/models": "^12.8.2",
98
98
  "@exodus/nfts": "^9.5.1",
99
99
  "@exodus/personal-notes": "^3.7.0",
@@ -135,5 +135,5 @@
135
135
  "publishConfig": {
136
136
  "access": "public"
137
137
  },
138
- "gitHead": "1bb0d12676c6d22a427da75dfc29b3930542c0b7"
138
+ "gitHead": "7b70e16bd178733863f857f27c5ba66dafd8f4a6"
139
139
  }
@@ -11,6 +11,12 @@ const reportCustomizer = (value) => {
11
11
  if (value instanceof Error) {
12
12
  return SafeError.from(value)
13
13
  }
14
+
15
+ // Lodash issue: https://github.com/lodash/lodash/issues/5247
16
+ // Avoid cloning SafeError instances to prevent losing private class fields, which are used during JSON serialization.
17
+ if (value instanceof SafeError) {
18
+ return value
19
+ }
14
20
  }
15
21
 
16
22
  const createReporting = ({ ioc, config: { exportTimeout = 5000 } = {} }) => {