@metamask-previews/signature-controller 19.1.0-preview-00a41cb8 → 20.0.0-preview-71085a04
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 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [20.0.0]
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- Remove usage of `@metamask/message-manager` package ([#4785](https://github.com/MetaMask/core/pull/4785))
|
|
@@ -26,16 +28,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
26
28
|
|
|
27
29
|
- Remove usage of `@metamask/message-manager` package ([#4785](https://github.com/MetaMask/core/pull/4785))
|
|
28
30
|
- **BREAKING** Change `type` property in message state to enum values rather than `string`.
|
|
29
|
-
-
|
|
31
|
+
- Deprecate the following state since the same data can be derived from `signatureRequests`:
|
|
30
32
|
- `unapprovedPersonalMsgs`
|
|
31
33
|
- `unapprovedTypedMessages`
|
|
32
34
|
- `unapprovedPersonalMsgCount`
|
|
33
35
|
- `unapprovedTypedMessagesCount`
|
|
34
|
-
-
|
|
36
|
+
- Deprecate the following properties since the same data can be derived from the state:
|
|
35
37
|
- `unapprovedPersonalMessagesCount`
|
|
36
38
|
- `unapprovedTypedMessagesCount`
|
|
37
39
|
- `messages`
|
|
38
|
-
-
|
|
40
|
+
- Deprecate the following constructor options since they are no longer used:
|
|
39
41
|
- `getAllState`
|
|
40
42
|
- `securityProviderRequest`
|
|
41
43
|
|
|
@@ -361,7 +363,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
361
363
|
|
|
362
364
|
- Initial release ([#1214](https://github.com/MetaMask/core/pull/1214))
|
|
363
365
|
|
|
364
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@
|
|
366
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@20.0.0...HEAD
|
|
367
|
+
[20.0.0]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@19.1.0...@metamask/signature-controller@20.0.0
|
|
365
368
|
[19.1.0]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@19.0.0...@metamask/signature-controller@19.1.0
|
|
366
369
|
[19.0.0]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@18.1.0...@metamask/signature-controller@19.0.0
|
|
367
370
|
[18.1.0]: https://github.com/MetaMask/core/compare/@metamask/signature-controller@18.0.1...@metamask/signature-controller@18.1.0
|
package/package.json
CHANGED