Bump default Electron to 10.1.5 (with Chromium 85.0.4183.121) (#1066)

Fixes [CVE-2020-15999](https://github.com/advisories/GHSA-pv36-h7jh-qm62) Heap overflow in the freetype library by upgrading to Electron [10.1.5](https://github.com/electron/electron/releases/tag/v10.1.5) 

https://github.com/electron/electron/pull/26070
This commit is contained in:
Matthew Ruzzi 2020-11-08 17:29:11 -08:00 committed by GitHub
parent 43073cb3f7
commit 2c10d122f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ import * as path from 'path';
export const DEFAULT_APP_NAME = 'APP';
// Update both together
export const DEFAULT_ELECTRON_VERSION = '10.1.0';
export const DEFAULT_CHROME_VERSION = '85.0.4183.87';
export const DEFAULT_ELECTRON_VERSION = '10.1.5';
export const DEFAULT_CHROME_VERSION = '85.0.4183.121';
export const ELECTRON_MAJOR_VERSION = parseInt(
DEFAULT_ELECTRON_VERSION.split('.')[0],