@metamask-previews/gas-fee-controller 25.0.0-preview-4cd9da8d → 26.0.0-preview-e3eb8eca
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 +14 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [26.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/polling-controller` from `^15.0.0` to `^16.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
15
|
+
- Bump `@metamask/controller-utils` from `^11.15.0` to `^11.16.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
16
|
+
- **BREAKING:** Bump `@metamask/network-controller` from `^25.0.0` to `^26.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Ensure `networksMetadata` never references old network client IDs ([#7047](https://github.com/MetaMask/core/pull/7047))
|
|
21
|
+
|
|
10
22
|
## [25.0.0]
|
|
11
23
|
|
|
12
24
|
### Added
|
|
@@ -455,7 +467,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
455
467
|
|
|
456
468
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
457
469
|
|
|
458
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@
|
|
470
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@26.0.0...HEAD
|
|
471
|
+
[26.0.0]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@25.0.0...@metamask/gas-fee-controller@26.0.0
|
|
459
472
|
[25.0.0]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@24.1.1...@metamask/gas-fee-controller@25.0.0
|
|
460
473
|
[24.1.1]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@24.1.0...@metamask/gas-fee-controller@24.1.1
|
|
461
474
|
[24.1.0]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@24.0.0...@metamask/gas-fee-controller@24.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/gas-fee-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "26.0.0-preview-e3eb8eca",
|
|
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",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@metamask/base-controller": "^9.0.0",
|
|
52
|
-
"@metamask/controller-utils": "^11.
|
|
52
|
+
"@metamask/controller-utils": "^11.16.0",
|
|
53
53
|
"@metamask/eth-query": "^4.0.0",
|
|
54
54
|
"@metamask/ethjs-unit": "^0.3.0",
|
|
55
|
-
"@metamask/polling-controller": "^
|
|
55
|
+
"@metamask/polling-controller": "^16.0.0",
|
|
56
56
|
"@metamask/utils": "^11.8.1",
|
|
57
57
|
"@types/bn.js": "^5.1.5",
|
|
58
58
|
"@types/uuid": "^8.3.0",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@babel/runtime": "^7.23.9",
|
|
64
64
|
"@metamask/auto-changelog": "^3.4.4",
|
|
65
|
-
"@metamask/network-controller": "^
|
|
65
|
+
"@metamask/network-controller": "^26.0.0",
|
|
66
66
|
"@ts-bridge/cli": "^0.6.4",
|
|
67
67
|
"@types/jest": "^27.4.1",
|
|
68
68
|
"@types/jest-when": "^2.7.3",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"@babel/runtime": "^7.0.0",
|
|
81
|
-
"@metamask/network-controller": "^
|
|
81
|
+
"@metamask/network-controller": "^26.0.0"
|
|
82
82
|
},
|
|
83
83
|
"engines": {
|
|
84
84
|
"node": "^18.18 || >=20"
|