Skip to content

Commit

Permalink
Restore support for Chrome 88
Browse files Browse the repository at this point in the history
The extension has minimum_chrome_version set to 88.
This is an important release that includes a fix for CVE-2024-4367, so
to maximize the chance of the fix reaching relevant users, this patch
maintains the same minimum_chrome_version as the previous release.
  • Loading branch information
Rob--W committed May 21, 2024
1 parent 9ee7c07 commit 0ce93fd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const config = JSON.parse(fs.readFileSync(CONFIG_FILE).toString());

const ENV_TARGETS = [
"last 2 versions",
"Chrome >= 98",
"Chrome >= 88",
"Firefox ESR",
"Safari >= 16.4",
"Node >= 18",
Expand All @@ -99,7 +99,6 @@ const BABEL_TARGETS = ENV_TARGETS.join(", ");

const BABEL_PRESET_ENV_OPTS = Object.freeze({
corejs: "3.37.1",
exclude: ["web.structured-clone"],
shippedProposals: true,
useBuiltIns: "usage",
});
Expand Down

0 comments on commit 0ce93fd

Please sign in to comment.