@metamask-previews/preferences-controller 4.3.0-preview.3dbf14f → 4.4.0-preview.04c2e62
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 +11 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [4.4.0]
|
|
10
|
+
### Added
|
|
11
|
+
- Add `isIpfsGatewayEnabled` property to PreferencesController state ([#1577](https://github.com/MetaMask/core/pull/1577))
|
|
12
|
+
- Add `setIsIpfsGatewayEnabled` to set `isIpfsGatewayEnabled` ([#1577](https://github.com/MetaMask/core/pull/1577))
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Bump dependency on `@metamask/base-controller` to ^3.2.1
|
|
16
|
+
- Bump dependency on `@metamask/controller-utils` to ^4.3.2
|
|
17
|
+
|
|
9
18
|
## [4.3.0]
|
|
10
19
|
### Added
|
|
11
20
|
- Add preference for security alerts ([#1589](https://github.com/MetaMask/core/pull/1589))
|
|
@@ -54,7 +63,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
54
63
|
|
|
55
64
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
56
65
|
|
|
57
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.
|
|
66
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.4.0...HEAD
|
|
67
|
+
[4.4.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.3.0...@metamask/preferences-controller@4.4.0
|
|
58
68
|
[4.3.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.2.0...@metamask/preferences-controller@4.3.0
|
|
59
69
|
[4.2.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.1.0...@metamask/preferences-controller@4.2.0
|
|
60
70
|
[4.1.0]: https://github.com/MetaMask/core/compare/@metamask/preferences-controller@4.0.0...@metamask/preferences-controller@4.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/preferences-controller",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0-preview.04c2e62",
|
|
4
4
|
"description": "Manages user-configurable settings for MetaMask",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"test:watch": "jest --watch"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@metamask
|
|
32
|
-
"@metamask
|
|
31
|
+
"@metamask/base-controller": "^3.2.1",
|
|
32
|
+
"@metamask/controller-utils": "^4.3.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@metamask/auto-changelog": "^3.1.0",
|