Skip to content

Commit

Permalink
Bump minimum Chrome version to 66 (#11995)
Browse files Browse the repository at this point in the history
This PR updates our minimum supported Chrome version from 63 to 66, so that we may use the `AbortController` browser API without polyfilling it.

Our minimum Firefox version supports the `AbortController`, but our current minimum Chrome version (63, released in December 2017) does not. Chrome shipped the `AbortController` in version 66, in April 2018. We have determined that an extremely small number of users are on Chrome 63 < 66, and that this change is therefore acceptable.
  • Loading branch information
rekmarks authored Sep 1, 2021
1 parent aba3968 commit 8d9989c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/manifest/chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"matches": ["https://metamask.io/*"],
"ids": ["*"]
},
"minimum_chrome_version": "63"
"minimum_chrome_version": "66"
}
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = function (api) {
'@babel/preset-env',
{
targets: {
browsers: ['chrome >= 63', 'firefox >= 68'],
browsers: ['chrome >= 66', 'firefox >= 68'],
},
},
],
Expand Down

0 comments on commit 8d9989c

Please sign in to comment.