From baac6ae17ddbc3bf7a655976aba31ed1d131869b Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 25 Nov 2021 01:08:28 -0330 Subject: [PATCH 1/3] Update minimum browser versions The minimum browser versions have been updated to Chromium v80 and Firefox v78. Chromium v80 is >3 years old, and very few users use older versions than that. Firefox v78 is two extended support releases ago (v91 and v102 ar the previous and current ESR releases). --- app/manifest/v2/chrome.json | 2 +- app/manifest/v2/firefox.json | 2 +- babel.config.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/manifest/v2/chrome.json b/app/manifest/v2/chrome.json index e712ae526ceb..a152130d89b2 100644 --- a/app/manifest/v2/chrome.json +++ b/app/manifest/v2/chrome.json @@ -4,5 +4,5 @@ "matches": ["https://metamask.io/*"], "ids": ["*"] }, - "minimum_chrome_version": "66" + "minimum_chrome_version": "80" } diff --git a/app/manifest/v2/firefox.json b/app/manifest/v2/firefox.json index 930e1e758d07..d50b26a27ff8 100644 --- a/app/manifest/v2/firefox.json +++ b/app/manifest/v2/firefox.json @@ -2,7 +2,7 @@ "applications": { "gecko": { "id": "webextension@metamask.io", - "strict_min_version": "68.0" + "strict_min_version": "78.0" } } } diff --git a/babel.config.js b/babel.config.js index c7bbde0ba724..a89ae08c47e5 100644 --- a/babel.config.js +++ b/babel.config.js @@ -5,7 +5,7 @@ module.exports = function (api) { strictMode: true, }, targets: { - browsers: ['chrome >= 66', 'firefox >= 68'], + browsers: ['chrome >= 80', 'firefox >= 78'], }, presets: [ '@babel/preset-typescript', From d4239f61c9f7f36cc84341e5ce1b6bae990497b7 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 23 Feb 2023 18:22:52 -0330 Subject: [PATCH 2/3] Update MV3 build manifests --- app/manifest/v3/chrome.json | 2 +- app/manifest/v3/firefox.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/manifest/v3/chrome.json b/app/manifest/v3/chrome.json index 45d7f699acb2..486692539eb4 100644 --- a/app/manifest/v3/chrome.json +++ b/app/manifest/v3/chrome.json @@ -6,5 +6,5 @@ "matches": ["https://metamask.io/*"], "ids": ["*"] }, - "minimum_chrome_version": "66" + "minimum_chrome_version": "80" } diff --git a/app/manifest/v3/firefox.json b/app/manifest/v3/firefox.json index 918311d54b77..5f0e5672fdbe 100644 --- a/app/manifest/v3/firefox.json +++ b/app/manifest/v3/firefox.json @@ -2,7 +2,7 @@ "applications": { "gecko": { "id": "webextension@metamask.io", - "strict_min_version": "68.0" + "strict_min_version": "78.0" } }, "background": { From d6ccc71eda326eccd93b7b2170169455c78a9e17 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 23 Feb 2023 18:23:30 -0330 Subject: [PATCH 3/3] Update browserlistrc --- .browserslistrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.browserslistrc b/.browserslistrc index b604b35ebbac..c9dd880bb702 100644 --- a/.browserslistrc +++ b/.browserslistrc @@ -1 +1 @@ -chrome >= 66, firefox >= 68 \ No newline at end of file +chrome >= 80, firefox >= 78