1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Set minimum Firefox version to v56.2 to support Waterfox (#7156)

The minimum compatible version of Firefox has been lowered from `60.0`
to `56.2`. It was originally set to `60.0` because that is Firefox ESR,
which currently the minimum Firefox version with security updates.
However Waterfox is based upon Firefox `56.0`, and has backported
security fixes from the ESR release.

This change in minimum version requires no additional transpiling, and
doesn't affect any browser APIs we use.

It does introduce one additional warning in the `addon-linter` about
Firefox for Android `56` lacking support for browser action popups.
However there is no version `56.2` of Firefox for Android, so the
minimum version remains `57` in practice (which does support browser
action popups).
This commit is contained in:
Mark Stacey 2019-09-12 16:55:20 -03:00 committed by GitHub
parent dbbf6986d2
commit 34440d63eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
"applications": {
"gecko": {
"id": "webextension@metamask.io",
"strict_min_version": "60.0"
"strict_min_version": "56.2"
}
},
"default_locale": "en",

View File

@ -8,7 +8,7 @@ module.exports = function (api) {
targets: {
browsers: [
'chrome >= 58',
'firefox >= 60',
'firefox >= 56.2',
],
},
},