New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

electron-notarize

Package Overview
Dependencies
Maintainers
5
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electron-notarize - npm Package Compare versions

Comparing version 1.2.1 to 1.2.2

5

lib/spawn.js

@@ -13,3 +13,6 @@ Object.defineProperty(exports, "__esModule", { value: true });

child.stderr.on('data', dataHandler);
return new Promise(resolve => {
return new Promise((resolve, reject) => {
child.on('error', err => {
reject(err);
});
child.on('exit', code => {

@@ -16,0 +19,0 @@ d(`cmd ${cmd} terminated with code: ${code}`);

9

package.json
{
"name": "electron-notarize",
"version": "1.2.1",
"version": "1.2.2",
"description": "Notarize your Electron app",

@@ -9,9 +9,9 @@ "main": "lib/index.js",

"license": "MIT",
"homepage": "https://github.com/electron/electron-notarize#readme",
"homepage": "https://github.com/electron/notarize#readme",
"repository": {
"type": "git",
"url": "https://github.com/electron/electron-notarize.git"
"url": "https://github.com/electron/notarize.git"
},
"bugs": {
"url": "https://github.com/electron/electron-notarize/issues"
"url": "https://github.com/electron/notarize/issues"
},

@@ -38,3 +38,2 @@ "scripts": {

"prettier": "^1.18.2",
"semantic-release": "^17.2.3",
"ts-jest": "^25.2.1",

@@ -41,0 +40,0 @@ "typescript": "^3.6.4"

@@ -6,3 +6,3 @@ Electron Notarize

[![CircleCI status](https://circleci.com/gh/electron/electron-notarize.svg?style=svg)](https://circleci.com/gh/electron/electron-notarize)
[![CircleCI status](https://circleci.com/gh/electron/notarize.svg?style=shield)](https://circleci.com/gh/electron/notarize)
[![NPM package](https://img.shields.io/npm/v/electron-notarize)](https://npm.im/electron-notarize)

@@ -37,6 +37,8 @@

3. [An app-specific password for your ADC account’s Apple ID](https://support.apple.com/HT204397).
4. Your app may need to be signed with `hardened-runtime` and the following entitlements:
4. Your app may need to be signed with `hardened-runtime`, including the following entitlement:
1. `com.apple.security.cs.allow-jit`
2. `com.apple.security.cs.allow-unsigned-executable-memory`
If you are using Electron 11 or below, you must add the `com.apple.security.cs.allow-unsigned-executable-memory` entitlement too.
When using version 12+, this entitlement should not be applied as it increases your app's attack surface.
## API

@@ -43,0 +45,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc