@metamask/controller-utils
Advanced tools
Comparing version 11.4.3 to 11.4.4
@@ -10,2 +10,16 @@ # Changelog | ||
## [11.4.4] | ||
### Fixed | ||
- Make implicit peer dependencies explicit ([#4974](https://github.com/MetaMask/core/pull/4974)) | ||
- Add the following packages as peer dependencies of this package to satisfy peer dependency requirements from other dependencies: | ||
- `@babel/runtime@^7.0.0` (required by `@metamask/ethjs-unit`) | ||
- These dependencies really should be present in projects that consume this package (e.g. MetaMask clients), and this change ensures that they now are. | ||
- 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. | ||
- 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)) | ||
- `bn.js` | ||
- `eth-ens-namehash` | ||
- `fast-deep-equal` | ||
## [11.4.3] | ||
@@ -428,3 +442,4 @@ | ||
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.3...HEAD | ||
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.4...HEAD | ||
[11.4.4]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.3...@metamask/controller-utils@11.4.4 | ||
[11.4.3]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.2...@metamask/controller-utils@11.4.3 | ||
@@ -431,0 +446,0 @@ [11.4.2]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.4.1...@metamask/controller-utils@11.4.2 |
{ | ||
"name": "@metamask/controller-utils", | ||
"version": "11.4.3", | ||
"version": "11.4.4", | ||
"description": "Data and convenience functions shared by multiple packages", | ||
@@ -62,2 +62,3 @@ "keywords": [ | ||
"devDependencies": { | ||
"@babel/runtime": "^7.23.9", | ||
"@metamask/auto-changelog": "^3.4.4", | ||
@@ -73,2 +74,5 @@ "@types/jest": "^27.4.1", | ||
}, | ||
"peerDependencies": { | ||
"@babel/runtime": "^7.0.0" | ||
}, | ||
"engines": { | ||
@@ -75,0 +79,0 @@ "node": "^18.18 || >=20" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
265496
11
10
1820