@metamask-previews/gas-fee-controller 22.0.1-preview-31564566 → 22.0.2-preview-977dd3f9
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 +4 -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
|
+
## [22.0.2]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/controller-utils` from `^11.4.3` to `^11.4.4` ([#5012](https://github.com/MetaMask/core/pull/5012))
|
|
15
|
+
- Bump `@metamask/polling-controller` from `^12.0.1` to `^12.0.2` ([#5012](https://github.com/MetaMask/core/pull/5012))
|
|
16
|
+
|
|
10
17
|
### Fixed
|
|
11
18
|
|
|
12
19
|
- Make implicit peer dependencies explicit ([#4974](https://github.com/MetaMask/core/pull/4974))
|
|
@@ -14,6 +21,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
21
|
- `@babel/runtime@^7.0.0` (required by `@metamask/ethjs-unit`)
|
|
15
22
|
- These dependencies really should be present in projects that consume this package (e.g. MetaMask clients), and this change ensures that they now are.
|
|
16
23
|
- Furthermore, we are assuming that clients already use these dependencies, since otherwise it would be impossible to consume this package in its entirety or even create a working build. Hence, the addition of these peer dependencies is really a formality and should not be breaking.
|
|
24
|
+
- Correct ESM-compatible build so that imports of the following packages that re-export other modules via `export *` are no longer corrupted: ([#5011](https://github.com/MetaMask/core/pull/5011))
|
|
25
|
+
- `@metamask/eth-query`
|
|
26
|
+
- `bn.js`
|
|
17
27
|
|
|
18
28
|
## [22.0.1]
|
|
19
29
|
|
|
@@ -383,7 +393,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
383
393
|
|
|
384
394
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
385
395
|
|
|
386
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@22.0.
|
|
396
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@22.0.2...HEAD
|
|
397
|
+
[22.0.2]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@22.0.1...@metamask/gas-fee-controller@22.0.2
|
|
387
398
|
[22.0.1]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@22.0.0...@metamask/gas-fee-controller@22.0.1
|
|
388
399
|
[22.0.0]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@21.0.0...@metamask/gas-fee-controller@22.0.0
|
|
389
400
|
[21.0.0]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@20.0.1...@metamask/gas-fee-controller@21.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/gas-fee-controller",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.2-preview-977dd3f9",
|
|
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",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@metamask/base-controller": "^7.0.2",
|
|
51
|
-
"@metamask/controller-utils": "^11.4.
|
|
51
|
+
"@metamask/controller-utils": "^11.4.4",
|
|
52
52
|
"@metamask/eth-query": "^4.0.0",
|
|
53
53
|
"@metamask/ethjs-unit": "^0.3.0",
|
|
54
|
-
"@metamask/polling-controller": "^12.0.
|
|
54
|
+
"@metamask/polling-controller": "^12.0.2",
|
|
55
55
|
"@metamask/utils": "^10.0.0",
|
|
56
56
|
"@types/bn.js": "^5.1.5",
|
|
57
57
|
"@types/uuid": "^8.3.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@babel/runtime": "^7.23.9",
|
|
63
63
|
"@metamask/auto-changelog": "^3.4.4",
|
|
64
|
-
"@metamask/network-controller": "^22.0
|
|
64
|
+
"@metamask/network-controller": "^22.1.0",
|
|
65
65
|
"@types/jest": "^27.4.1",
|
|
66
66
|
"@types/jest-when": "^2.7.3",
|
|
67
67
|
"deepmerge": "^4.2.2",
|