Skip to content

Commit fdba65b

Browse files
authored
Merge branch 'main' into jongsun/build/enable-react-compiler-webpack
2 parents 00b19d0 + 6fdfd8a commit fdba65b

File tree

88 files changed

+2576
-597
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+2576
-597
lines changed

.github/workflows/create-release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
pull-requests: write
8383
steps:
8484
- name: Create Release PR
85-
uses: MetaMask/github-tools/.github/actions/[email protected].0
85+
uses: MetaMask/github-tools/.github/actions/[email protected].2
8686
with:
8787
platform: extension
8888
checkout-base-branch: ${{ needs.resolve-bases.outputs.checkout_base }}

.github/workflows/run-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
RUN_ID: ${{ github.run_id }}
7575
PR_NUMBER: ${{ github.event.pull_request.number || '' }}
7676
TEST_SUITE_NAME: ${{ inputs.test-suite-name }}
77-
IS_SIDEPANEL: true
77+
IS_SIDEPANEL: false
7878
steps:
7979
- name: Checkout and setup environment
8080
uses: MetaMask/action-checkout-and-setup@v1

.github/workflows/update-release-changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ jobs:
4848
pull-requests: write
4949
steps:
5050
- name: Update Release Changelog
51-
uses: MetaMask/github-tools/.github/actions/[email protected].0
51+
uses: MetaMask/github-tools/.github/actions/[email protected].2
5252
with:
5353
release-branch: ${{ github.ref_name }}
5454
repository-url: ${{ github.server_url }}/${{ github.repository }}
5555
platform: extension
5656
previous-version-ref: 'null'
57-
github-tools-version: v1.1.0
57+
github-tools-version: v1.1.2
5858
github-token: ${{ secrets.PR_TOKEN }}

app/_locales/en/messages.json

Lines changed: 30 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/en_GB/messages.json

Lines changed: 30 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
2.3 KB
Binary file not shown.

app/manifest/v3/_base.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@
8787
"unlimitedStorage",
8888
"webRequest",
8989
"offscreen",
90-
"identity",
91-
"sidePanel"
90+
"identity"
9291
],
9392
"sandbox": {
9493
"pages": ["snaps/index.html"]

app/manifest/v3/chrome.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,5 @@
1010
"matches": ["http://*/*", "https://*/*"],
1111
"ids": ["*"]
1212
},
13-
"minimum_chrome_version": "115",
14-
"side_panel": {
15-
"default_path": "sidepanel.html"
16-
}
13+
"minimum_chrome_version": "115"
1714
}

app/scripts/controller-init/controller-list.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ import {
8383
BackendWebSocketService,
8484
} from '@metamask/core-backend';
8585
import { ClaimsController, ClaimsService } from '@metamask/claims-controller';
86+
import {
87+
ProfileMetricsController,
88+
ProfileMetricsService,
89+
} from '@metamask/profile-metrics-controller';
8690
import OnboardingController from '../controllers/onboarding';
8791
import { PreferencesController } from '../controllers/preferences-controller';
8892
import SwapsController from '../controllers/swaps';
@@ -197,7 +201,9 @@ export type Controller =
197201
| AccountActivityService
198202
| MultichainAccountService
199203
| NetworkEnablementController
200-
| ClaimsService;
204+
| ClaimsService
205+
| ProfileMetricsController
206+
| ProfileMetricsService;
201207

202208
/**
203209
* Flat state object for all controllers supporting or required by modular initialization.
@@ -270,4 +276,5 @@ export type ControllerFlatState = AccountOrderController['state'] &
270276
NftController['state'] &
271277
NftDetectionController['state'] &
272278
NetworkEnablementController['state'] &
273-
AccountTrackerController['state'];
279+
AccountTrackerController['state'] &
280+
ProfileMetricsController['state'];

0 commit comments

Comments
 (0)