@metamask/permission-controller 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -1
  2. package/package.json +7 -4
package/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.0.2]
10
+ ### Fixed
11
+ - This package will now warn if a required package is not present ([#1003](https://github.com/MetaMask/controllers/pull/1003))
12
+
13
+ ## [1.0.1]
14
+ ### Changed
15
+ - Relax dependencies on `@metamask/approval-controller`, `@metamask/base-controller` and `@metamask/controller-utils` (use `^` instead of `~`) ([#998](https://github.com/MetaMask/controllers/pull/998))
16
+
9
17
  ## [1.0.0]
10
18
  ### Added
11
19
  - Initial release
@@ -14,5 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
22
 
15
23
  All changes listed after this point were applied to this package following the monorepo conversion.
16
24
 
17
- [Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/permission-controller@1.0.0...HEAD
25
+ [Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/permission-controller@1.0.2...HEAD
26
+ [1.0.2]: https://github.com/MetaMask/controllers/compare/@metamask/permission-controller@1.0.1...@metamask/permission-controller@1.0.2
27
+ [1.0.1]: https://github.com/MetaMask/controllers/compare/@metamask/permission-controller@1.0.0...@metamask/permission-controller@1.0.1
18
28
  [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.0",
3
+ "version": "1.0.2",
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": "~1.0.0",
33
- "@metamask/base-controller": "~1.0.0",
34
- "@metamask/controller-utils": "~1.0.0",
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",
@@ -50,6 +50,9 @@
50
50
  "typedoc-plugin-missing-exports": "^0.22.6",
51
51
  "typescript": "~4.6.3"
52
52
  },
53
+ "peerDependencies": {
54
+ "@metamask/approval-controller": "^1.0.1"
55
+ },
53
56
  "engines": {
54
57
  "node": ">=14.0.0"
55
58
  },