@exodus/assets-feature 9.2.1 → 9.2.2

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,12 @@
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
+ ## [9.2.2](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/assets-feature@9.2.1...@exodus/assets-feature@9.2.2) (2026-04-22)
7
+
8
+ ### Bug Fixes
9
+
10
+ - fix(assets-feature): clear subscribers on stop to prevent stale unsubscribes (#15814)
11
+
6
12
  ## [9.2.1](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/assets-feature@9.2.0...@exodus/assets-feature@9.2.1) (2026-04-16)
7
13
 
8
14
  **Note:** Version bump only for package @exodus/assets-feature
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/assets-feature",
3
- "version": "9.2.1",
3
+ "version": "9.2.2",
4
4
  "license": "MIT",
5
5
  "description": "This Exodus SDK feature provides access to instances of all blockchain asset adapters supported by the wallet, and enables you to search for and add custom tokens at runtime.",
6
6
  "type": "module",
@@ -38,7 +38,7 @@
38
38
  "@exodus/asset-legacy-token-name-mapping": "^1.4.0",
39
39
  "@exodus/asset-lib": "^5.3.0",
40
40
  "@exodus/asset-schema-validation": "^1.2.0",
41
- "@exodus/asset-types": "^0.3.0",
41
+ "@exodus/asset-types": "^0.5.0",
42
42
  "@exodus/assets": "^11.3.0",
43
43
  "@exodus/atoms": "^10.3.3",
44
44
  "@exodus/basic-utils": "^5.0.0",
@@ -69,7 +69,7 @@
69
69
  "@exodus/fusion-local": "^2.1.0",
70
70
  "@exodus/keychain": "^9.0.3",
71
71
  "@exodus/logger": "^1.2.3",
72
- "@exodus/models": "^13.2.0",
72
+ "@exodus/models": "^13.2.1",
73
73
  "@exodus/osmosis-plugin": "^1.3.3",
74
74
  "@exodus/public-key-provider": "^4.2.1",
75
75
  "@exodus/redux-dependency-injection": "^4.2.0",
@@ -84,5 +84,5 @@
84
84
  "access": "public",
85
85
  "provenance": false
86
86
  },
87
- "gitHead": "9819576371d9361b2710dd8eae2fc6f4ef05d0b9"
87
+ "gitHead": "95974d24064fcb294f4ad618cf17d12f6719d303"
88
88
  }
package/plugin/index.js CHANGED
@@ -100,6 +100,7 @@ const createAssetsPlugin = ({
100
100
  const onStop = () => {
101
101
  observers.forEach((observer) => observer.unregister())
102
102
  subscribers.forEach((unsubscribe) => unsubscribe())
103
+ subscribers.length = 0
103
104
  customTokensMonitor?.stop()
104
105
  }
105
106