@metamask/transaction-controller 3.0.0 → 4.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 +4 -5
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
+ ## [4.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
  ## [3.0.0]
10
15
  ### Added
11
16
  - Add Etherscan API support for Sepolia and Goerli ([#1041](https://github.com/MetaMask/controllers/pull/1041))
@@ -30,7 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30
35
 
31
36
  All changes listed after this point were applied to this package following the monorepo conversion.
32
37
 
33
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@3.0.0...HEAD
38
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@4.0.0...HEAD
39
+ [4.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@3.0.0...@metamask/transaction-controller@4.0.0
34
40
  [3.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@2.0.0...@metamask/transaction-controller@3.0.0
35
41
  [2.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@1.0.0...@metamask/transaction-controller@2.0.0
36
42
  [1.0.0]: https://github.com/MetaMask/core/releases/tag/@metamask/transaction-controller@1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/transaction-controller",
3
- "version": "3.0.0",
3
+ "version": "4.0.0",
4
4
  "description": "Stores transactions alongside their periodically updated statuses and manages interactions such as approval and cancellation",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -31,9 +31,9 @@
31
31
  "dependencies": {
32
32
  "@ethereumjs/common": "^2.6.1",
33
33
  "@ethereumjs/tx": "^3.5.2",
34
- "@metamask/base-controller": "^1.1.2",
35
- "@metamask/controller-utils": "^2.0.0",
36
- "@metamask/network-controller": "^3.0.0",
34
+ "@metamask/base-controller": "^2.0.0",
35
+ "@metamask/controller-utils": "^3.0.0",
36
+ "@metamask/network-controller": "^5.0.0",
37
37
  "async-mutex": "^0.2.6",
38
38
  "babel-runtime": "^6.26.0",
39
39
  "eth-method-registry": "1.1.0",
@@ -48,7 +48,6 @@
48
48
  "@types/node": "^14.14.31",
49
49
  "deepmerge": "^4.2.2",
50
50
  "ethjs-provider-http": "^0.1.6",
51
- "isomorphic-fetch": "^3.0.0",
52
51
  "jest": "^26.4.2",
53
52
  "sinon": "^9.2.4",
54
53
  "ts-jest": "^26.5.2",