@metamask/transaction-controller 31.0.0 → 32.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 +13 -1
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [32.0.0]
11
+
12
+ ### Changed
13
+
14
+ - **BREAKING:** Bump minimum Node version to 18.18 ([#3611](https://github.com/MetaMask/core/pull/3611))
15
+ - **BREAKING:** Bump dependency and peer dependency `@metamask/approval-controller` to `^7.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
16
+ - **BREAKING:** Bump dependency and peer dependency `@metamask/gas-fee-controller` to `^17.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
17
+ - **BREAKING:** Bump dependency and peer dependency `@metamask/network-controller` to `^19.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
18
+ - Bump `@metamask/base-controller` to `^6.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
19
+ - Bump `@metamask/controller-utils` to `^11.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
20
+
10
21
  ## [31.0.0]
11
22
 
12
23
  ### Changed
@@ -865,7 +876,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
865
876
 
866
877
  All changes listed after this point were applied to this package following the monorepo conversion.
867
878
 
868
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@31.0.0...HEAD
879
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@32.0.0...HEAD
880
+ [32.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@31.0.0...@metamask/transaction-controller@32.0.0
869
881
  [31.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@30.0.0...@metamask/transaction-controller@31.0.0
870
882
  [30.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@29.1.0...@metamask/transaction-controller@30.0.0
871
883
  [29.1.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@29.0.2...@metamask/transaction-controller@29.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/transaction-controller",
3
- "version": "31.0.0",
3
+ "version": "32.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",
@@ -47,13 +47,13 @@
47
47
  "@ethersproject/abi": "^5.7.0",
48
48
  "@ethersproject/contracts": "^5.7.0",
49
49
  "@ethersproject/providers": "^5.7.0",
50
- "@metamask/approval-controller": "^6.0.2",
51
- "@metamask/base-controller": "^5.0.2",
52
- "@metamask/controller-utils": "^10.0.0",
50
+ "@metamask/approval-controller": "^7.0.0",
51
+ "@metamask/base-controller": "^6.0.0",
52
+ "@metamask/controller-utils": "^11.0.0",
53
53
  "@metamask/eth-query": "^4.0.0",
54
- "@metamask/gas-fee-controller": "^16.0.0",
54
+ "@metamask/gas-fee-controller": "^17.0.0",
55
55
  "@metamask/metamask-eth-abis": "^3.1.1",
56
- "@metamask/network-controller": "^18.1.3",
56
+ "@metamask/network-controller": "^19.0.0",
57
57
  "@metamask/nonce-tracker": "^5.0.0",
58
58
  "@metamask/rpc-errors": "^6.2.1",
59
59
  "@metamask/utils": "^8.3.0",
@@ -83,12 +83,12 @@
83
83
  },
84
84
  "peerDependencies": {
85
85
  "@babel/runtime": "^7.23.9",
86
- "@metamask/approval-controller": "^6.0.2",
87
- "@metamask/gas-fee-controller": "^16.0.0",
88
- "@metamask/network-controller": "^18.1.3"
86
+ "@metamask/approval-controller": "^7.0.0",
87
+ "@metamask/gas-fee-controller": "^17.0.0",
88
+ "@metamask/network-controller": "^19.0.0"
89
89
  },
90
90
  "engines": {
91
- "node": ">=16.0.0"
91
+ "node": "^18.18 || >=20"
92
92
  },
93
93
  "publishConfig": {
94
94
  "access": "public",