@metamask/transaction-controller 38.3.0 → 39.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.
- package/CHANGELOG.md +9 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [39.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump peer dependency `@metamask/accounts-controller` from `^18.0.0` to `^19.0.0` ([#4915](https://github.com/MetaMask/core/pull/4915))
|
|
15
|
+
- Bump `@metamask/controller-utils` from `^11.4.2` to `^11.4.3` ([#4915](https://github.com/MetaMask/core/pull/4915))
|
|
16
|
+
|
|
10
17
|
## [38.3.0]
|
|
11
18
|
|
|
12
19
|
### Added
|
|
@@ -1113,7 +1120,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1113
1120
|
|
|
1114
1121
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
1115
1122
|
|
|
1116
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@
|
|
1123
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@39.0.0...HEAD
|
|
1124
|
+
[39.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@38.3.0...@metamask/transaction-controller@39.0.0
|
|
1117
1125
|
[38.3.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@38.2.0...@metamask/transaction-controller@38.3.0
|
|
1118
1126
|
[38.2.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@38.1.0...@metamask/transaction-controller@38.2.0
|
|
1119
1127
|
[38.1.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@38.0.0...@metamask/transaction-controller@38.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/transaction-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "39.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",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@ethersproject/contracts": "^5.7.0",
|
|
55
55
|
"@ethersproject/providers": "^5.7.0",
|
|
56
56
|
"@metamask/base-controller": "^7.0.2",
|
|
57
|
-
"@metamask/controller-utils": "^11.4.
|
|
57
|
+
"@metamask/controller-utils": "^11.4.3",
|
|
58
58
|
"@metamask/eth-query": "^4.0.0",
|
|
59
59
|
"@metamask/metamask-eth-abis": "^3.1.1",
|
|
60
60
|
"@metamask/nonce-tracker": "^6.0.0",
|
|
@@ -69,14 +69,14 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@babel/runtime": "^7.23.9",
|
|
72
|
-
"@metamask/accounts-controller": "^
|
|
72
|
+
"@metamask/accounts-controller": "^19.0.0",
|
|
73
73
|
"@metamask/approval-controller": "^7.1.1",
|
|
74
74
|
"@metamask/auto-changelog": "^3.4.4",
|
|
75
75
|
"@metamask/eth-json-rpc-provider": "^4.1.6",
|
|
76
76
|
"@metamask/ethjs-provider-http": "^0.3.0",
|
|
77
|
-
"@metamask/gas-fee-controller": "^22.0.
|
|
77
|
+
"@metamask/gas-fee-controller": "^22.0.1",
|
|
78
78
|
"@metamask/keyring-api": "^8.1.3",
|
|
79
|
-
"@metamask/network-controller": "^22.0.
|
|
79
|
+
"@metamask/network-controller": "^22.0.2",
|
|
80
80
|
"@types/bn.js": "^5.1.5",
|
|
81
81
|
"@types/jest": "^27.4.1",
|
|
82
82
|
"@types/node": "^16.18.54",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
},
|
|
93
93
|
"peerDependencies": {
|
|
94
94
|
"@babel/runtime": "^7.23.9",
|
|
95
|
-
"@metamask/accounts-controller": "^
|
|
95
|
+
"@metamask/accounts-controller": "^19.0.0",
|
|
96
96
|
"@metamask/approval-controller": "^7.0.0",
|
|
97
97
|
"@metamask/gas-fee-controller": "^22.0.0",
|
|
98
98
|
"@metamask/network-controller": "^22.0.0"
|