@metamask/permission-controller 1.0.0 → 1.0.1
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 +6 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.0.1]
|
|
10
|
+
### Changed
|
|
11
|
+
- Relax dependencies on `@metamask/approval-controller`, `@metamask/base-controller` and `@metamask/controller-utils` (use `^` instead of `~`) ([#998](https://github.com/MetaMask/controllers/pull/998))
|
|
12
|
+
|
|
9
13
|
## [1.0.0]
|
|
10
14
|
### Added
|
|
11
15
|
- Initial release
|
|
@@ -14,5 +18,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
18
|
|
|
15
19
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
16
20
|
|
|
17
|
-
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/permission-controller@1.0.
|
|
21
|
+
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/permission-controller@1.0.1...HEAD
|
|
22
|
+
[1.0.1]: https://github.com/MetaMask/controllers/compare/@metamask/permission-controller@1.0.0...@metamask/permission-controller@1.0.1
|
|
18
23
|
[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/permission-controller@1.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/permission-controller",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
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": "^1.0.1",
|
|
33
|
+
"@metamask/base-controller": "^1.1.1",
|
|
34
|
+
"@metamask/controller-utils": "^1.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",
|