@metamask-previews/sample-controllers 4.0.2-preview-511b467 → 4.0.3-preview-a891ec3b5
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 +9 -1
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [4.0.3]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/network-controller` from `^29.0.0` to `^30.0.0` ([#7996](https://github.com/MetaMask/core/pull/7996))
|
|
15
|
+
- Bump `@metamask/controller-utils` from `^11.18.0` to `^11.19.0` ([#7995](https://github.com/MetaMask/core/pull/7995))
|
|
16
|
+
|
|
10
17
|
## [4.0.2]
|
|
11
18
|
|
|
12
19
|
### Changed
|
|
@@ -98,7 +105,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
98
105
|
|
|
99
106
|
- Initial release of @metamask/sample-controllers.
|
|
100
107
|
|
|
101
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/sample-controllers@4.0.
|
|
108
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/sample-controllers@4.0.3...HEAD
|
|
109
|
+
[4.0.3]: https://github.com/MetaMask/core/compare/@metamask/sample-controllers@4.0.2...@metamask/sample-controllers@4.0.3
|
|
102
110
|
[4.0.2]: https://github.com/MetaMask/core/compare/@metamask/sample-controllers@4.0.1...@metamask/sample-controllers@4.0.2
|
|
103
111
|
[4.0.1]: https://github.com/MetaMask/core/compare/@metamask/sample-controllers@4.0.0...@metamask/sample-controllers@4.0.1
|
|
104
112
|
[4.0.0]: https://github.com/MetaMask/core/compare/@metamask/sample-controllers@3.0.0...@metamask/sample-controllers@4.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/sample-controllers",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3-preview-a891ec3b5",
|
|
4
4
|
"description": "Sample package to illustrate best practices for controllers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"build:docs": "typedoc",
|
|
41
41
|
"changelog:update": "../../scripts/update-changelog.sh @metamask/sample-controllers",
|
|
42
42
|
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/sample-controllers",
|
|
43
|
+
"generate-method-action-types": "tsx ../../scripts/generate-method-action-types.ts",
|
|
43
44
|
"publish:preview": "yarn npm publish --tag preview",
|
|
44
45
|
"since-latest-release": "../../scripts/since-latest-release.sh",
|
|
45
46
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
|
|
@@ -50,18 +51,19 @@
|
|
|
50
51
|
"dependencies": {
|
|
51
52
|
"@metamask/base-controller": "^9.0.0",
|
|
52
53
|
"@metamask/messenger": "^0.3.0",
|
|
53
|
-
"@metamask/network-controller": "^
|
|
54
|
+
"@metamask/network-controller": "^30.0.0",
|
|
54
55
|
"@metamask/utils": "^11.9.0"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
58
|
"@metamask/auto-changelog": "^3.4.4",
|
|
58
|
-
"@metamask/controller-utils": "^11.
|
|
59
|
+
"@metamask/controller-utils": "^11.19.0",
|
|
59
60
|
"@ts-bridge/cli": "^0.6.4",
|
|
60
61
|
"@types/jest": "^29.5.14",
|
|
61
62
|
"deepmerge": "^4.2.2",
|
|
62
63
|
"jest": "^29.7.0",
|
|
63
64
|
"nock": "^13.3.1",
|
|
64
65
|
"ts-jest": "^29.2.5",
|
|
66
|
+
"tsx": "^4.20.5",
|
|
65
67
|
"typedoc": "^0.25.13",
|
|
66
68
|
"typedoc-plugin-missing-exports": "^2.0.0",
|
|
67
69
|
"typescript": "~5.3.3"
|