@metamask/polling-controller 16.0.3 → 16.0.4
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 +3 -4
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
|
+
## [16.0.4]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/base-controller` from `^9.0.0` to `^9.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
15
|
+
- Bump `@metamask/network-controller` from `^30.0.0` to `^30.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
16
|
+
|
|
10
17
|
## [16.0.3]
|
|
11
18
|
|
|
12
19
|
### Changed
|
|
@@ -306,7 +313,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
306
313
|
|
|
307
314
|
- Initial release
|
|
308
315
|
|
|
309
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@16.0.
|
|
316
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@16.0.4...HEAD
|
|
317
|
+
[16.0.4]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@16.0.3...@metamask/polling-controller@16.0.4
|
|
310
318
|
[16.0.3]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@16.0.2...@metamask/polling-controller@16.0.3
|
|
311
319
|
[16.0.2]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@16.0.1...@metamask/polling-controller@16.0.2
|
|
312
320
|
[16.0.1]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@16.0.0...@metamask/polling-controller@16.0.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/polling-controller",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.4",
|
|
4
4
|
"description": "Polling Controller is the base for controllers that polling by networkClientId",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
"build:docs": "typedoc",
|
|
41
41
|
"changelog:update": "../../scripts/update-changelog.sh @metamask/polling-controller",
|
|
42
42
|
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/polling-controller",
|
|
43
|
-
"publish:preview": "yarn npm publish --tag preview",
|
|
44
43
|
"since-latest-release": "../../scripts/since-latest-release.sh",
|
|
45
44
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
|
|
46
45
|
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
|
|
@@ -48,9 +47,9 @@
|
|
|
48
47
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
49
48
|
},
|
|
50
49
|
"dependencies": {
|
|
51
|
-
"@metamask/base-controller": "^9.0.
|
|
50
|
+
"@metamask/base-controller": "^9.0.1",
|
|
52
51
|
"@metamask/controller-utils": "^11.19.0",
|
|
53
|
-
"@metamask/network-controller": "^30.0.
|
|
52
|
+
"@metamask/network-controller": "^30.0.1",
|
|
54
53
|
"@metamask/utils": "^11.9.0",
|
|
55
54
|
"@types/uuid": "^8.3.0",
|
|
56
55
|
"fast-json-stable-stringify": "^2.1.0",
|