@metamask-previews/profile-metrics-controller 3.1.1-preview-55f73f6ce → 3.1.2-preview-4f74a56
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 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -7,9 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.1.2]
|
|
11
|
+
|
|
10
12
|
### Changed
|
|
11
13
|
|
|
12
|
-
- Bump `@metamask/
|
|
14
|
+
- Bump `@metamask/accounts-controller` from `^37.0.0` to `^37.1.0` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
15
|
+
- Bump `@metamask/base-controller` from `^9.0.0` to `^9.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
16
|
+
- Bump `@metamask/keyring-controller` from `^25.1.0` to `^25.1.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
17
|
+
- Bump `@metamask/messenger` from `^0.3.0` to `^1.0.0` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
18
|
+
- Bump `@metamask/polling-controller` from `^16.0.3` to `^16.0.4` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
19
|
+
- Bump `@metamask/profile-sync-controller` from `^28.0.0` to `^28.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
20
|
+
- Bump `@metamask/transaction-controller` from `^63.0.0` to `^63.3.1` ([#8272](https://github.com/MetaMask/core/pull/8272), [#8301](https://github.com/MetaMask/core/pull/8301), [#8313](https://github.com/MetaMask/core/pull/8313), [#8317](https://github.com/MetaMask/core/pull/8317))
|
|
13
21
|
|
|
14
22
|
## [3.1.1]
|
|
15
23
|
|
|
@@ -99,7 +107,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
99
107
|
|
|
100
108
|
- Initial release ([#7194](https://github.com/MetaMask/core/pull/7194), [#7196](https://github.com/MetaMask/core/pull/7196), [#7263](https://github.com/MetaMask/core/pull/7263))
|
|
101
109
|
|
|
102
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/profile-metrics-controller@3.1.
|
|
110
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/profile-metrics-controller@3.1.2...HEAD
|
|
111
|
+
[3.1.2]: https://github.com/MetaMask/core/compare/@metamask/profile-metrics-controller@3.1.1...@metamask/profile-metrics-controller@3.1.2
|
|
103
112
|
[3.1.1]: https://github.com/MetaMask/core/compare/@metamask/profile-metrics-controller@3.1.0...@metamask/profile-metrics-controller@3.1.1
|
|
104
113
|
[3.1.0]: https://github.com/MetaMask/core/compare/@metamask/profile-metrics-controller@3.0.4...@metamask/profile-metrics-controller@3.1.0
|
|
105
114
|
[3.0.4]: https://github.com/MetaMask/core/compare/@metamask/profile-metrics-controller@3.0.3...@metamask/profile-metrics-controller@3.0.4
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/profile-metrics-controller",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.2-preview-4f74a56",
|
|
4
4
|
"description": "Sample package to illustrate best practices for controllers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@metamask/accounts-controller": "^37.
|
|
52
|
-
"@metamask/base-controller": "^9.0.
|
|
51
|
+
"@metamask/accounts-controller": "^37.1.0",
|
|
52
|
+
"@metamask/base-controller": "^9.0.1",
|
|
53
53
|
"@metamask/controller-utils": "^11.19.0",
|
|
54
|
-
"@metamask/keyring-controller": "^25.1.
|
|
55
|
-
"@metamask/messenger": "^0.
|
|
56
|
-
"@metamask/polling-controller": "^16.0.
|
|
57
|
-
"@metamask/profile-sync-controller": "^28.0.
|
|
58
|
-
"@metamask/transaction-controller": "^63.
|
|
54
|
+
"@metamask/keyring-controller": "^25.1.1",
|
|
55
|
+
"@metamask/messenger": "^1.0.0",
|
|
56
|
+
"@metamask/polling-controller": "^16.0.4",
|
|
57
|
+
"@metamask/profile-sync-controller": "^28.0.1",
|
|
58
|
+
"@metamask/transaction-controller": "^63.3.1",
|
|
59
59
|
"@metamask/utils": "^11.9.0",
|
|
60
60
|
"async-mutex": "^0.5.0"
|
|
61
61
|
},
|