Skip to content

Commit d9502f6

Browse files
authored
Merge branch 'main' into ogp/36966
2 parents 5771055 + 5b30b1f commit d9502f6

File tree

238 files changed

+12765
-2885
lines changed

Some content is hidden

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

238 files changed

+12765
-2885
lines changed

.github/scripts/post-nightly-builds.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ async function main() {
1212
SLACK_NIGHTLY_BUILDS_WEBHOOK_URL:
1313
process.env.SLACK_NIGHTLY_BUILDS_WEBHOOK_URL || '',
1414
BUILD_STATUS: process.env.BUILD_STATUS || 'unknown',
15+
BUILD_VERSION: process.env.BUILD_VERSION || '0',
1516
};
1617

1718
if (!env.RUN_ID) throw new Error('RUN_ID not found');
@@ -41,7 +42,9 @@ async function main() {
4142
// Handle unknown or invalid status
4243
console.log(`❓ Unknown build status: ${env.BUILD_STATUS}`);
4344
console.log('⚠️ Skipping Slack notification due to unknown status');
44-
throw new Error(`Invalid BUILD_STATUS: ${env.BUILD_STATUS}. Expected 'success' or 'failure'.`);
45+
throw new Error(
46+
`Invalid BUILD_STATUS: ${env.BUILD_STATUS}. Expected 'success' or 'failure'.`,
47+
);
4548
}
4649

4750
async function postFailureNotification(env: any, version: string) {
@@ -182,14 +185,16 @@ async function postFailureNotification(env: any, version: string) {
182185
}
183186

184187
async function postSuccessNotification(env: any, version: string) {
188+
const experimentalVersion = `${version}-experimental.${env.BUILD_VERSION}`;
189+
185190
const buildMap = {
186191
builds: {
187192
chrome: `${env.HOST_URL}/build-dist-browserify/builds/metamask-chrome-${version}.zip`,
188193
firefox: `${env.HOST_URL}/build-dist-mv2-browserify/builds/metamask-firefox-${version}.zip`,
189194
},
190195
'builds (experimental)': {
191-
chrome: `${env.HOST_URL}/build-experimental-browserify/builds/metamask-experimental-chrome-${version}.zip`,
192-
firefox: `${env.HOST_URL}/build-experimental-mv2-browserify/builds/metamask-experimental-firefox-${version}.zip`,
196+
chrome: `${env.HOST_URL}/build-experimental-browserify/builds/metamask-experimental-chrome-${experimentalVersion}.zip`,
197+
firefox: `${env.HOST_URL}/build-experimental-mv2-browserify/builds/metamask-experimental-firefox-${experimentalVersion}.zip`,
193198
},
194199
};
195200

.github/workflows/check-template-and-add-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
issues:
55
types: [opened, edited, labeled, unlabeled, reopened]
66
pull_request_target:
7-
types: [opened, edited, labeled, unlabeled, reopened]
7+
types: [opened, edited, labeled, unlabeled, reopened, synchronize]
88
merge_group:
99

1010
jobs:

.yarn/patches/@metamask-assets-controllers-npm-81.0.0-706c32028b.patch

Lines changed: 0 additions & 26 deletions
This file was deleted.

.yarn/patches/@metamask-network-controller-npm-24.0.1-d913bfdf67.patch

Lines changed: 0 additions & 35 deletions
This file was deleted.

.yarn/patches/@microsoft-fetch-event-source-npm-2.0.1-679d34d9ba.patch

Lines changed: 0 additions & 17 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ If you are not a MetaMask Internal Developer, or are otherwise developing on a f
4747

4848
## Building on your local machine
4949

50-
- Install [Node.js](https://nodejs.org) version 20
50+
- Install [Node.js](https://nodejs.org) version 22
5151
- If you are using [nvm](https://github.com/nvm-sh/nvm#installing-and-updating) (recommended) running `nvm use` will automatically choose the right node version for you.
5252
- Enable Corepack by executing the command `corepack enable` within the metamask-extension project. Corepack is a utility included with Node.js by default. It manages Yarn on a per-project basis, using the version specified by the `packageManager` property in the project's package.json file. Please note that modern releases of [Yarn](https://yarnpkg.com/getting-started/install) are not intended to be installed globally or via npm.
5353
- Duplicate `.metamaskrc.dist` within the root and rename it to `.metamaskrc` by running `cp .metamaskrc{.dist,}`.

app/_locales/en/messages.json

Lines changed: 37 additions & 2 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: 37 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/ga/messages.json

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

app/images/bank-transfer.png

8.89 KB
Loading

0 commit comments

Comments
 (0)