@metamask/polling-controller 7.0.0 → 8.0.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -1
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [8.0.0]
11
+
12
+ ### Changed
13
+
14
+ - **BREAKING:** Bump minimum Node version to 18.18 ([#3611](https://github.com/MetaMask/core/pull/3611))
15
+ - **BREAKING:** Bump dependency and peer dependency `@metamask/network-controller` to `^19.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
16
+ - Bump `@metamask/base-controller` to `^6.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
17
+ - Bump `@metamask/controller-utils` to `^11.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
18
+
10
19
  ## [7.0.0]
11
20
 
12
21
  ### Changed
@@ -134,7 +143,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
134
143
 
135
144
  - Initial release
136
145
 
137
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@7.0.0...HEAD
146
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@8.0.0...HEAD
147
+ [8.0.0]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@7.0.0...@metamask/polling-controller@8.0.0
138
148
  [7.0.0]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@6.0.2...@metamask/polling-controller@7.0.0
139
149
  [6.0.2]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@6.0.1...@metamask/polling-controller@6.0.2
140
150
  [6.0.1]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@6.0.0...@metamask/polling-controller@6.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/polling-controller",
3
- "version": "7.0.0",
3
+ "version": "8.0.0",
4
4
  "description": "Polling Controller is the base for controllers that polling by networkClientId",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -41,9 +41,9 @@
41
41
  "test:watch": "jest --watch"
42
42
  },
43
43
  "dependencies": {
44
- "@metamask/base-controller": "^5.0.2",
45
- "@metamask/controller-utils": "^10.0.0",
46
- "@metamask/network-controller": "^18.1.3",
44
+ "@metamask/base-controller": "^6.0.0",
45
+ "@metamask/controller-utils": "^11.0.0",
46
+ "@metamask/network-controller": "^19.0.0",
47
47
  "@metamask/utils": "^8.3.0",
48
48
  "@types/uuid": "^8.3.0",
49
49
  "fast-json-stable-stringify": "^2.1.0",
@@ -61,10 +61,10 @@
61
61
  "typescript": "~4.9.5"
62
62
  },
63
63
  "peerDependencies": {
64
- "@metamask/network-controller": "^18.1.3"
64
+ "@metamask/network-controller": "^19.0.0"
65
65
  },
66
66
  "engines": {
67
- "node": ">=16.0.0"
67
+ "node": "^18.18 || >=20"
68
68
  },
69
69
  "publishConfig": {
70
70
  "access": "public",