@metamask-previews/assets-controllers 108.4.0-preview-a302a81d3 → 108.5.0-preview-a65eb72

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -1
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -7,12 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Changed
11
+
12
+ - Bump `@metamask/network-enablement-controller` from `^5.2.0` to `^5.3.0` ([#9003](https://github.com/MetaMask/core/pull/9003))
13
+
14
+ ## [108.5.0]
15
+
10
16
  ### Added
11
17
 
12
18
  - Add `isDeprecated` option to `TokenListController` constructor, a function that returns whether the controller should be disabled ([#8945](https://github.com/MetaMask/core/pull/8945))
13
19
  - When `isDeprecated()` returns `true`, every fetching entry point (`initialize()`, `start()`, `restart()`, `_executePoll()`, and `fetchTokenList()`) resets `tokensChainsCache` to `{}`, cancels any pending debounced persist (so a stale entry can't write old data after the in-memory reset), and overwrites every persisted `tokensChainsCache:*` entry in `StorageService` with `{ data: {}, timestamp: 0 }`. No HTTP calls are issued to the token API.
14
20
  - The function is re-evaluated on each entry point so it can be toggled at runtime without reconstructing the controller — including from inside any deprecated `setInterval` already running from a prior `start()`.
15
21
 
22
+ ### Changed
23
+
24
+ - Bump `@metamask/account-tree-controller` from `^7.5.0` to `^7.5.1` ([#8999](https://github.com/MetaMask/core/pull/8999))
25
+ - Bump `@metamask/accounts-controller` from `^38.1.2` to `^39.0.0` ([#8999](https://github.com/MetaMask/core/pull/8999))
26
+ - Bump `@metamask/core-backend` from `^6.3.1` to `^6.3.2` ([#8999](https://github.com/MetaMask/core/pull/8999))
27
+ - Bump `@metamask/multichain-account-service` from `^10.0.1` to `^10.0.2` ([#8999](https://github.com/MetaMask/core/pull/8999))
28
+ - Bump `@metamask/transaction-controller` from `^66.0.0` to `^66.0.1` ([#8999](https://github.com/MetaMask/core/pull/8999))
29
+
16
30
  ## [108.4.0]
17
31
 
18
32
  ### Added
@@ -3142,7 +3156,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3142
3156
 
3143
3157
  - Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
3144
3158
 
3145
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.4.0...HEAD
3159
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.5.0...HEAD
3160
+ [108.5.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.4.0...@metamask/assets-controllers@108.5.0
3146
3161
  [108.4.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.3.0...@metamask/assets-controllers@108.4.0
3147
3162
  [108.3.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.2.0...@metamask/assets-controllers@108.3.0
3148
3163
  [108.2.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@108.1.0...@metamask/assets-controllers@108.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/assets-controllers",
3
- "version": "108.4.0-preview-a302a81d3",
3
+ "version": "108.5.0-preview-a65eb72",
4
4
  "description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
5
5
  "keywords": [
6
6
  "Ethereum",
@@ -60,21 +60,21 @@
60
60
  "@ethersproject/contracts": "^5.7.0",
61
61
  "@ethersproject/providers": "^5.7.0",
62
62
  "@metamask/abi-utils": "^2.0.3",
63
- "@metamask/account-tree-controller": "^7.5.0",
64
- "@metamask/accounts-controller": "^38.1.2",
63
+ "@metamask/account-tree-controller": "^7.5.1",
64
+ "@metamask/accounts-controller": "^39.0.0",
65
65
  "@metamask/approval-controller": "^9.0.1",
66
66
  "@metamask/base-controller": "^9.1.0",
67
67
  "@metamask/contract-metadata": "^2.4.0",
68
68
  "@metamask/controller-utils": "^12.1.0",
69
- "@metamask/core-backend": "^6.3.1",
69
+ "@metamask/core-backend": "^6.3.2",
70
70
  "@metamask/eth-query": "^4.0.0",
71
71
  "@metamask/keyring-api": "^23.1.0",
72
72
  "@metamask/keyring-controller": "^26.0.0",
73
73
  "@metamask/messenger": "^1.2.0",
74
74
  "@metamask/metamask-eth-abis": "^3.1.1",
75
- "@metamask/multichain-account-service": "^10.0.1",
75
+ "@metamask/multichain-account-service": "^10.0.2",
76
76
  "@metamask/network-controller": "^32.0.0",
77
- "@metamask/network-enablement-controller": "^5.2.0",
77
+ "@metamask/network-enablement-controller": "^5.3.0",
78
78
  "@metamask/permission-controller": "^13.1.1",
79
79
  "@metamask/phishing-controller": "^17.2.0",
80
80
  "@metamask/polling-controller": "^16.0.6",
@@ -85,7 +85,7 @@
85
85
  "@metamask/snaps-sdk": "^11.0.0",
86
86
  "@metamask/snaps-utils": "^12.1.2",
87
87
  "@metamask/storage-service": "^1.0.1",
88
- "@metamask/transaction-controller": "^66.0.0",
88
+ "@metamask/transaction-controller": "^66.0.1",
89
89
  "@metamask/utils": "^11.9.0",
90
90
  "@tanstack/query-core": "^5.62.16",
91
91
  "@types/bn.js": "^5.1.5",