@metamask-previews/transaction-controller 46.0.0-preview-e951f896 → 47.0.0-preview-047d5b0a
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 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [47.0.0]
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
14
|
+
- Persist user rejection optional data in rejected error ([#5355](https://github.com/MetaMask/core/pull/5355))
|
|
12
15
|
- Add `updateAtomicBatchData` method ([#5380](https://github.com/MetaMask/core/pull/5380))
|
|
13
16
|
- Support atomic batch transactions ([#5306](https://github.com/MetaMask/core/pull/5306))
|
|
14
17
|
- Add methods:
|
|
@@ -25,10 +28,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
25
28
|
|
|
26
29
|
### Changed
|
|
27
30
|
|
|
28
|
-
-
|
|
31
|
+
- **BREAKING:** Bump `@metamask/accounts-controller` peer dependency to `^25.0.0` ([#5426](https://github.com/MetaMask/core/pull/5426))
|
|
32
|
+
- **BREAKING**: Require messenger permissions for `KeyringController:signEip7702Authorization` action ([#5410](https://github.com/MetaMask/core/pull/5410))
|
|
29
33
|
- **BREAKING:** Support atomic batch transactions ([#5306](https://github.com/MetaMask/core/pull/5306))
|
|
30
34
|
- Require `AccountsController:getState` action permission in messenger.
|
|
31
35
|
- Require `RemoteFeatureFlagController:getState` action permission in messenger.
|
|
36
|
+
- Bump `@metamask/utils` from `^11.1.0` to `^11.2.0` ([#5301](https://github.com/MetaMask/core/pull/5301))
|
|
37
|
+
- Throw if `addTransactionBatch` is called with any nested transaction with `to` matching internal account ([#5369](https://github.com/MetaMask/core/pull/5369))
|
|
32
38
|
|
|
33
39
|
## [46.0.0]
|
|
34
40
|
|
|
@@ -1313,7 +1319,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1313
1319
|
|
|
1314
1320
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
1315
1321
|
|
|
1316
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@
|
|
1322
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@47.0.0...HEAD
|
|
1323
|
+
[47.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@46.0.0...@metamask/transaction-controller@47.0.0
|
|
1317
1324
|
[46.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@45.1.0...@metamask/transaction-controller@46.0.0
|
|
1318
1325
|
[45.1.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@45.0.0...@metamask/transaction-controller@45.1.0
|
|
1319
1326
|
[45.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@44.1.0...@metamask/transaction-controller@45.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/transaction-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "47.0.0-preview-047d5b0a",
|
|
4
4
|
"description": "Stores transactions alongside their periodically updated statuses and manages interactions such as approval and cancellation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@babel/runtime": "^7.23.9",
|
|
72
|
-
"@metamask/accounts-controller": "^
|
|
72
|
+
"@metamask/accounts-controller": "^25.0.0",
|
|
73
73
|
"@metamask/approval-controller": "^7.1.3",
|
|
74
74
|
"@metamask/auto-changelog": "^3.4.4",
|
|
75
75
|
"@metamask/eth-block-tracker": "^11.0.3",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
},
|
|
94
94
|
"peerDependencies": {
|
|
95
95
|
"@babel/runtime": "^7.0.0",
|
|
96
|
-
"@metamask/accounts-controller": "^
|
|
96
|
+
"@metamask/accounts-controller": "^25.0.0",
|
|
97
97
|
"@metamask/approval-controller": "^7.0.0",
|
|
98
98
|
"@metamask/eth-block-tracker": ">=9",
|
|
99
99
|
"@metamask/gas-fee-controller": "^22.0.0",
|