Skip to content

Commit

Permalink
Update minimum browser versions (#12847)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
Gudahtt authored Feb 24, 2023
1 parent 2ccc197 commit 524ab66
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
chrome >= 66, firefox >= 68
chrome >= 80, firefox >= 78
2 changes: 1 addition & 1 deletion app/manifest/v2/chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"matches": ["https://metamask.io/*"],
"ids": ["*"]
},
"minimum_chrome_version": "66"
"minimum_chrome_version": "80"
}
2 changes: 1 addition & 1 deletion app/manifest/v2/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"applications": {
"gecko": {
"id": "webextension@metamask.io",
"strict_min_version": "68.0"
"strict_min_version": "78.0"
}
}
}
2 changes: 1 addition & 1 deletion app/manifest/v3/chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"matches": ["https://metamask.io/*"],
"ids": ["*"]
},
"minimum_chrome_version": "66"
"minimum_chrome_version": "80"
}
2 changes: 1 addition & 1 deletion app/manifest/v3/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"applications": {
"gecko": {
"id": "webextension@metamask.io",
"strict_min_version": "68.0"
"strict_min_version": "78.0"
}
},
"background": {
Expand Down
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 524ab66

Please sign in to comment.