@metamask-previews/keyring-controller 8.0.2-preview.ce06456 → 8.0.3-preview.017f5c1
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 +7 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [8.0.3]
|
|
10
|
+
### Changed
|
|
11
|
+
- `signTransaction` now accepts an optional `opts: Record<string, unknown>` argument to support `signTransaction` from `Keyring` type ([#1789](https://github.com/MetaMask/core/pull/1789))
|
|
12
|
+
- Bump dependency and peer dependency on `@metamask/preferences-controller` to ^4.4.3
|
|
13
|
+
|
|
9
14
|
## [8.0.2]
|
|
10
15
|
### Changed
|
|
11
16
|
- Bump dependency on `@metamask/utils` to ^8.1.0 ([#1639](https://github.com/MetaMask/core/pull/1639))
|
|
@@ -213,7 +218,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
213
218
|
|
|
214
219
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
215
220
|
|
|
216
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@8.0.
|
|
221
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@8.0.3...HEAD
|
|
222
|
+
[8.0.3]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@8.0.2...@metamask/keyring-controller@8.0.3
|
|
217
223
|
[8.0.2]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@8.0.1...@metamask/keyring-controller@8.0.2
|
|
218
224
|
[8.0.1]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@8.0.0...@metamask/keyring-controller@8.0.1
|
|
219
225
|
[8.0.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@7.5.0...@metamask/keyring-controller@8.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/keyring-controller",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.3-preview.017f5c1",
|
|
4
4
|
"description": "Stores identities seen in the wallet and manages interactions such as signing",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@metamask/base-controller": "^3.2.3",
|
|
34
34
|
"@metamask/eth-keyring-controller": "^13.0.1",
|
|
35
35
|
"@metamask/message-manager": "^7.3.5",
|
|
36
|
-
"@metamask/preferences-controller": "^4.4.
|
|
36
|
+
"@metamask/preferences-controller": "^4.4.3",
|
|
37
37
|
"@metamask/utils": "^8.1.0",
|
|
38
38
|
"async-mutex": "^0.2.6",
|
|
39
39
|
"ethereumjs-util": "^7.0.10",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"uuid": "^8.3.2"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"@metamask/preferences-controller": "^4.4.
|
|
61
|
+
"@metamask/preferences-controller": "^4.4.3"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=16.0.0"
|