From decc604eb8325422ad32bdc3ccdb417b41d1226a Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Fri, 2 Aug 2019 10:28:41 -0230 Subject: [PATCH] Increase minimum version of Firefox supported (#6939) The minimum version supported is now Firefox 60. This is the current Extended Support Release. Various features we use were not supported by Firefox 53, such as `browser_action.default_popup`, `tabs.query`, and `permissions:unlimitedStorage`. --- .babelrc | 2 +- app/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.babelrc b/.babelrc index 067335f61..a36fc47ee 100644 --- a/.babelrc +++ b/.babelrc @@ -6,7 +6,7 @@ "targets": { "browsers": [ "chrome >= 58", - "firefox >= 53" + "firefox >= 60" ] } } diff --git a/app/manifest.json b/app/manifest.json index a89962d5a..d14149d81 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -22,7 +22,7 @@ "applications": { "gecko": { "id": "webextension@metamask.io", - "strict_min_version": "53.0" + "strict_min_version": "60.0" } }, "default_locale": "en",