@metamask/accounts-controller 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -1
  2. package/package.json +8 -7
package/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [2.0.2]
10
+ ### Changed
11
+ - Bump dependency on `@metamask/utils` to ^8.1.0 ([#1639](https://github.com/MetaMask/core/pull/1639))
12
+ - Bump dependency on `@metamask/base-controller` to ^3.2.3
13
+ - Bump peer dependency on `@metamask/keyring-controller` to ^8.0.2
14
+
9
15
  ## [2.0.1]
10
16
  ### Changed
11
17
  - Update TypeScript to v4.8.x ([#1718](https://github.com/MetaMask/core/pull/1718))
@@ -21,7 +27,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
27
  ### Added
22
28
  - Initial release ([#1637](https://github.com/MetaMask/core/pull/1637))
23
29
 
24
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@2.0.1...HEAD
30
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@2.0.2...HEAD
31
+ [2.0.2]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@2.0.1...@metamask/accounts-controller@2.0.2
25
32
  [2.0.1]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@2.0.0...@metamask/accounts-controller@2.0.1
26
33
  [2.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@1.0.0...@metamask/accounts-controller@2.0.0
27
34
  [1.0.0]: https://github.com/MetaMask/core/releases/tag/@metamask/accounts-controller@1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/accounts-controller",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Manages internal accounts",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -25,14 +25,15 @@
25
25
  "changelog:validate": "../../scripts/validate-changelog.sh @metamask/accounts-controller",
26
26
  "publish:preview": "yarn npm publish --tag preview",
27
27
  "test": "jest",
28
+ "test:clean": "jest --clearCache",
28
29
  "test:watch": "jest --watch"
29
30
  },
30
31
  "dependencies": {
31
- "@metamask/base-controller": "^3.2.2",
32
+ "@metamask/base-controller": "^3.2.3",
32
33
  "@metamask/eth-snap-keyring": "^0.2.2",
33
34
  "@metamask/keyring-api": "^0.2.5",
34
35
  "@metamask/snaps-utils": "^1.0.1",
35
- "@metamask/utils": "^6.2.0",
36
+ "@metamask/utils": "^8.1.0",
36
37
  "deepmerge": "^4.2.2",
37
38
  "eth-rpc-errors": "^4.0.2",
38
39
  "ethereumjs-util": "^7.0.10",
@@ -42,18 +43,18 @@
42
43
  },
43
44
  "devDependencies": {
44
45
  "@metamask/auto-changelog": "^3.1.0",
45
- "@metamask/keyring-controller": "^8.0.1",
46
+ "@metamask/keyring-controller": "^8.0.2",
46
47
  "@metamask/snaps-controllers": "^1.0.1",
47
48
  "@types/jest": "^27.4.1",
48
49
  "@types/readable-stream": "^2.3.0",
49
50
  "jest": "^27.5.1",
50
51
  "ts-jest": "^27.1.4",
51
- "typedoc": "^0.23.15",
52
- "typedoc-plugin-missing-exports": "^0.23.0",
52
+ "typedoc": "^0.24.8",
53
+ "typedoc-plugin-missing-exports": "^2.0.0",
53
54
  "typescript": "~4.8.4"
54
55
  },
55
56
  "peerDependencies": {
56
- "@metamask/keyring-controller": "^8.0.1"
57
+ "@metamask/keyring-controller": "^8.0.2"
57
58
  },
58
59
  "engines": {
59
60
  "node": ">=16.0.0"