@metamask/permission-controller 2.0.0 → 3.0.0
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 +5 -5
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
|
+
## [3.0.0]
|
|
10
|
+
### Removed
|
|
11
|
+
- **BREAKING:** Remove `isomorphic-fetch` ([#1106](https://github.com/MetaMask/controllers/pull/1106))
|
|
12
|
+
- Consumers must now import `isomorphic-fetch` or another polyfill themselves if they are running in an environment without `fetch`
|
|
13
|
+
|
|
9
14
|
## [2.0.0]
|
|
10
15
|
### Added
|
|
11
16
|
- Add `updateCaveat` action ([#1071](https://github.com/MetaMask/core/pull/1071))
|
|
@@ -31,7 +36,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
31
36
|
|
|
32
37
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
33
38
|
|
|
34
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@
|
|
39
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@3.0.0...HEAD
|
|
40
|
+
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@2.0.0...@metamask/permission-controller@3.0.0
|
|
35
41
|
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@1.0.2...@metamask/permission-controller@2.0.0
|
|
36
42
|
[1.0.2]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@1.0.1...@metamask/permission-controller@1.0.2
|
|
37
43
|
[1.0.1]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@1.0.0...@metamask/permission-controller@1.0.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/permission-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
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",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@metamask/approval-controller": "^
|
|
33
|
-
"@metamask/base-controller": "^
|
|
34
|
-
"@metamask/controller-utils": "^
|
|
32
|
+
"@metamask/approval-controller": "^2.0.0",
|
|
33
|
+
"@metamask/base-controller": "^2.0.0",
|
|
34
|
+
"@metamask/controller-utils": "^3.0.0",
|
|
35
35
|
"@metamask/types": "^1.1.0",
|
|
36
36
|
"@types/deep-freeze-strict": "^1.1.0",
|
|
37
37
|
"deep-freeze-strict": "^1.1.1",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"typescript": "~4.6.3"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@metamask/approval-controller": "^
|
|
54
|
+
"@metamask/approval-controller": "^2.0.0"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=14.0.0"
|