Skip to content

Commit 15f3ca3

Browse files
committed
chore: Bump Firefox outdated browser version
The outdated browser version for Firefox has been bumped to 102. Users on older versions of Firefox will now see a warning saying that their browser is outdated. This is inpreparation for updating our minimum supported Firefox version to 102. 102 is the previous ESR version, which matches our browser support policy (we support the current and previous ESR Firefox versions).
1 parent 624763a commit 15f3ca3

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

ui/helpers/constants/common.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ export const OUTDATED_BROWSER_VERSIONS = {
2121
// or the earliest version that supports our MV3 functionality, whichever is higher
2222
chrome: '<109',
2323
edge: '<109',
24-
// Firefox should match the most recent end-of-life extended support release
25-
firefox: '<91',
24+
// Firefox should match the previous extended support release
25+
// Current ESR: 115
26+
// Previous ESR: 102
27+
firefox: '<102',
2628
// Opera versions correspond to differently numbered Chromium versions.
2729
// Opera should be set to the equivalent of the Chromium version set
2830
// Opera 95 is based on Chromium 109

ui/helpers/utils/util.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,14 +218,14 @@ describe('util', () => {
218218
});
219219
it('should return false when given a modern firefox browser', () => {
220220
const browser = Bowser.getParser(
221-
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/91.0',
221+
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/102.0',
222222
);
223223
const result = util.getIsBrowserDeprecated(browser);
224224
expect(result).toStrictEqual(false);
225225
});
226226
it('should return true when given an outdated firefox browser', () => {
227227
const browser = Bowser.getParser(
228-
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/90.0',
228+
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/91.0',
229229
);
230230
const result = util.getIsBrowserDeprecated(browser);
231231
expect(result).toStrictEqual(true);

0 commit comments

Comments
 (0)