From 0d43e239d4c546557503caec3b544f0ccf17395d Mon Sep 17 00:00:00 2001 From: Josh Abernathy Date: Thu, 10 Nov 2016 11:33:01 -0500 Subject: [PATCH 1/2] Update to version 1.2.0 of external frameworks. --- script/update-external-binaries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 999b349e94064ea71e89858f6309c09c1535c256 Mon Sep 17 00:00:00 2001 From: joshaber Date: Thu, 10 Nov 2016 13:35:56 -0500 Subject: [PATCH 2/2] Docit --- docs/api/auto-updater.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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`.