Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 7.40.0 #13285

Merged
merged 298 commits into from
Feb 18, 2025
Merged

feat: 7.40.0 #13285

merged 298 commits into from
Feb 18, 2025

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jan 30, 2025

🚀 v7.40.0 Testing & Release Quality Process

Hi Team,
As part of our new MetaMask Release Quality Process, here’s a quick overview of the key processes, testing strategies, and milestones to ensure a smooth and high-quality deployment.


📋 Key Processes

Testing Strategy

  • Developer Teams:
    Conduct regression and exploratory testing for your functional areas, including automated and manual tests for critical workflows.
  • QA Team:
    Focus on exploratory testing across the wallet, prioritize high-impact areas, and triage any Sentry errors found during testing.
  • Customer Success Team:
    Validate new functionalities and provide feedback to support release monitoring.

GitHub Signoff

  • Each team must sign off on the Release Candidate (RC) via GitHub by the end of the validation timeline (Tuesday EOD PT).
  • Ensure all tests outlined in the Testing Plan are executed, and any identified issues are addressed.

Issue Resolution

  • Resolve all Release Blockers (Sev0, Sev1, and newly introduced Sev2 issues) by Tuesday EOD PT.
  • For unresolved blockers, PRs may be reverted, or feature flags disabled to maintain release quality and timelines.

Cherry-Picking Criteria

  • Only critical fixes meeting outlined criteria will be cherry-picked.
  • Developers must ensure these fixes are thoroughly reviewed, tested, and merged by Tuesday EOD PT.

🗓️ Timeline and Milestones

  1. Today (Friday): Begin Release Candidate validation.
  2. Tuesday EOD PT: Finalize RC with all fixes and cherry-picks.
  3. Wednesday: Buffer day for final checks.
  4. Thursday: Submit release to app stores and begin rollout to 1% of users.
  5. Monday: Scale deployment to 10%.
  6. Tuesday: Full rollout to 100%.

✅ Signoff Checklist

Each team is responsible for signing off via GitHub. Use the checkbox below to track signoff completion:

Team sign-off checklist

  • Assets
  • Wallet UX
  • Confirmations
  • Mobile Platform
  • Stake
  • Accounts
  • Swaps
  • Hardware Wallets
  • Portfolio
  • SDK
  • Design System

This process is a major step forward in ensuring release stability and quality. Let’s stay aligned and make this release a success! 🚀

Feel free to reach out if you have questions or need clarification.

Many thanks in advance

Reference

andrepimenta and others added 30 commits December 9, 2024 09:45
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

### Problem
Right now, setting up the environment for running the MetaMask Mobile
app is a major pain and a point of huge friction for developers looking
to build a feature on the app. It takes hours for the first setup
because of the so many tools needed to be installed which are prone to
errors and problems (many times difficult to understand and debug) which
causes devs, especially devs with less experience on mobile, to give up
on developing on the MM Mobile app. This problem is also taking time
from the Mobile team that has to help devs to debug issues and setup the
app. Furthermore, every time a developer wants to run the Mobile app
(after first setup), they need to compile the native part of the app
which takes several minutes and is also prone to many issues with
incompatibilities with the system.

### Solution implemented
The work on this PR will allow major improvements in contributor
experience in the MetaMask Mobile app. By integrating expo development
builds, there is no more need for compiling the native part of the app
meaning, devs can just install an APK on their device or simulator and
load the javascript bundle. This makes the first setup and consequently
runs several times faster.
The experience will be much similar to how a webapp works, but in this
case the browser will be the development build, bundling and loading the
javascript files is exactly the same. This means that for web/extension
devs, the process will be much more familiar, and not only that but much
much faster to setup and easier to understand.

## Improvements in time to setup/run
Time for first setup goes **from 3-4 hours to 1-2 minutes**
Time for running the app goes from **4-5 mins to 1 min (and 8s for
subsequently runs)**

## Why so much faster?
Before, the setup included everything here:
https://github.com/MetaMask/metamask-mobile/blob/main/docs/readme/environment.md.
Included installing several tools and apps such as xcode and android
studio. This was always followed by errors and problems caused by the
tools or the computer environment that were hard to understand and
debug.
Now, devs can just download and install an APK and run one command `yarn
expo:start` and that is it.

# Steps I took to integrate expo

## Commit 1 c36edda
* First step is to install expo modules that allows expo compatible
modules to be installed and used: `npx install-expo-modules@latest`
* [TODO] This increases iOS min version to 13.0, we should check if
we're ok with this change
* `npx expo run:ios` doesn’t run out of the box, it has to be integrated
with our build.sh in order to build or dependencies. This is because it
tries to run pod install but we actually install pods with bundle
execute pod install.
* Replaced `sourcecode.c.objc` with `sourcecode.cpp.objcpp` as explained
in expo/expo#20850 (comment)
because of property 'reactDelegate' not found on object of type
'AppDelegate *' error.

## Commit 2 abcb412
- Minimizer fixes (had to replace `#import <UIKit/UIKit.h>` with
`#import <objc/runtime.h> in RCTMinimizer.m`

## Commit 3 b181a1f
- Had to install `npx expo install expo-build-properties` to include the
maven repos to fix an Android error. The expo build properties will be
useful to implement
(CNG)[https://docs.expo.dev/workflow/continuous-native-generation/]

## Commit 4 f586844
- The magic really starts to happen once `"expo-dev-client":
"~2.4.13"`is installed
- Ran into a bunch of errors, one of which I had to update
`"react-native-reanimated": "~3.3.0"`
- iOS stopped working with no error info, took me almost a week to
pinpoint the error as it could be anywhere. Had to create a new react
native app, install expo and compare every single file. Finally narrowed
down the problem to `return [super application:application
didFinishLaunchingWithOptions:launchOptions];`
- Still the expo deeplinks were not working

## Commit 5 820321f
- Fixed the expo deeplinks by adding
`[EXDevLauncherController.sharedInstance onDeepLink:url
options:options]`

## Commit 6 d482e09
- Added build. commands

## Commit 7 - 20
- Fixing unit testing and E2E: Expo doesn't support detox out of the box
as the initial screen will now be the Expo screen which is something
detox is not expecting, so I had to implement a workaround by launching
the app and skipping the Expo screen by calling a deeplink that makes
the bundle start loading. Also included other minor fixes.

## Commit 21 and on
- Implementing deploying Dev Builds on our CI/CD 

✅ Android working
✅ iOS working

### TODOs
- [x] iOS min version got increased to 13.0, we should check if we're ok
with this change
- [x] Tsconfig got updated automatically, we should check if we agree 
- [x] Test QA builds
- [x] Figure out where to host the development builds
- [x] Update the repo README

### Acceptance criteria
- [ ] All app functionality works as before (signing in, transactions,
browser, etc.)
- [ ] Deeplinks work as before
- [ ] Updating from a previous build works without lost data
- [ ] All dev tools (e.g. Flipper) still work
- [ ] Vault backup still works
- [ ] Icons still work (expo introduced a compatibility layer around our
icon library)

## **Related issues**

Fixes: #11548 

## **Manual testing steps**

These are subject to change!
1. If you have the development build installed, you can just do `yarn
watch` and scan the QR code
OR
1. `yarn setup:expo`
2. `yarn start:android` or `yarn start:ios`

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

Video so long I don't want to put it here 😂

### **After**


https://github.com/user-attachments/assets/b126176f-c6b9-4ac5-8779-901f783bca35

<!-- [screenshots/recordings] -->

## **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**

- [x] 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.

---------

Co-authored-by: sethkfman <[email protected]>
Co-authored-by: CW <[email protected]>
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

This PR bumps:
- `@metamask/preferences-controller` to `15.0.1`
- `@metamask/assets-controllers` to `45.1.1`

<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

## **Related issues**

Fixes: #12382,
#12380

## **Manual testing steps**

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **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.

---------

Co-authored-by: Mark Stacey <[email protected]>
…rofile-sync,signature}-controller (#12577)

<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

We want to ensure that mobile is using the latest versions of all
controllers.

- Bump `@metamask/ppom-validator` from 0.35.1 to 0.36.0 ([view
changes](https://github.com/MetaMask/ppom-validator/blob/main/CHANGELOG.md))
  - There are no notable changes between these versions.
- Bump `@metamask/gas-fee-controller` from 21.0.0 to 22.0.1 ([view
changes](https://github.com/MetaMask/core/blob/main/packages/gas-fee-controller/CHANGELOG.md))
  - There are no notable changes between these versions.
- Bump `@metamask/signature-controller` from 22.0.0 to 23.1.0 ([view
changes](https://github.com/MetaMask/core/blob/main/packages/signature-controller/CHANGELOG.md))
  - There are no notable changes between these versions.
- Bump `@metamask/profile-sync-controller` from 1.0.0 to 2.0.0 ([view
changes](https://github.com/MetaMask/core/blob/main/packages/profile-sync-controller/CHANGELOG.md))
  - There are no notable changes between these versions.
- Bump `@metamask/selected-network-controller` from 18.0.2 to 19.0.0
([view
changes](https://github.com/MetaMask/core/blob/main/packages/selected-network-controller/CHANGELOG.md))
  - There are no notable changes between these versions.
- Bump `@metamask/network-controller` from 21.0.0 to 22.1.0 ([view
changes](https://github.com/MetaMask/core/blob/main/packages/network-controller/CHANGELOG.md))
  - Notable changes in 22.1.0:
- The `NetworkController:networkRemoved` messenger event will now be
emitted when a network is removed.
- New messenger actions `NetworkController:addNetwork`,
`NetworkController:removeNetwork`, and `NetworkController:updateNetwork`
which call the respective controller methods.
- New `lastUpdatedAt`property to network configurations which will be
set to the current time on addition or update
  - Notable changes in 22.0.2:
- `getDefaultNetworkConfigurationsByChainId` returns the updated display
names for `mainnet` and `linea`. `Ethereum Mainnet` instead of
`Mainnet`, and `Linea` instead of `Linea Mainnet`.
- Bump `@metamask/notification-services-controller` from 0.11.0 to
0.14.0 ([view
changes](https://github.com/MetaMask/core/blob/main/packages/notification-services-controller/CHANGELOG.md))
  - Notable changes in 0.12.0:
- `deleteNotificationsById` now publishes
`NotificationServicesController:notificationsListUpdated`
  - Notable changes in 0.12.1:
- When notifications are disabled, list is now repopulated with Snap
notifications

## **Related issues**

Completes MetaMask/MetaMask-planning#3698 (and
does more to satisfy peer dependency warnings).
#12383

## **Manual testing steps**

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **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.
…`^10.0.0` (#10441)

## **Description**

This commit updates `@metamask/composable-controller` to `^10.0.0`. 

This involves fixing bugs outlined in
#10073, and applying
the major changes to the `ComposableController` API that has accumulated
between the intervening versions.

## Blocked by

- MetaMask/core#4968
- `composable-controller` v10 has been written to ensure that the effect
of this optimization is maximized.
- #12348
- #12407
- ~#11162

## Changelog

### Changed

- **BREAKING:** Bump `@metamask/composable-controller` from `^3.0.0` to
`^10.0.0`.
- **BREAKING:** Instantiate `ComposableController` class constructor
option `messenger` with a `RestrictedControllerMessenger` instance
derived from the `controllerMessenger` class field instance of `Engine`,
instead of passing in the unrestricted `controllerMessenger` instance
directly.
- **BREAKING:** Narrow external actions allowlist for `messenger`
instance passed into `ComposableController` constructor from
`GlobalActions['type']` to an empty union.
- **BREAKING:** Narrow external events allowlist for `messenger`
instance passed into `ComposableController` constructor from
`GlobalEvents['type']` to a union of the `stateChange` events of all
controllers included in the `EngineState` type.
- Convert the `EngineState` interface to use type alias syntax to ensure
compatibility with types used in MetaMask controllers.

### Fixed

- **BREAKING:** Narrow `Engine` class `datamodel` field from `any` to
`ComposableController<EngineState, StatefulControllers>`.
- **BREAKING:** The `CurrencyRatesController` constructor now normalizes
`null` into 0 for the `conversionRate` values of all native currencies
keyed in the `currencyRates` object of `CurrencyRatesControllerState`.
- Restore previously suppressed type-level validation for
`ComposableController` constructor option `controllers`.

## **Related issues**

- Closes #10073
- Applies MetaMask/core#4467
  - Blocked by `@metamask/[email protected]` release.
- Supersedes #10011

## **Manual testing steps**

## **Screenshots/Recordings**

## **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.

---------

Co-authored-by: Salah-Eddine Saakoun <[email protected]>
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

Adding new instructions for Expo:

#### For internal developers
- Access Runway via Okta and go to the Expo bucket either on the iOS or
Android section. From there you will see the available development
builds (android-expo-dev-build.apk or ios-expo-dev-build.ipa).
- For Android:
  - Install the .apk on your Android device or simulator.
- For iOS:
- Device: you need to have your iPhone registered with our Apple dev
account. If you have it, you can install the .ipa on your device.
- Simulator: please follow the [native development
section](https://github.com/MetaMask/metamask-mobile?tab=readme-ov-file#native-development)
and run `yarn setup` and `yarn start:ios` as the .ipa will not work for
now, we are working on having an .app that works on simulators.

##### [SOON] For external developers (we are testing the new dev builds
and will make them publicly available soon after)

## **Related issues**

Fixes:

## **Manual testing steps**

1. Go to this page...
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **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**

- [x] I've manually tested the PR (e.g. pull and build branch, run the
app, test code being changed).
- [x] 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.
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

The main purpose of these changes is to ensure that the navigation
service is available when Engine is initialized. The reason that this is
needed is because it allows us to redirect instances of failed
controller instances to vault recovery where users may at least recover
their keys as opposed to being bricked. This is an example of the
bricked state - #12115.

This PR reorganizes the initialization of services, including Engine to
sagas, where it enables us to wait for dependencies to load first. The
two dependencies that the Engine relies on are:
- Persisted data loaded
- Navigation loaded

## **Related issues**

Fixes: #12435

## **Manual testing steps**

While the underlying logic changes, the app behavior should remain the
same

1. Install the app on this branch
2. Create a wallet
3. Kill app, reopen and login
4. Should not experience any issues

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->
Simulates controller failed initialization


https://github.com/user-attachments/assets/beb5e952-0fe3-4470-8aa6-2ff0947e3ffd

### **After**

<!-- [screenshots/recordings] -->

Simulates vault recovery when controller fails to initialize

https://github.com/user-attachments/assets/76a853cd-34bc-465c-af03-d5c07609b8ee


## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.
## **Description**

This PR updates user storage related E2E tests.

- `userStorageMockttpController` now uses the
`USER_STORAGE_FEATURE_NAMES` constant in order to define paths
- `userStorageMockttpController` now supports batch deleting items
- E2E tests now use `USER_STORAGE_FEATURE_NAMES` to define paths

## **Related issues**

Fixes:

## **Manual testing steps**

1. No testing steps, user storage E2E tests are disabled for now

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **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**

- [x] I've manually tested the PR (e.g. pull and build branch, run the
app, test code being changed).
- [x] 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.
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

We want to ensure that mobile is using the latest versions of all
controllers.

- Bump `@metamask/notification-services-controller` from 0.14.0 to
0.15.0 ([view
changes](https://github.com/MetaMask/core/blob/main/packages/notification-services-controller/CHANGELOG.md))
  - There are no notable changes between these versions.
- Bump `@metamask/profile-sync-controller` from 2.0.0 to 3.0.0 ([view
changes](https://github.com/MetaMask/core/blob/main/packages/profile-sync-controller/CHANGELOG.md))
- The `UserStorageController` messenger must now allow the actions
`NetworkController:getState`, `NetworkController:addNetwork`,
`NetworkController:removeNetwork`, and `NetworkController:updateNetwork`
- The `UserStorageController` messenger must now allow the event
`NetworkController:networkRemoved`

<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

## **Related issues**

Fixes:
#12514

## **Manual testing steps**

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **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.
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**
Github bug template updated to include feature branches as a development
stage


<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

## **Related issues**

Fixes:

## **Manual testing steps**

1. Go to this page...
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **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**

- [x] I've manually tested the PR (e.g. pull and build branch, run the
app, test code being changed).
- [x] 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.
## **Description**

This PR introduces the Unified Asset List feature to MetaMask Mobile,
providing users with a consolidated view of their assets across all
supported blockchain networks. This enhancement improves the user
experience by eliminating the need to switch between networks to view or
manage assets, making asset management more intuitive and efficient.

We will followup with a PR to fix TS feedback we had!
(Not only TS issues but also
[this](#12431 (comment)
and
[this](#12431 (comment)))

## **Related issues**

Fixes: #12462 

## **Manual testing steps**

Build using `PORTFOLIO_VIEW` flag

```
PORTFOLIO_VIEW=true yarn watch
yarn start:ios 
yarn start:android
```

1. Go to the wallet page
2. Select all network on the network filter
3. Check the list of assets
4. Click on each asset with the network filter on "All Networks" and
"Current Network"
5. Test send/swap flows with testnet networks to confirm everything
still works
6. Importing all tokens should work when "All Networks" filter is on
7. Importing networks for a specific network should work when the
"Current Network" filter is on
8. Aggregated balance should chance according to the network filter

## **Screenshots/Recordings**

| Before  | After |
|:---:|:---:|

|![before](https://github.com/user-attachments/assets/449bd3ef-1f69-4cf9-bb93-f5a28838e11b)|![after](https://github.com/user-attachments/assets/26209026-6863-4085-85ed-d541ca4fa720)|

### **Before**

<img
src="https://github.com/user-attachments/assets/4f3aa5f5-920c-4ba6-8f13-0ce5bef4735f"
width="350" alt="before_screenshot">

### **After**

<img
src="https://github.com/user-attachments/assets/41e421b2-5b87-4933-a88e-159a45a15114"
width="350" alt="after_screenshot">

## **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**

- [x] I've manually tested the PR (e.g. pull and build branch, run the
app, test code being changed).
- [x] 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.

---------

Co-authored-by: salimtb <[email protected]>
Co-authored-by: sahar-fehri <[email protected]>
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

Fix flaky test
<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

## **Related issues**

Fixes:

## **Manual testing steps**

1. CI should be green

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**
This PR fixes the suggested gas API E2E test.
<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

## **Related issues**

Fixes: MetaMask/mobile-planning#2067

## **Manual testing steps**

1. Bitrise Regression

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **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.
## **Description**

Fixed an issue where multi chain balance was not being calculated
correctly for hide zero tokens settings. Also fixed an issue where the
ticker was `undefined` in assets overview when it was a non-native
token. These fixes belong to a feature that is hidden behind a feature
flag `PORTFOLIO_VIEW`

## **Related issues**

Fixes:

## **Manual testing steps**

1. Goto settings and turn on "Hide Tokens Without Balance" 
2. Observe that your zero tokens and tokens with no conversion rate
disappear

## **Screenshots/Recordings**

### Zero Balance
| Before  | After |
|:---:|:---:|

|![zero_balance_before](https://github.com/user-attachments/assets/21bde196-951f-447e-9de0-ce214cee4a1f)|![zero_balance_after](https://github.com/user-attachments/assets/a92aaa8f-5c08-4c45-bd0d-0fdaff89ca74)|

### Ticker
| Before  | After |
|:---:|:---:|

|![ticker_before](https://github.com/user-attachments/assets/15776130-ea3e-4cc9-901d-61d591dbaab9)|![ticker_after](https://github.com/user-attachments/assets/b5384a6d-47da-4c92-9b63-2709de52c66d)|

### **Before**

NA

### **After**

NA

## **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**

- [x] I've manually tested the PR (e.g. pull and build branch, run the
app, test code being changed).
- [x] 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.
## **Description**

This PR turns on the Portfolio view feature flag.

## **Related issues**

Fixes:

## **Manual testing steps**

1. Go to this page...
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.

---------

Co-authored-by: vinnyhoward <[email protected]>
Co-authored-by: sahar-fehri <[email protected]>
Co-authored-by: Nicholas Gambino <[email protected]>
Co-authored-by: Nick Gambino <[email protected]>
…ng accounts API (#12419)

## **Description**

Update `@metamask/transaction-controller` to retrieve incoming
transactions using the accounts API rather than Etherscan.

Add incoming transaction E2E tests.

## **Related issues**

## **Manual testing steps**

## **Screenshots/Recordings**

### **Before**

### **After**

## **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.
…ap (#12622)

## **Description**
We want to hide the smart transaction status page if we return a txHash
asap, which we want to do always going forward. Once we verify it works
as expected and no fallback is needed, we can remove the STX status page
from the codebase.

## **Related issues**

Fixes: TXL-538

## **Manual testing steps**

1. Be on Ethereum Mainnet + smart transactions enabled in Advanced
Settings
2. Do a transaction
3. You will not see the STX status page, only a Toast notification as we
do for regular (non-STX) transactions

## **Screenshots/Recordings**

Smart transaction is submitted:

![image](https://github.com/user-attachments/assets/fc04d632-1254-45e1-8c27-2cc56beb6d22)

Smart transaction is completed:

![image](https://github.com/user-attachments/assets/18de1f4c-3adc-446e-b5fe-973c1d48a89b)

## **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**

- [x] I've manually tested the PR (e.g. pull and build branch, run the
app, test code being changed).
- [x] 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.
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

Currently there is an issue where yarn start:android doesn't open the
android emulator automatically if none is already open. Adding this flag
will allow devs to choose which emulator to run the app and it will open
the specified emulator.

## **Related issues**

Fixes:

## **Manual testing steps**

1. Go to this page...
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.
## **Description**

[Due to a change in mobile event
metrics](#10545), we
lost the ability to track conversion for many of swaps mobile funnels.
The cause of the issue was that since many of our event did not have a
non anonymous component, they could not be tracked through a conversion
funnel.

These changes update the events so that we pull most of the attributes
out of sensitive properties, restoring functionality of event tracking.

## **Related issues**

Fixes:

## **Manual testing steps**

1. Go to swaps
2. Complete swap
3. See events in Mixpanel

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **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.
## **Description**

when the user has "all Networks" selected we want to filter out native
tokens when the balance is zero and when hideZeroBalance setting is ON

## **Related issues**

Fixes:

## **Manual testing steps**

1. Go to this page...
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->


https://github.com/user-attachments/assets/4d395a89-4671-4e78-93d3-b3cf44f16d93



### **After**

<!-- [screenshots/recordings] -->


https://github.com/user-attachments/assets/fd514b31-3c38-43a4-894d-5f929336b154



## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.
…itted networks (#12597)

<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**
Covers with e2e the scenarios:
1. should update chain permissions by granting and revoking network
permissions simultaneously
2. should allow switching to permitted network when attempting to use
non-permitted network


<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
4. What is the improvement/solution?
-->

## **Related issues**

Contributes to solve issue:
MetaMask/MetaMask-planning#2796

## **Manual testing steps**

I have added screenshot below to see how it looks.

1. `yarn watch:clean` 
2. `yarn test:e2e:ios:debug:build`
3. `yarn test:e2e:ios:debug:run <path to test file>`



## **Screenshots/Recordings**



![2024-12-03 12 50
35](https://github.com/user-attachments/assets/634d72f9-6518-446d-941f-9a9b0d99083b)



## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**
This PR enable the clear signing feature in metamask mobile. 
Please refer to this feature requests for detail:
MetaMask/accounts-planning#544
<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

## **Related issues**

Fixes:

## **Manual testing steps**

Test the clear signing using this dapp provided by ledger team:
https://clear-signing-tester.vercel.app/
When test in EIP712 sign message, please use polygon mainnet or ethereum
mainnet.
sign transcation can use linea testnet.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **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**

- [x] I've manually tested the PR (e.g. pull and build branch, run the
app, test code being changed).
- [x] 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.

---------

Co-authored-by: Sébastien Van Eyck <[email protected]>
## **Description**

When a user adds a new network using a dapp; it should display the
correct network filter with the correct tokens display

## **Related issues**

Fixes: #12638

## **Manual testing steps**

1. Go to this page...
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.
## **Description**

Adding basic page for types sign V3, V4.

## **Related issues**

Fixes: MetaMask/MetaMask-planning#3681

## **Manual testing steps**

1. Enable re-designs locally
2. To to test dapp and submit V3, V4 signatures
3. Check the page that appears

## **Screenshots/Recordings**
<img width="391" alt="Screenshot 2024-12-02 at 5 16 06 PM"
src="https://github.com/user-attachments/assets/f198a928-70f9-48a9-ae93-2029b9ae3480">

## **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.
## **Description**

PR that adds new translation for Portfolio View feature when the asset
network is different than the selected network

## **Related issues**

Fixes:

## **Manual testing steps**

1. Click on "All Networks"
2. Click on a token that is on a network different than the network you
are currently on
3. Scroll down and you should see "Please switch network to view
transactions"


## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->


https://github.com/user-attachments/assets/1cbbd934-e418-46de-afb1-702f7d9bb590



## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.
…12650)

## **Description**

When user has "all Networks" selected; and he is on a network that does
not support swaps but clicks on a network on a chain that supports
swaps. He should be able to see the swaps button

## **Related issues**

Fixes:
#12546 (comment)

## **Manual testing steps**

1. Click on "All Networks"
2. Switch to a network where swaps is not supported (you can add Scroll
or blast from chainlist)
3. Click on a token from ethereum network
4. You should be able to see swaps button

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->


https://github.com/user-attachments/assets/af560641-c854-4288-b0cc-231ba450edd3



## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.
## **Description**

PR to fix app crash when user navigates to token details page.

## **Related issues**

Fixes: #12660

## **Manual testing steps**

1. Click on any asset in your wallet
2. Click on options (3 dots) top right
3. Click on Token Details
4. You should see token details without an app crash


## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->


https://github.com/user-attachments/assets/e5b53a50-8294-4b63-80ff-41cfe9fb45e2




## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.
This is the release candidate for version 7.37.0. The changelog will be
found in another PR chore/7.37.0-Changelog.

  # Team sign-off checklist
  - [ ] team-accounts
  - [x] team-assets
  - [ ] team-confirmations
  - [x] team-design-system
  - [x] team-notifications
  - [ ] team-platform
  - [ ] team-security
  - [x] team-snaps-platform
  - [ ] team-sdk
  - [x] team-stake
  - [x] team-tiger
  - [x] team-wallet-framework

  # Reference
- Testing plan sheet -
https://docs.google.com/spreadsheets/d/1tsoodlAlyvEUpkkcNcbZ4PM9HuC9cEM80RZeoVv5OCQ/edit?gid=404070372#gid=404070372

---------

Co-authored-by: metamaskbot <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: sethkfman <[email protected]>
Co-authored-by: runway-github[bot] <73448015+runway-github[bot]@users.noreply.github.com>
Co-authored-by: João Loureiro <[email protected]>
Co-authored-by: Nico MASSART <[email protected]>
Co-authored-by: tommasini <[email protected]>
Co-authored-by: Nick Gambino <[email protected]>
Co-authored-by: EtherWizard33 <[email protected]>
Co-authored-by: Salim TOUBAL <[email protected]>
Co-authored-by: Kylan Hurt <[email protected]>
Co-authored-by: Vinicius Stevam <[email protected]>
Co-authored-by: Jongsun Suh <[email protected]>
Co-authored-by: Vince Howard <[email protected]>
Co-authored-by: Owen Craston <[email protected]>
Co-authored-by: Curtis David <[email protected]>
Co-authored-by: Xiaoming Wang <[email protected]>
Co-authored-by: Prithpal Sooriya <[email protected]>
Co-authored-by: sahar-fehri <[email protected]>
Co-authored-by: SamuelSalas <[email protected]>
Co-authored-by: jake-perkins <[email protected]>
Co-authored-by: Cal Leung <[email protected]>
Co-authored-by: Charly Chevalier <[email protected]>
Co-authored-by: Aslau Mario-Daniel <[email protected]>
Co-authored-by: Mathieu Artu <[email protected]>
Co-authored-by: OGPoyraz <[email protected]>
Co-authored-by: Nicholas Smith <[email protected]>
Co-authored-by: Frank von Hoven <[email protected]>
Co-authored-by: Frank von Hoven <[email protected]>
Co-authored-by: Matthew Grainger <[email protected]>
Co-authored-by: Matthew Walsh <[email protected]>
Co-authored-by: Frederik Bolding <[email protected]>
Co-authored-by: Amitabh Aggarwal <[email protected]>
Co-authored-by: Mark Stacey <[email protected]>
Co-authored-by: CW <[email protected]>
Co-authored-by: Andre Pimenta <[email protected]>
Co-authored-by: sethkfman <[email protected]>
Co-authored-by: cryptodev-2s <[email protected]>
Co-authored-by: Salah-Eddine Saakoun <[email protected]>
Co-authored-by: jvbriones <[email protected]>
Co-authored-by: Nicholas Gambino <[email protected]>
Co-authored-by: Daniel <[email protected]>
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->
Disable flaky tests.

## **Related issues**

Fixes: #12666 



## **Manual testing steps**

1. Go to this page...
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

https://consensys.slack.com/archives/C02U025CVU4/p1734015329502949?thread_ts=1733944216.093729&cid=C02U025CVU4


https://app.bitrise.io/build/60766eba-3b3c-4b91-b1ea-7e78fa7cd881?tab=tests

### **After**

<!-- [screenshots/recordings] -->

## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.
## **Description**

Additional e2e tests to support `PortfolioView`. This is an initial pass
to cover the basic happy path use cases. Should be expanded further to
handle edge cases.

## **Related issues**

Fixes:

## **Manual testing steps**

1. `yarn setup`
2. `yarn test:e2e:ios:debug:build`
3. `yarn watch:clean`
4. `yarn test:e2e:ios:debug:run
/e2e/specs/multichain/asset-list.spec.js`

## **Screenshots/Recordings**

Current state of things:
```
PASS  e2e/specs/multichain/asset-list.spec.js (58.1 s)
  SmokeMultiChain Import Tokens
    ✓ should display tokens across networks when all networks filter is toggled on (9755 ms)
    ✓ should display tokens across networks when current networks filter is toggled on (23606 ms)

Test Suites: 1 passed, 1 total
Tests:       2 passed, 2 total
Snapshots:   0 total
Time:        58.153 s
```

## **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.

---------

Co-authored-by: salimtb <[email protected]>
Co-authored-by: Curtis <[email protected]>
Co-authored-by: metamaskbot <[email protected]>
Co-authored-by: sethkfman <[email protected]>
runway-github bot and others added 4 commits February 13, 2025 23:06
- chore: main stable sync 7.39.0 (#13451)

<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

7.39.0 changeset `stable` sync with `main`

## **Related issues**

Fixes: NA

## **Manual testing steps**

1. NA
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before** NA

<!-- [screenshots/recordings] -->

### **After** NA

<!-- [screenshots/recordings] -->

## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.

---------

Co-authored-by: metamaskbot <[email protected]>
Co-authored-by: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
[3fe9cf9](3fe9cf9)

Co-authored-by: sethkfman <[email protected]>
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

The purpose of this PR is to clean up our trigger map. Furthermore, we
want to trigger QA builds after a release was tagged.

## **Related issues**

Fixes:

## **Manual testing steps**

1. Go to this page...
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **Pre-merge author checklist**

- [ ] 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).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] 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.

---------

Co-authored-by: sethkfman <[email protected]>
<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

Some if the message values for typed sign messages was appearing black
in dark mode and thus nor readable.

## **Related issues**

Fixes: MetaMask/MetaMask-planning#4200

## **Manual testing steps**

1. Enable dark mode
2. Check various signature message content in dark mode

## **Screenshots/Recordings**
<img width="384" alt="Screenshot 2025-02-13 at 7 14 48 PM"
src="https://github.com/user-attachments/assets/3b2da0f8-2e1c-4570-a164-a0e7a93ecc57"
/>

## **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.
Copy link

socket-security bot commented Feb 18, 2025

New and updated dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@ledgerhq/[email protected] 🔁 npm/@ledgerhq/[email protected] None 0 3.1 MB ldg-github-ci
npm/@ledgerhq/[email protected] 🔁 npm/@ledgerhq/[email protected] None 0 142 kB ldg-github-ci
npm/@ledgerhq/[email protected] 🔁 npm/@ledgerhq/[email protected] None 0 138 kB ldg-github-ci
npm/@ledgerhq/[email protected] 🔁 npm/@ledgerhq/[email protected] None 0 2.35 MB ldg-github-ci
npm/@ledgerhq/[email protected] 🔁 npm/@ledgerhq/[email protected] None 0 270 kB ldg-github-ci
npm/@ledgerhq/[email protected] 🔁 npm/@ledgerhq/[email protected] None 0 402 kB ldg-github-ci
npm/@metamask/[email protected] 🔁 npm/@metamask/[email protected] None 0 1.48 MB metamaskbot
npm/@metamask/[email protected] 🔁 npm/@metamask/[email protected] None 0 292 kB metamaskbot
npm/@metamask/[email protected] 🔁 npm/@metamask/[email protected] None +1 450 kB metamaskbot
npm/@metamask/[email protected] 🔁 npm/@metamask/[email protected] None 0 148 kB metamaskbot
npm/@metamask/[email protected] network 0 1.96 MB metamaskbot
npm/@metamask/[email protected] 🔁 npm/@metamask/[email protected] None 0 2.18 MB metamaskbot
npm/@solana/[email protected] None 0 198 kB lorisleiva
npm/@solana/[email protected] None 0 51.4 kB lorisleiva
npm/@solana/[email protected] None 0 495 kB lorisleiva
npm/@solana/[email protected] None 0 246 kB lorisleiva
npm/@solana/[email protected] None 0 208 kB lorisleiva
npm/@solana/[email protected] None +1 1.39 MB lorisleiva
npm/@types/[email protected] None 0 120 kB types
npm/[email protected] environment 0 186 kB abetomo
npm/[email protected] 🔁 npm/[email protected] None 0 16.1 kB satazor
npm/[email protected] 🔁 npm/[email protected] None 0 4.48 MB icambron

View full report↗︎

Copy link

socket-security bot commented Feb 18, 2025

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Alert Package NoteSourceCI
Network access npm/@metamask/[email protected] 🚫
Network access npm/@metamask/[email protected] 🚫
Network access npm/@metamask/[email protected] 🚫
Network access npm/@metamask/[email protected] 🚫

View full report↗︎

Next steps

What is network access?

This module accesses the network.

Packages should remove all network access that is functionally unnecessary. Consumers should audit network access to ensure legitimate use.

Take a deeper look at the dependency

Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support [AT] socket [DOT] dev.

Remove the package

If you happen to install a dependency that Socket reports as Known Malware you should immediately remove it and select a different dependency. For other alert types, you may may wish to investigate alternative packages or consider if there are other ways to mitigate the specific risk posed by the dependency.

Mark a package as acceptable risk

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of ecosystem/package-name@version specifiers. e.g. @SocketSecurity ignore npm/[email protected] or ignore all packages with @SocketSecurity ignore-all

@sethkfman sethkfman marked this pull request as ready for review February 18, 2025 17:20
@sethkfman sethkfman requested review from a team as code owners February 18, 2025 17:20
Copy link
Contributor

@sethkfman sethkfman left a comment

Choose a reason for hiding this comment

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

LGTM

@sethkfman sethkfman merged commit d5f6bcb into stable Feb 18, 2025
34 of 38 checks passed
@sethkfman sethkfman deleted the release/7.40.0 branch February 18, 2025 19:15
@github-actions github-actions bot locked and limited conversation to collaborators Feb 18, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Run Smoke E2E Triggers smoke e2e on Bitrise team-mobile-platform Mobile Platform team
Projects
None yet
Development

Successfully merging this pull request may close these issues.