diff --git a/docs/api/auto-updater.md b/docs/api/auto-updater.md index f50dcd091783..9db876eb9c9a 100644 --- a/docs/api/auto-updater.md +++ b/docs/api/auto-updater.md @@ -26,7 +26,10 @@ still some subtle differences on each platform. On macOS, the `autoUpdater` module is built upon [Squirrel.Mac][squirrel-mac], meaning you don't need any special setup to make it work. For server-side -requirements, you can read [Server Support][server-support]. +requirements, you can read [Server Support][server-support]. Note that [App +Transport Security](https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW35) (ATS) applies to all requests made as part of the +update process. Apps that need to disable ATS can add the +`NSAllowsArbitraryLoads` key to their app's plist. **Note:** Your application must be signed for automatic updates on macOS. This is a requirement of `Squirrel.Mac`. diff --git a/script/update-external-binaries.py b/script/update-external-binaries.py index 4494df252629..9754399433f5 100755 --- a/script/update-external-binaries.py +++ b/script/update-external-binaries.py @@ -8,7 +8,7 @@ from lib.config import get_target_arch from lib.util import safe_mkdir, rm_rf, extract_zip, tempdir, download -VERSION = 'v1.1.0' +VERSION = 'v1.2.0' SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) FRAMEWORKS_URL = 'http://github.com/electron/electron-frameworks/releases' \ '/download/' + VERSION