@metamask-previews/preferences-controller 4.4.0-preview.f71e42f → 4.4.2-preview.ce06456

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 +12 -2
  2. package/package.json +7 -6
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
+ ## [4.4.2]
10
+ ### Changed
11
+ - Update TypeScript to v4.8.x ([#1718](https://github.com/MetaMask/core/pull/1718))
12
+
13
+ ## [4.4.1]
14
+ ### Changed
15
+ - Bump dependency on `@metamask/controller-utils` to ^5.0.0
16
+
9
17
  ## [4.4.0]
10
18
  ### Added
11
19
  - Add `isIpfsGatewayEnabled` property to PreferencesController state ([#1577](https://github.com/MetaMask/core/pull/1577))
@@ -48,7 +56,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
48
56
  ## [1.0.2]
49
57
  ### Changed
50
58
  - Rename this repository to `core` ([#1031](https://github.com/MetaMask/controllers/pull/1031))
51
- - Update `@metamask/controller-utils` package ([#1041](https://github.com/MetaMask/controllers/pull/1041))
59
+ - Update `@metamask/controller-utils` package ([#1041](https://github.com/MetaMask/controllers/pull/1041))
52
60
 
53
61
  ## [1.0.1]
54
62
  ### Changed
@@ -63,7 +71,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
63
71
 
64
72
  All changes listed after this point were applied to this package following the monorepo conversion.
65
73
 
66
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.4.0...HEAD
74
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.4.2...HEAD
75
+ [4.4.2]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.4.1...@metamask/preferences-controller@4.4.2
76
+ [4.4.1]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.4.0...@metamask/preferences-controller@4.4.1
67
77
  [4.4.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.3.0...@metamask/preferences-controller@4.4.0
68
78
  [4.3.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.2.0...@metamask/preferences-controller@4.3.0
69
79
  [4.2.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.1.0...@metamask/preferences-controller@4.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/preferences-controller",
3
- "version": "4.4.0-preview.f71e42f",
3
+ "version": "4.4.2-preview.ce06456",
4
4
  "description": "Manages user-configurable settings for MetaMask",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -25,11 +25,12 @@
25
25
  "changelog:validate": "../../scripts/validate-changelog.sh @metamask/preferences-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.1",
32
- "@metamask/controller-utils": "^4.3.2"
32
+ "@metamask/base-controller": "^3.2.3",
33
+ "@metamask/controller-utils": "^5.0.2"
33
34
  },
34
35
  "devDependencies": {
35
36
  "@metamask/auto-changelog": "^3.1.0",
@@ -37,9 +38,9 @@
37
38
  "deepmerge": "^4.2.2",
38
39
  "jest": "^27.5.1",
39
40
  "ts-jest": "^27.1.4",
40
- "typedoc": "^0.22.15",
41
- "typedoc-plugin-missing-exports": "^0.22.6",
42
- "typescript": "~4.6.3"
41
+ "typedoc": "^0.24.8",
42
+ "typedoc-plugin-missing-exports": "^2.0.0",
43
+ "typescript": "~4.8.4"
43
44
  },
44
45
  "engines": {
45
46
  "node": ">=16.0.0"