@metamask-previews/preferences-controller 4.4.1-preview.1b84247 → 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.
- package/CHANGELOG.md +6 -1
- package/package.json +7 -6
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
|
+
## [4.4.2]
|
|
10
|
+
### Changed
|
|
11
|
+
- Update TypeScript to v4.8.x ([#1718](https://github.com/MetaMask/core/pull/1718))
|
|
12
|
+
|
|
9
13
|
## [4.4.1]
|
|
10
14
|
### Changed
|
|
11
15
|
- Bump dependency on `@metamask/controller-utils` to ^5.0.0
|
|
@@ -67,7 +71,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
67
71
|
|
|
68
72
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
69
73
|
|
|
70
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.4.
|
|
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
|
|
71
76
|
[4.4.1]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.4.0...@metamask/preferences-controller@4.4.1
|
|
72
77
|
[4.4.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.3.0...@metamask/preferences-controller@4.4.0
|
|
73
78
|
[4.3.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.2.0...@metamask/preferences-controller@4.3.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/preferences-controller",
|
|
3
|
-
"version": "4.4.
|
|
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.
|
|
32
|
-
"@metamask/controller-utils": "^5.0.
|
|
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.
|
|
41
|
-
"typedoc-plugin-missing-exports": "^0.
|
|
42
|
-
"typescript": "~4.
|
|
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"
|