Skip to content

Commit

Permalink
Merge pull request #29972 from MetaMask/Version-v12.10.3
Browse files Browse the repository at this point in the history
Version v12.10.3
  • Loading branch information
danjm authored Jan 29, 2025
2 parents 9456967 + 78dae0f commit cdc2786
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [12.10.3]
### Fixed
- fix: ensure recipient address is shown on when sending erc 1155 tokens ([#29775](https://github.com/MetaMask/metamask-extension/pull/29775))

## [12.10.2]
### Fixed
- Updated permissions header to be consistent (#29880) ([#29880](https://github.com/MetaMask/metamask-extension/pull/29880))
- Fixed Route to bridge page from swaps ([#29883](https://github.com/MetaMask/metamask-extension/pull/29883))
- Re-added missing smart transaction status confirmation (#29860) ([#29860](https://github.com/MetaMask/metamask-extension/pull/29860))


## [12.10.1]
### Changed
- Stop publishing MMI builds to the release page ([#29732](https://github.com/MetaMask/metamask-extension/pull/29732))
Expand Down Expand Up @@ -5564,7 +5567,8 @@ Update styles and spacing on the critical error page ([#20350](https://github.c
- Added the ability to restore accounts from seed words.


[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v12.10.2...HEAD
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v12.10.3...HEAD
[12.10.3]: https://github.com/MetaMask/metamask-extension/compare/v12.10.2...v12.10.3
[12.10.2]: https://github.com/MetaMask/metamask-extension/compare/v12.10.1...v12.10.2
[12.10.1]: https://github.com/MetaMask/metamask-extension/compare/v12.10.0...v12.10.1
[12.10.0]: https://github.com/MetaMask/metamask-extension/compare/v12.9.3...v12.10.0
Expand Down
2 changes: 1 addition & 1 deletion attribution.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29536,7 +29536,7 @@ authors: Alex Potsides <[email protected]>
******************************

undici
5.28.4 <https://github.com/nodejs/undici>
5.28.5 <https://github.com/nodejs/undici>
MIT License

Copyright (c) Matteo Collina and Undici contributors
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metamask-crx",
"version": "12.10.2",
"version": "12.10.3",
"private": true,
"repository": {
"type": "git",
Expand Down Expand Up @@ -250,7 +250,8 @@
"secp256k1@npm:^4.0.0": "4.0.4",
"secp256k1@npm:^4.0.1": "4.0.4",
"secp256k1@npm:4.0.2": "4.0.4",
"secp256k1@npm:4.0.3": "4.0.4"
"secp256k1@npm:4.0.3": "4.0.4",
"undici@npm:5.28.4": "5.28.5"
},
"dependencies": {
"@babel/runtime": "patch:@babel/runtime@npm%3A7.25.9#~/.yarn/patches/@babel-runtime-npm-7.25.9-fe8c62510a.patch",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const TransactionFlowSection = () => {
const recipientAddress =
transactionMeta.type === TransactionType.simpleSend
? transactionMeta.txParams.to
: parsedTransactionData?.args?._to;
: parsedTransactionData?.args?._to || parsedTransactionData?.args?.to;

const { chainId } = transactionMeta;

Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -36139,12 +36139,12 @@ __metadata:
languageName: node
linkType: hard

"undici@npm:5.28.4":
version: 5.28.4
resolution: "undici@npm:5.28.4"
"undici@npm:5.28.5":
version: 5.28.5
resolution: "undici@npm:5.28.5"
dependencies:
"@fastify/busboy": "npm:^2.0.0"
checksum: 10/a666a9f5ac4270c659fafc33d78b6b5039a0adbae3e28f934774c85dcc66ea91da907896f12b414bd6f578508b44d5dc206fa636afa0e49a4e1c9e99831ff065
checksum: 10/459cd84ab75fe90d696fa2634a8b5b23f9e1080b27236c6809bd74e51862be85df6d95b4a8fed3ee42554495008cb3c05f1bc9d4a1807478f433cca567003d70
languageName: node
linkType: hard

Expand Down

0 comments on commit cdc2786

Please sign in to comment.