Skip to content

Commit c56ec84

Browse files
authored
feat: v7.46.2 (#15551)
## **Description** PR for the hotfix release 7.46.2 ## **Related issues** Adds fixes for the following issues: - #15496 ## **Manual testing steps** See each issue and their cherry picked fix ## **Screenshots/Recordings** N/A ### **Before** N/A ### **After** N/A ## **Pre-merge author checklist** - [x] I’ve followed [MetaMask Contributor Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Mobile Coding Standards](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/CODING_GUIDELINES.md). - [x] I've completed the PR template to the best of my ability - [x] I’ve included tests if applicable - [x] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [x] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. ## **Pre-merge reviewer checklist** - [ ] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed). - [ ] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots.
2 parents 483157e + af6bf79 commit c56ec84

9 files changed

Lines changed: 469 additions & 29 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99
- fix(bridge): show "Auto" slippage for Solana swaps
1010

11+
## [7.46.2]
12+
13+
### Fixed
14+
- fix: Json rpc and invalid transaction type envelope errors ([#15538](https://github.com/MetaMask/metamask-mobile/pull/15538)
15+
1116
## [7.46.1]
1217

1318
### Fixed
@@ -5410,7 +5415,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
54105415
- [#957](https://github.com/MetaMask/metamask-mobile/pull/957): fix timeouts (#957)
54115416
- [#954](https://github.com/MetaMask/metamask-mobile/pull/954): Bugfix: onboarding navigation (#954)
54125417

5413-
[Unreleased]: https://github.com/MetaMask/metamask-mobile/compare/v7.46.1...HEAD
5418+
[Unreleased]: https://github.com/MetaMask/metamask-mobile/compare/v7.46.2...HEAD
5419+
[7.46.1]: https://github.com/MetaMask/metamask-mobile/compare/v7.46.1...v7.46.2
54145420
[7.46.1]: https://github.com/MetaMask/metamask-mobile/compare/v7.46.0...v7.46.1
54155421
[7.46.0]: https://github.com/MetaMask/metamask-mobile/compare/v7.45.1...v7.46.0
54165422
[7.45.1]: https://github.com/MetaMask/metamask-mobile/compare/v7.45.0...v7.45.1

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ android {
178178
applicationId "io.metamask"
179179
minSdkVersion rootProject.ext.minSdkVersion
180180
targetSdkVersion rootProject.ext.targetSdkVersion
181-
versionName "7.46.1"
182-
versionCode 1862
181+
versionName "7.46.2"
182+
versionCode 1891
183183
testBuildType System.getProperty('testBuildType', 'debug')
184184
missingDimensionStrategy 'react-native-camera', 'general'
185185
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

app/components/Views/confirmations/components/confirm/confirm-component.test.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ jest.mock('../../../../../core/Engine', () => ({
8787
},
8888
},
8989
},
90+
TransactionController: {
91+
getTransactions: jest.fn().mockReturnValue([]),
92+
},
9093
},
9194
controllerMessenger: {
9295
subscribe: jest.fn(),

app/components/Views/confirmations/components/info-root/info-root.test.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ jest.mock('../../../../../core/Engine', () => ({
4444
},
4545
},
4646
},
47+
TransactionController: {
48+
getTransactions: jest.fn().mockReturnValue([]),
49+
},
4750
},
4851
controllerMessenger: {
4952
subscribe: jest.fn(),

0 commit comments

Comments
 (0)