@metamask/assets-controllers 4.0.1 → 5.0.0

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 +7 -1
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [5.0.0]
10
+ ### Removed
11
+ - **BREAKING:** Remove `isomorphic-fetch` ([#1106](https://github.com/MetaMask/controllers/pull/1106))
12
+ - Consumers must now import `isomorphic-fetch` or another polyfill themselves if they are running in an environment without `fetch`
13
+
9
14
  ## [4.0.1]
10
15
  ### Fixed
11
16
  - Update Nft Controller to add the NFT back to its own group if we are re-importing it ([#1082](https://github.com/MetaMask/core/pull/1082))
@@ -74,7 +79,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
74
79
  ### Changed
75
80
  - Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
76
81
 
77
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@4.0.1...HEAD
82
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@5.0.0...HEAD
83
+ [5.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@4.0.1...@metamask/assets-controllers@5.0.0
78
84
  [4.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@4.0.0...@metamask/assets-controllers@4.0.1
79
85
  [4.0.0]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@3.0.1...@metamask/assets-controllers@4.0.0
80
86
  [3.0.1]: https://github.com/MetaMask/core/compare/@metamask/assets-controllers@3.0.0...@metamask/assets-controllers@3.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/assets-controllers",
3
- "version": "4.0.1",
3
+ "version": "5.0.0",
4
4
  "description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -33,12 +33,12 @@
33
33
  "@ethersproject/contracts": "^5.7.0",
34
34
  "@ethersproject/providers": "^5.7.0",
35
35
  "@metamask/abi-utils": "^1.1.0",
36
- "@metamask/base-controller": "^1.1.2",
36
+ "@metamask/base-controller": "^2.0.0",
37
37
  "@metamask/contract-metadata": "^2.1.0",
38
- "@metamask/controller-utils": "^2.0.0",
38
+ "@metamask/controller-utils": "^3.0.0",
39
39
  "@metamask/metamask-eth-abis": "3.0.0",
40
- "@metamask/network-controller": "^4.0.0",
41
- "@metamask/preferences-controller": "^1.0.2",
40
+ "@metamask/network-controller": "^5.0.0",
41
+ "@metamask/preferences-controller": "^2.0.0",
42
42
  "@metamask/utils": "^3.3.1",
43
43
  "@types/uuid": "^8.3.0",
44
44
  "abort-controller": "^3.0.0",
@@ -68,7 +68,7 @@
68
68
  "typescript": "~4.6.3"
69
69
  },
70
70
  "peerDependencies": {
71
- "@metamask/network-controller": "^4.0.0"
71
+ "@metamask/network-controller": "^5.0.0"
72
72
  },
73
73
  "engines": {
74
74
  "node": ">=14.0.0"