Skip to content

Commit

Permalink
Merge branch 'main' into chore/ramp-upgrade-sdk-1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wachunei authored Aug 25, 2023
2 parents 2a32f3b + 9cdb221 commit 446a079
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 32 deletions.
31 changes: 0 additions & 31 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,37 +88,6 @@ access
### Fixed
- [#6833](https://github.com/MetaMask/metamask-mobile/pull/6833): fix: invalid transaction data used for approve transaction

## 7.4.0 - Jul 14, 2023
### Added
- [#6805](https://github.com/MetaMask/metamask-mobile/pull/6805): feat(on-ramp): upgrade on-ramp SDK with apple pay support
- [#6679](https://github.com/MetaMask/metamask-mobile/pull/6679): feat(on-ramp): upgrade on-ramp-sdk to v1.22.0 with abort controller support
- [#6799](https://github.com/MetaMask/metamask-mobile/pull/6799): feat: prioritize resume over deeplink to accelerate reconnection flow
- [#6795](https://github.com/MetaMask/metamask-mobile/pull/6795): feat(MMPD-546): update portfolio icon
- [#6738](https://github.com/MetaMask/metamask-mobile/pull/6738): feat: add approval flow success and error pages
- [#6782](https://github.com/MetaMask/metamask-mobile/pull/6782): feat: wc2 dependencies update and handle switchNetwork
- [#6766](https://github.com/MetaMask/metamask-mobile/pull/6766): feat: Added horizontalAlignment to Accordions
- [#6755](https://github.com/MetaMask/metamask-mobile/pull/6755): feat: sdk protocol update

### Changed
- [#6804](https://github.com/MetaMask/metamask-mobile/pull/6804): refactor(on-ramp): refactor quotes screen
- [#6784](https://github.com/MetaMask/metamask-mobile/pull/6784): refactor: Use selectors for token list controller state access
- [#6758](https://github.com/MetaMask/metamask-mobile/pull/6758): refactor: Use selectors for tokens controller state access
- [#6758](https://github.com/MetaMask/metamask-mobile/pull/6758): refactor: Use selectors for tokens controller state access
- [#6796](https://github.com/MetaMask/metamask-mobile/pull/6796): ci: Fix pipelines to reflect running tests on android detox
- [#6752](https://github.com/MetaMask/metamask-mobile/pull/6752): refactor: Use selectors for currency rate controller state access

### Fixed
- [#6754](https://github.com/MetaMask/metamask-mobile/pull/6754): fix: sending an ERC20 token with an amount with more decimals than the token decimal, results in nothing
- [#6790](https://github.com/MetaMask/metamask-mobile/pull/6790): fix: update snapshot for linea mainnet
- [#6587](https://github.com/MetaMask/metamask-mobile/pull/6587): fix: Improves handling of missing WCv2 Project ID
- [#6772](https://github.com/MetaMask/metamask-mobile/pull/6772): fix: update cookie-tough dependency
- [#6739](https://github.com/MetaMask/metamask-mobile/pull/6739): fix: deeplink connection using metamask://connect
- [#6753](https://github.com/MetaMask/metamask-mobile/pull/6753): fix: Delete collectible media reproductor
- [#6992](https://github.com/MetaMask/metamask-mobile/pull/6992): fix: Update Terms of Use and Privacy Policy URLs

## 7.3.1 - Jul 26, 2023
- [#6833](https://github.com/MetaMask/metamask-mobile/pull/6833): fix: invalid transaction data used for approve transaction

## 7.3.0 - Jul 13, 2023
### Added
- [#6220](https://github.com/MetaMask/metamask-mobile/pull/6220): feat: Upgrade React Native to 0.71.6
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"start:ios": "./scripts/build.sh ios debug",
"start:ios:qa": "./scripts/build.sh ios qaDebug",
"start:ios:e2e": "./scripts/build.sh ios debugE2E",
"start:ios:e2e:qa": "./scripts/build.sh ios qadebugE2E",
"start:ios:device": "./scripts/build.sh ios debug --device",
"start:android": "./scripts/build.sh android debug",
"start:android:qa": "./scripts/build.sh android qaDebug",
Expand Down
9 changes: 8 additions & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,19 @@ buildIosSimulator(){
buildIosSimulatorQA(){
prebuild_ios
SIM="${IOS_SIMULATOR:-"iPhone 12 Pro"}"
cd ios && xcodebuild -workspace MetaMask.xcworkspace -scheme MetaMask-QA -configuration Debug -sdk iphonesimulator -derivedDataPath build
react-native run-ios --simulator "$SIM" --scheme "MetaMask-QA"
}

buildIosSimulatorE2E(){
prebuild_ios
cd ios && xcodebuild -workspace MetaMask.xcworkspace -scheme MetaMask -configuration Debug -sdk iphonesimulator -derivedDataPath build
}

buildIosQASimulatorE2E(){
prebuild_ios
cd ios && xcodebuild -workspace MetaMask.xcworkspace -scheme MetaMask-QA -configuration Debug -sdk iphonesimulator -derivedDataPath build
}

runIosE2E(){
cd e2e && yarn ios:debug
}
Expand Down Expand Up @@ -371,6 +376,8 @@ buildIos() {
buildIosReleaseE2E
elif [ "$MODE" == "debugE2E" ] ; then
buildIosSimulatorE2E
elif [ "$MODE" == "qadebugE2E" ] ; then
buildIosQASimulatorE2E
elif [ "$MODE" == "QA" ] ; then
buildIosQA
elif [ "$MODE" == "qaDebug" ] ; then
Expand Down

0 comments on commit 446a079

Please sign in to comment.