From 3319a313d3b589624d342b650884caaf8cd9ef30 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Tue, 20 Feb 2024 16:21:03 -0800 Subject: [PATCH] Clarify MIN_CHROME_VERSION also applies to modern Edge [NFC] (#18222) --- site/source/docs/tools_reference/settings_reference.rst | 2 ++ src/settings.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/site/source/docs/tools_reference/settings_reference.rst b/site/source/docs/tools_reference/settings_reference.rst index c524e4883f013..141e9c4695ce7 100644 --- a/site/source/docs/tools_reference/settings_reference.rst +++ b/site/source/docs/tools_reference/settings_reference.rst @@ -2441,6 +2441,8 @@ MIN_CHROME_VERSION Specifies the oldest version of Chrome. E.g. pass -sMIN_CHROME_VERSION=58 to drop support for Chrome 57 and older. +This setting also applies to modern Chromium-based Edge, which shares version +numbers with Chrome. Chrome 85 was released on 2020-08-25. MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported. Minimum supported value is 32, which was released on 2014-01-04. diff --git a/src/settings.js b/src/settings.js index 3298c928e6cd9..0339d46974746 100644 --- a/src/settings.js +++ b/src/settings.js @@ -1841,6 +1841,8 @@ var MIN_SAFARI_VERSION = 140100; // Specifies the oldest version of Chrome. E.g. pass -sMIN_CHROME_VERSION=58 to // drop support for Chrome 57 and older. +// This setting also applies to modern Chromium-based Edge, which shares version +// numbers with Chrome. // Chrome 85 was released on 2020-08-25. // MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported. // Minimum supported value is 32, which was released on 2014-01-04.