@metamask-previews/controller-utils 11.4.3-preview-57e6ab5d → 11.4.4-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 +8 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [11.4.4]
|
|
11
|
+
|
|
10
12
|
### Fixed
|
|
11
13
|
|
|
12
14
|
- Make implicit peer dependencies explicit ([#4974](https://github.com/MetaMask/core/pull/4974))
|
|
@@ -14,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
16
|
- `@babel/runtime@^7.0.0` (required by `@metamask/ethjs-unit`)
|
|
15
17
|
- 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
18
|
- 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.
|
|
19
|
+
- 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))
|
|
20
|
+
- `bn.js`
|
|
21
|
+
- `eth-ens-namehash`
|
|
22
|
+
- `fast-deep-equal`
|
|
17
23
|
|
|
18
24
|
## [11.4.3]
|
|
19
25
|
|
|
@@ -432,7 +438,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
432
438
|
|
|
433
439
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
434
440
|
|
|
435
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.
|
|
441
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.4...HEAD
|
|
442
|
+
[11.4.4]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.3...@metamask/controller-utils@11.4.4
|
|
436
443
|
[11.4.3]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.2...@metamask/controller-utils@11.4.3
|
|
437
444
|
[11.4.2]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.1...@metamask/controller-utils@11.4.2
|
|
438
445
|
[11.4.1]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.0...@metamask/controller-utils@11.4.1
|
package/package.json
CHANGED