@metamask-previews/user-operation-controller 41.1.0-preview-55f73f6ce → 41.1.1-preview-4f74a56
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 +12 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -7,9 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [41.1.1]
|
|
11
|
+
|
|
10
12
|
### Changed
|
|
11
13
|
|
|
12
|
-
- Bump `@metamask/
|
|
14
|
+
- Bump `@metamask/approval-controller` from `^9.0.0` to `^9.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
15
|
+
- Bump `@metamask/base-controller` from `^9.0.0` to `^9.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
16
|
+
- Bump `@metamask/gas-fee-controller` from `^26.1.0` to `^26.1.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
17
|
+
- Bump `@metamask/keyring-controller` from `^25.1.0` to `^25.1.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
18
|
+
- Bump `@metamask/messenger` from `^0.3.0` to `^1.0.0` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
19
|
+
- Bump `@metamask/network-controller` from `^30.0.0` to `^30.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
20
|
+
- Bump `@metamask/polling-controller` from `^16.0.3` to `^16.0.4` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
21
|
+
- Bump `@metamask/transaction-controller` from `^63.0.0` to `^63.3.1` ([#8272](https://github.com/MetaMask/core/pull/8272), [#8301](https://github.com/MetaMask/core/pull/8301), [#8313](https://github.com/MetaMask/core/pull/8313), [#8317](https://github.com/MetaMask/core/pull/8317))
|
|
13
22
|
|
|
14
23
|
## [41.1.0]
|
|
15
24
|
|
|
@@ -559,7 +568,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
559
568
|
|
|
560
569
|
- Initial Release ([#3749](https://github.com/MetaMask/core/pull/3749))
|
|
561
570
|
|
|
562
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.1.
|
|
571
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.1.1...HEAD
|
|
572
|
+
[41.1.1]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.1.0...@metamask/user-operation-controller@41.1.1
|
|
563
573
|
[41.1.0]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.0.3...@metamask/user-operation-controller@41.1.0
|
|
564
574
|
[41.0.3]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.0.2...@metamask/user-operation-controller@41.0.3
|
|
565
575
|
[41.0.2]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.0.1...@metamask/user-operation-controller@41.0.2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/user-operation-controller",
|
|
3
|
-
"version": "41.1.
|
|
3
|
+
"version": "41.1.1-preview-4f74a56",
|
|
4
4
|
"description": "Creates user operations and manages their life cycle",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -49,18 +49,18 @@
|
|
|
49
49
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@metamask/approval-controller": "^9.0.
|
|
53
|
-
"@metamask/base-controller": "^9.0.
|
|
52
|
+
"@metamask/approval-controller": "^9.0.1",
|
|
53
|
+
"@metamask/base-controller": "^9.0.1",
|
|
54
54
|
"@metamask/controller-utils": "^11.19.0",
|
|
55
55
|
"@metamask/eth-query": "^4.0.0",
|
|
56
|
-
"@metamask/gas-fee-controller": "^26.1.
|
|
57
|
-
"@metamask/keyring-controller": "^25.1.
|
|
58
|
-
"@metamask/messenger": "^0.
|
|
59
|
-
"@metamask/network-controller": "^30.0.
|
|
60
|
-
"@metamask/polling-controller": "^16.0.
|
|
56
|
+
"@metamask/gas-fee-controller": "^26.1.1",
|
|
57
|
+
"@metamask/keyring-controller": "^25.1.1",
|
|
58
|
+
"@metamask/messenger": "^1.0.0",
|
|
59
|
+
"@metamask/network-controller": "^30.0.1",
|
|
60
|
+
"@metamask/polling-controller": "^16.0.4",
|
|
61
61
|
"@metamask/rpc-errors": "^7.0.2",
|
|
62
62
|
"@metamask/superstruct": "^3.1.0",
|
|
63
|
-
"@metamask/transaction-controller": "^63.
|
|
63
|
+
"@metamask/transaction-controller": "^63.3.1",
|
|
64
64
|
"@metamask/utils": "^11.9.0",
|
|
65
65
|
"bn.js": "^5.2.1",
|
|
66
66
|
"immer": "^9.0.6",
|