Skip to content

Commit 604fde4

Browse files
authored
Update the minimum Firefox verson to 68 (#19191)
This is still a version from 3 years ago, so it is a very small change, but it does bring us to a version that has wasm-bigint enabled, which will help #19156
1 parent 7d37daf commit 604fde4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ChangeLog.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ See docs/process.md for more on how version tagging works.
2727
since we no longer need scan linker inputs using `llvm-nm`. It also
2828
completely removes the need for the `REVERSE_DEPS` settings which has now
2929
been deprecated. (#18905)
30+
- Bump the default minimum Firefox version from 65 to 68 (#19191).
3031

3132
3.1.36 - 04/16/23
3233
-----------------

src/settings.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1745,10 +1745,10 @@ var AUTO_NATIVE_LIBRARIES = true;
17451745
// versions >= MIN_FIREFOX_VERSION
17461746
// are desired to work. Pass -sMIN_FIREFOX_VERSION=majorVersion to drop support
17471747
// for Firefox versions older than < majorVersion.
1748-
// Firefox ESR 60.5 (Firefox 65) was released on 2019-01-29.
1748+
// Firefox ESR 68 was released on July 9, 2019.
17491749
// MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
17501750
// [link]
1751-
var MIN_FIREFOX_VERSION = 65;
1751+
var MIN_FIREFOX_VERSION = 68;
17521752

17531753
// Specifies the oldest version of desktop Safari to target. Version is encoded
17541754
// in MMmmVV, e.g. 70101 denotes Safari 7.1.1.

0 commit comments

Comments
 (0)