Skip to content

Commit

Permalink
Update the minimum Firefox verson to 68 (#19191)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kripken authored Apr 18, 2023
1 parent 7d37daf commit 604fde4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ See docs/process.md for more on how version tagging works.
since we no longer need scan linker inputs using `llvm-nm`. It also
completely removes the need for the `REVERSE_DEPS` settings which has now
been deprecated. (#18905)
- Bump the default minimum Firefox version from 65 to 68 (#19191).

3.1.36 - 04/16/23
-----------------
Expand Down
4 changes: 2 additions & 2 deletions src/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -1745,10 +1745,10 @@ var AUTO_NATIVE_LIBRARIES = true;
// versions >= MIN_FIREFOX_VERSION
// are desired to work. Pass -sMIN_FIREFOX_VERSION=majorVersion to drop support
// for Firefox versions older than < majorVersion.
// Firefox ESR 60.5 (Firefox 65) was released on 2019-01-29.
// Firefox ESR 68 was released on July 9, 2019.
// MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
// [link]
var MIN_FIREFOX_VERSION = 65;
var MIN_FIREFOX_VERSION = 68;

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

0 comments on commit 604fde4

Please sign in to comment.