[tor-commits] [tor-browser-bundle/master] Bug 22558: Don't update OS X 10.7.x and 10.8.x to Tor Browser 7.0

gk at torproject.org gk at torproject.org
Sat Jun 10 18:43:15 UTC 2017


commit d7a6bc035327a2d92e8b4194e4c89363dede443b
Author: Georg Koppen <gk at torproject.org>
Date:   Sat Jun 10 18:41:24 2017 +0000

    Bug 22558: Don't update OS X 10.7.x and 10.8.x to Tor Browser 7.0
    
    "10.9" was the wrong `minSupportedOSVersion` for preventing OS X 10.7.x
    and 10.8.x users from getting updated to Tor Browser 7. That it worked
    for OS X 10.6.x was only by chance according to the release history table
    (https://en.wikipedia.org/wiki/Darwin_(operating_system)#Release_history).
    
    We fix that by choosing "13.0.0" (for OS X 10.9 as minimum).
---
 tools/update-responses/config.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/update-responses/config.yml b/tools/update-responses/config.yml
index 4234bcc..f3f3e26 100644
--- a/tools/update-responses/config.yml
+++ b/tools/update-responses/config.yml
@@ -45,6 +45,6 @@ versions:
         win32:
             minSupportedInstructionSet: SSE2
         osx32:
-            minSupportedOSVersion: 10.9
+            minSupportedOSVersion: 13.0.0
         osx64:
-            minSupportedOSVersion: 10.9
+            minSupportedOSVersion: 13.0.0



More information about the tor-commits mailing list