File tree Expand file tree Collapse file tree
user-operation-controller Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " @metamask/core-monorepo" ,
3- "version" : " 112 .0.0" ,
3+ "version" : " 113 .0.0" ,
44 "private" : true ,
55 "description" : " Monorepo for packages shared between MetaMask clients" ,
66 "repository" : {
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 21.0.1]
11+
12+ ### Fixed
13+
14+ - Resolves transaction custodian promise when setting transaction status to ` submitted ` or ` failed ` ([ #3845 ] ( https://github.com/MetaMask/core/pull/3845 ) )
15+ - Fix normalizer ensuring property ` type ` is always present in ` TransactionParams ` ([ #3817 ] ( https://github.com/MetaMask/core/pull/3817 ) )
16+
1017## [ 21.0.0]
1118
1219### Changed
@@ -457,7 +464,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
457464
458465 All changes listed after this point were applied to this package following the monorepo conversion.
459466
460- [ Unreleased ] : https://github.com/MetaMask/core/compare/@metamask/transaction-controller@21.0.0...HEAD
467+ [ Unreleased ] : https://github.com/MetaMask/core/compare/@metamask/transaction-controller@21.0.1...HEAD
468+ [ 21.0.1 ] : https://github.com/MetaMask/core/compare/@metamask/transaction-controller@21.0.0...@metamask/transaction-controller@21.0.1
461469[ 21.0.0 ] : https://github.com/MetaMask/core/compare/@metamask/transaction-controller@20.0.0...@metamask/transaction-controller@21.0.0
462470[ 20.0.0 ] : https://github.com/MetaMask/core/compare/@metamask/transaction-controller@19.0.1...@metamask/transaction-controller@20.0.0
463471[ 19.0.1 ] : https://github.com/MetaMask/core/compare/@metamask/transaction-controller@19.0.0...@metamask/transaction-controller@19.0.1
Original file line number Diff line number Diff line change 11{
22 "name" : " @metamask/transaction-controller" ,
3- "version" : " 21.0.0 " ,
3+ "version" : " 21.0.1 " ,
44 "description" : " Stores transactions alongside their periodically updated statuses and manages interactions such as approval and cancellation" ,
55 "keywords" : [
66 " MetaMask" ,
Original file line number Diff line number Diff line change @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 3.0.0]
11+
12+ ### Changed
13+
14+ - ** BREAKING** : Add required ` from ` property to ` PrepareUserOperationRequest ` ([ #3844 ] ( https://github.com/MetaMask/core/pull/3844 ) )
15+ - ** BREAKING** : Add required ` from ` property to ` AddUserOperationRequest ` ([ #3844 ] ( https://github.com/MetaMask/core/pull/3844 ) )
16+ - ** BREAKING** : Make ` smartContractAccount ` optional in ` AddUserOperationOptions ` ([ #3844 ] ( https://github.com/MetaMask/core/pull/3844 ) )
17+ - Use current account snap by default if not provided ([ #3844 ] ( https://github.com/MetaMask/core/pull/3844 ) )
18+ - Delete user operation if rejected during approval ([ #3844 ] ( https://github.com/MetaMask/core/pull/3844 ) )
19+ - Set ` userFeeLevel ` to ` custom ` in transaction event if using a paymaster ([ #3844 ] ( https://github.com/MetaMask/core/pull/3844 ) )
20+ - Validate arguments when calling ` addUserOperationFromTransaction ` ([ #3844 ] ( https://github.com/MetaMask/core/pull/3844 ) )
21+
1022## [ 2.0.0]
1123
1224### Changed
@@ -31,6 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3143
3244- Initial Release ([ #3749 ] ( https://github.com/MetaMask/core/pull/3749 ) )
3345
34- [ Unreleased ] : https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@2.0.0...HEAD
46+ [ Unreleased ] : https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@3.0.0...HEAD
47+ [ 3.0.0 ] : https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@2.0.0...@metamask/user-operation-controller@3.0.0
3548[ 2.0.0 ] : https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@1.0.0...@metamask/user-operation-controller@2.0.0
3649[ 1.0.0 ] : https://github.com/MetaMask/core/releases/tag/@metamask/user-operation-controller@1.0.0
Original file line number Diff line number Diff line change 11{
22 "name" : " @metamask/user-operation-controller" ,
3- "version" : " 2 .0.0" ,
3+ "version" : " 3 .0.0" ,
44 "description" : " Creates user operations and manages their life cycle" ,
55 "keywords" : [
66 " MetaMask" ,
4141 "@metamask/network-controller" : " ^17.2.0" ,
4242 "@metamask/polling-controller" : " ^5.0.0" ,
4343 "@metamask/rpc-errors" : " ^6.1.0" ,
44- "@metamask/transaction-controller" : " ^21.0.0 " ,
44+ "@metamask/transaction-controller" : " ^21.0.1 " ,
4545 "@metamask/utils" : " ^8.3.0" ,
4646 "ethereumjs-util" : " ^7.0.10" ,
4747 "immer" : " ^9.0.6" ,
6464 "@metamask/gas-fee-controller" : " ^13.0.0" ,
6565 "@metamask/keyring-controller" : " ^12.2.0" ,
6666 "@metamask/network-controller" : " ^17.2.0" ,
67- "@metamask/transaction-controller" : " ^21.0.0 "
67+ "@metamask/transaction-controller" : " ^21.0.1 "
6868 },
6969 "engines" : {
7070 "node" : " >=16.0.0"
Original file line number Diff line number Diff line change @@ -2893,7 +2893,7 @@ __metadata:
28932893 languageName : node
28942894 linkType : hard
28952895
2896- " @metamask/transaction-controller@^21.0.0 , @metamask/transaction-controller@workspace:packages/transaction-controller " :
2896+ " @metamask/transaction-controller@^21.0.1 , @metamask/transaction-controller@workspace:packages/transaction-controller " :
28972897 version : 0.0.0-use.local
28982898 resolution : " @metamask/transaction-controller@workspace:packages/transaction-controller"
28992899 dependencies :
@@ -2950,7 +2950,7 @@ __metadata:
29502950 " @metamask/network-controller " : ^17.2.0
29512951 " @metamask/polling-controller " : ^5.0.0
29522952 " @metamask/rpc-errors " : ^6.1.0
2953- " @metamask/transaction-controller " : ^21.0.0
2953+ " @metamask/transaction-controller " : ^21.0.1
29542954 " @metamask/utils " : ^8.3.0
29552955 " @types/jest " : ^27.4.1
29562956 deepmerge : ^4.2.2
@@ -2969,7 +2969,7 @@ __metadata:
29692969 " @metamask/gas-fee-controller " : ^13.0.0
29702970 " @metamask/keyring-controller " : ^12.2.0
29712971 " @metamask/network-controller " : ^17.2.0
2972- " @metamask/transaction-controller " : ^21.0.0
2972+ " @metamask/transaction-controller " : ^21.0.1
29732973 languageName : unknown
29742974 linkType : soft
29752975
You can’t perform that action at this time.
0 commit comments