Skip to content

Release/1169.0.0 - #9758

Merged
OGPoyraz merged 22 commits into
mainfrom
release/1169.0.0
Aug 3, 2026
Merged

Release/1169.0.0#9758
OGPoyraz merged 22 commits into
mainfrom
release/1169.0.0

Conversation

@OGPoyraz

@OGPoyraz OGPoyraz commented Aug 3, 2026

Copy link
Copy Markdown
Member

Explanation

Release 1169.0.0 with version bumps for:

  • @metamask/eth-json-rpc-middleware 23.1.324.0.0 (major)
  • @metamask/network-controller 35.0.035.0.1 (patch)

@metamask/eth-json-rpc-middleware@24.0.0

Breaking: Add strict validation for eth_sendTransaction and eth_signTransaction params (#9482)

  • Reject requests whose params do not match the transaction schema (extraneous top-level keys, ill-typed fields such as non-hex to/data, malformed accessList / authorizationList entries) or exceed MAX_TRANSACTION_PARAMS_SIZE_BYTES when serialized
  • Prevents downstream normalization / PPOM WASM from crashing on deeply-nested junk fields or padded payloads and silently bypassing security scans

Other changes:

  • Bump @metamask/utils from ^11.9.0 to ^11.11.0 (#9074)
  • Bump @metamask/json-rpc-engine from ^10.2.4 to ^10.5.0 (#8661, #8746, #8753)
  • Bump @metamask/message-manager from ^14.1.1 to ^14.1.2 (#8755)
  • Drop pify dependency, which was no longer used in source (#9064)

@metamask/network-controller@35.0.1

  • Bump @metamask/eth-json-rpc-middleware from ^23.1.3 to ^24.0.0 (#9758)

References

  • #9482 — feat: validate eth_sendTransaction / eth_signTransaction params

Checklist

  • I've updated the test suite for new or updated code as appropriate
  • I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate
  • I've communicated my changes to consumers by updating changelogs for packages I've changed
  • I've introduced breaking changes in this PR and have prepared draft pull requests for clients and consumer packages to resolve them

Note

Medium Risk
The release propagates a major middleware bump that rejects previously accepted malformed transaction RPC params; integrators on strict validation paths should expect possible breakage for non-conformant dapps, though this PR itself only changes versions and docs.

Overview
This PR cuts monorepo release 1169.0.0 by versioning packages and aligning dependents—no application source changes beyond manifests and changelogs.

@metamask/eth-json-rpc-middleware@24.0.0 is published with changelog release notes for the existing breaking strict validation on eth_sendTransaction / eth_signTransaction (schema, size limits, rejection of malformed or oversized params).

@metamask/network-controller@35.0.1 bumps its dependency on that middleware from ^23.1.3 to ^24.0.0. Root and many workspace packages update @metamask/network-controller to ^35.0.1, with matching Unreleased changelog lines and yarn.lock resolution updates.

Reviewed by Cursor Bugbot for commit 455c03b. Bugbot is set up for automated code reviews on this repo. Configure here.

@OGPoyraz
OGPoyraz requested review from a team as code owners August 3, 2026 11:19
Comment thread packages/network-controller/CHANGELOG.md Outdated
@metamask-ci

This comment has been minimized.

Comment thread packages/network-controller/CHANGELOG.md Outdated

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 3117973. Configure here.

Comment thread packages/network-controller/package.json
@OGPoyraz

OGPoyraz commented Aug 3, 2026

Copy link
Copy Markdown
Member Author

@metamaskbot update-changelogs

@metamask-ci

metamask-ci Bot commented Aug 3, 2026

Copy link
Copy Markdown

✅ Changelogs updated and pushed.

@OGPoyraz
OGPoyraz enabled auto-merge August 3, 2026 11:51
@OGPoyraz
OGPoyraz requested a review from cryptodev-2s August 3, 2026 11:51

@cryptodev-2s cryptodev-2s left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry some last suggestions

Comment thread packages/assets-controller/CHANGELOG.md Outdated
Comment thread packages/assets-controllers/CHANGELOG.md Outdated
Comment thread packages/bridge-controller/CHANGELOG.md Outdated
Comment thread packages/bridge-status-controller/CHANGELOG.md Outdated
Comment thread packages/ens-controller/CHANGELOG.md Outdated
Comment thread packages/network-connection-banner-controller/CHANGELOG.md Outdated
Comment thread packages/polling-controller/CHANGELOG.md Outdated
Comment thread packages/sample-controllers/CHANGELOG.md Outdated
Comment thread packages/selected-network-controller/CHANGELOG.md Outdated
Comment thread packages/smart-transactions-controller/CHANGELOG.md Outdated
OGPoyraz and others added 15 commits August 3, 2026 14:59
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
Co-authored-by: cryptodev-2s <109512101+cryptodev-2s@users.noreply.github.com>
@OGPoyraz
OGPoyraz added this pull request to the merge queue Aug 3, 2026
Merged via the queue into main with commit 284c4f1 Aug 3, 2026
432 checks passed
@OGPoyraz
OGPoyraz deleted the release/1169.0.0 branch August 3, 2026 12:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants