From 5245c28f3c9b946d85ad3064856e97958f6c6bcb Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 28 Apr 2026 16:22:14 -0700 Subject: [PATCH] Update comment regarding default safari version The minimum version was updated in #23312, but this comment was missed. --- site/source/docs/tools_reference/settings_reference.rst | 8 +++----- src/settings.js | 8 +++----- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/site/source/docs/tools_reference/settings_reference.rst b/site/source/docs/tools_reference/settings_reference.rst index b7b7a71f013f9..71a04ceb4fd8d 100644 --- a/site/source/docs/tools_reference/settings_reference.rst +++ b/site/source/docs/tools_reference/settings_reference.rst @@ -2865,11 +2865,9 @@ MIN_SAFARI_VERSION ================== Specifies the oldest version of desktop Safari to target. Version is encoded -in MMmmVV, e.g. 70101 denotes Safari 7.1.1. -Safari 14.1.0 was released on April 26, 2021, bundled with macOS 11.0 Big -Sur and iOS 14.5. -The previous default, Safari 12.0.0 was released on September 17, 2018, -bundled with macOS 10.14.0 Mojave. +in MMmmVV, e.g. 160101 denotes Safari 16.1.1. +Safari 15 was released on September 20, 2021, bundled with macOS 12.0 +Monterey and iOS 15. NOTE: Emscripten is unable to produce code that would work in iOS 9.3.5 and older, i.e. iPhone 4s, iPad 2, iPad 3, iPad Mini 1, Pod Touch 5 and older, see https://github.com/emscripten-core/emscripten/pull/7191. diff --git a/src/settings.js b/src/settings.js index e6e95c26c1bae..7875449ed6099 100644 --- a/src/settings.js +++ b/src/settings.js @@ -1881,11 +1881,9 @@ var AUTO_NATIVE_LIBRARIES = true; var MIN_FIREFOX_VERSION = 79; // Specifies the oldest version of desktop Safari to target. Version is encoded -// in MMmmVV, e.g. 70101 denotes Safari 7.1.1. -// Safari 14.1.0 was released on April 26, 2021, bundled with macOS 11.0 Big -// Sur and iOS 14.5. -// The previous default, Safari 12.0.0 was released on September 17, 2018, -// bundled with macOS 10.14.0 Mojave. +// in MMmmVV, e.g. 160101 denotes Safari 16.1.1. +// Safari 15 was released on September 20, 2021, bundled with macOS 12.0 +// Monterey and iOS 15. // NOTE: Emscripten is unable to produce code that would work in iOS 9.3.5 and // older, i.e. iPhone 4s, iPad 2, iPad 3, iPad Mini 1, Pod Touch 5 and older, // see https://github.com/emscripten-core/emscripten/pull/7191.