@metamask-previews/permission-controller 12.2.1-preview-55f19615e → 12.3.0-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 +11 -1
- package/package.json +5 -5
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
|
+
## [12.3.0]
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- Expose missing public `PermissionController` methods through its messenger ([#8201](https://github.com/MetaMask/core/pull/8201))
|
|
@@ -23,6 +25,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
25
|
|
|
24
26
|
### Changed
|
|
25
27
|
|
|
28
|
+
- Bump `@metamask/approval-controller` from `^9.0.0` to `^9.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
29
|
+
- Bump `@metamask/base-controller` from `^9.0.0` to `^9.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
30
|
+
- Bump `@metamask/json-rpc-engine` from `^10.2.3` to `^10.2.4` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
31
|
+
- Bump `@metamask/messenger` from `^0.3.0` to `^1.0.0` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
32
|
+
|
|
33
|
+
### Deprecated
|
|
34
|
+
|
|
26
35
|
- Deprecate action types in favor of `PermissionController...Action` and `SubjectMetadataController...Action` types ([#8201](https://github.com/MetaMask/core/pull/8201))
|
|
27
36
|
- For the `PermissionController`:
|
|
28
37
|
- `GetPermissionControllerState` is now `PermissionControllerGetStateAction`.
|
|
@@ -438,7 +447,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
438
447
|
|
|
439
448
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
440
449
|
|
|
441
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@12.
|
|
450
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@12.3.0...HEAD
|
|
451
|
+
[12.3.0]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@12.2.1...@metamask/permission-controller@12.3.0
|
|
442
452
|
[12.2.1]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@12.2.0...@metamask/permission-controller@12.2.1
|
|
443
453
|
[12.2.0]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@12.1.1...@metamask/permission-controller@12.2.0
|
|
444
454
|
[12.1.1]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@12.1.0...@metamask/permission-controller@12.1.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/permission-controller",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.3.0-preview-4f74a56",
|
|
4
4
|
"description": "Mediates access to JSON-RPC methods, used to interact with pieces of the MetaMask stack, via middleware for json-rpc-engine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@metamask/approval-controller": "^9.0.
|
|
52
|
-
"@metamask/base-controller": "^9.0.
|
|
51
|
+
"@metamask/approval-controller": "^9.0.1",
|
|
52
|
+
"@metamask/base-controller": "^9.0.1",
|
|
53
53
|
"@metamask/controller-utils": "^11.19.0",
|
|
54
|
-
"@metamask/json-rpc-engine": "^10.2.
|
|
55
|
-
"@metamask/messenger": "^0.
|
|
54
|
+
"@metamask/json-rpc-engine": "^10.2.4",
|
|
55
|
+
"@metamask/messenger": "^1.0.0",
|
|
56
56
|
"@metamask/rpc-errors": "^7.0.2",
|
|
57
57
|
"@metamask/utils": "^11.9.0",
|
|
58
58
|
"@types/deep-freeze-strict": "^1.1.0",
|