@metamask/gas-fee-controller 16.0.0 → 17.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.
- package/CHANGELOG.md +12 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [17.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
|
+
- Bump `@metamask/polling-controller` to `^8.0.0` ([#4352](https://github.com/MetaMask/core/pull/4352))
|
|
19
|
+
|
|
10
20
|
## [16.0.0]
|
|
11
21
|
|
|
12
22
|
### Changed
|
|
@@ -283,7 +293,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
283
293
|
|
|
284
294
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
285
295
|
|
|
286
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@
|
|
296
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@17.0.0...HEAD
|
|
297
|
+
[17.0.0]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@16.0.0...@metamask/gas-fee-controller@17.0.0
|
|
287
298
|
[16.0.0]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@15.1.2...@metamask/gas-fee-controller@16.0.0
|
|
288
299
|
[15.1.2]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@15.1.1...@metamask/gas-fee-controller@15.1.2
|
|
289
300
|
[15.1.1]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@15.1.0...@metamask/gas-fee-controller@15.1.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/gas-fee-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"description": "Periodically calculates gas fee estimates based on various gas limits as well as other data displayed on transaction confirm screens",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"test:watch": "jest --watch"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@metamask/base-controller": "^
|
|
45
|
-
"@metamask/controller-utils": "^
|
|
44
|
+
"@metamask/base-controller": "^6.0.0",
|
|
45
|
+
"@metamask/controller-utils": "^11.0.0",
|
|
46
46
|
"@metamask/eth-query": "^4.0.0",
|
|
47
47
|
"@metamask/ethjs-unit": "^0.3.0",
|
|
48
|
-
"@metamask/network-controller": "^
|
|
49
|
-
"@metamask/polling-controller": "^
|
|
48
|
+
"@metamask/network-controller": "^19.0.0",
|
|
49
|
+
"@metamask/polling-controller": "^8.0.0",
|
|
50
50
|
"@metamask/utils": "^8.3.0",
|
|
51
51
|
"@types/bn.js": "^5.1.5",
|
|
52
52
|
"@types/uuid": "^8.3.0",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"typescript": "~4.9.5"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"@metamask/network-controller": "^
|
|
70
|
+
"@metamask/network-controller": "^19.0.0"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
|
-
"node": ">=
|
|
73
|
+
"node": "^18.18 || >=20"
|
|
74
74
|
},
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public",
|