chore: bump @metamask/utils from ^11.12.0 to ^12.0.0 - #10127
Closed
cryptodev-2s wants to merge 2 commits into
Closed
chore: bump @metamask/utils from ^11.12.0 to ^12.0.0#10127cryptodev-2s wants to merge 2 commits into
cryptodev-2s wants to merge 2 commits into
Conversation
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
cryptodev-2s
marked this pull request as ready for review
September 7, 2026 14:33
Mrtenz
force-pushed
the
mrtenz/es2022
branch
8 times, most recently
from
September 9, 2026 17:51
67282e1 to
84b746b
Compare
cryptodev-2s
force-pushed
the
chore/bump-utils-v12
branch
from
September 9, 2026 18:32
a4fb244 to
d7cb71f
Compare
cryptodev-2s
marked this pull request as draft
September 9, 2026 18:32
cryptodev-2s
force-pushed
the
chore/bump-utils-v12
branch
4 times, most recently
from
September 10, 2026 17:13
25db44e to
c4e64bb
Compare
cryptodev-2s
marked this pull request as ready for review
September 10, 2026 17:13
cryptodev-2s
temporarily deployed
to
default-branch
September 10, 2026 17:13 — with
GitHub Actions
Inactive
cryptodev-2s
force-pushed
the
chore/bump-utils-v12
branch
from
September 10, 2026 17:18
c4e64bb to
452a6e2
Compare
cryptodev-2s
force-pushed
the
chore/bump-utils-v12
branch
from
September 10, 2026 17:24
452a6e2 to
76d8b1b
Compare
cryptodev-2s
commented
Sep 10, 2026
| '<rootDir>/../json-rpc-engine/src/v2/index.ts', | ||
| ], | ||
| '^@metamask/utils/node$': require.resolve('@metamask/utils/node'), | ||
| '^@metamask/utils$': require.resolve('@metamask/utils'), |
Contributor
Author
There was a problem hiding this comment.
@metamask/utils is ESM only and declares no main, so the directory fallback below cannot find an entry point for it. Resolve it through its exports map instead, as we already do for the /node subpath above.
I will remove this once the package lives in this repo and the source path wins
Contributor
Author
|
@metamaskbot update-changelogs |
|
✅ Changelogs updated and pushed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Explanation
References
Checklist
Note
Medium Risk
A major-version bump on a shared utility used throughout core packages can introduce breaking API or typing changes at runtime and compile time, even though this PR only updates versions and test resolution.
Overview
This PR upgrades
@metamask/utilsfrom^11.12.0to^12.0.0across the monorepo root and essentially every package that depends on it, with matching Unreleased changelog notes pointing at #10127.The only non-version change is in
jest.config.packages.cjs: a dedicatedmoduleNameMapperentry for@metamask/utils(alongside the existing@metamask/utils/nodemapping) so Jest resolves the published package instead of treating it like an in-repo@metamask/*source path. There are no application or controller source edits in the diff—only dependency pins and release notes.Reviewed by Cursor Bugbot for commit 2b8ba47. Bugbot is set up for automated code reviews on this repo. Configure here.