Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

electron-osx-sign

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electron-osx-sign - npm Package Compare versions

Comparing version 0.4.4 to 0.4.5

4

bin/electron-osx-sign-usage.txt

@@ -59,2 +59,6 @@

--timestamp=timestamp
Specify the URL of the timestamp authority server, default to server provided by Apple.
Disable the timestamp service with ``none''.
--type=type

@@ -61,0 +65,0 @@ Specify whether to sign app for development or for distribution.

2

package.json
{
"name": "electron-osx-sign",
"version": "0.4.4",
"version": "0.4.5",
"description": "Codesign Electron macOS apps",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -204,2 +204,7 @@ # electron-osx-sign [![npm][npm_img]][npm_url] [![Build Status][travis_img]][travis_url]

`timestamp` - *String*
Specify the URL of the timestamp authority server, default to server provided by Apple. Please note that this default server may not support signatures not furnished by Apple.
Disable the timestamp service with `none`.
`type` - *String*

@@ -351,6 +356,6 @@

> electron-osx-sign@0.4.4 pretest electron-osx-sign
> electron-osx-sign@0.4.5 pretest electron-osx-sign
> rimraf test/work
> electron-osx-sign@0.4.4 test electron-osx-sign
> electron-osx-sign@0.4.5 test electron-osx-sign
> standard && tape test

@@ -364,74 +369,55 @@

ok 1 app signed
ok 2 app flattened
# defaults-test:v0.30.8-darwin-x64
ok 2 app signed
# defaults-test:v0.31.2-darwin-x64
ok 3 app signed
ok 4 app flattened
# defaults-test:v0.31.2-darwin-x64
ok 5 app signed
ok 6 app flattened
# defaults-test:v0.32.3-darwin-x64
ok 7 app signed
ok 8 app flattened
ok 4 app signed
# defaults-test:v0.33.9-darwin-x64
ok 9 app signed
ok 10 app flattened
ok 5 app signed
# defaults-test:v0.34.5-darwin-x64
ok 11 app signed
ok 12 app flattened
ok 6 app signed
# defaults-test:v0.34.5-mas-x64
ok 13 app signed
ok 14 app flattened
ok 7 app signed
# defaults-test:v0.35.6-darwin-x64
ok 15 app signed
ok 16 app flattened
ok 8 app signed
# defaults-test:v0.35.6-mas-x64
ok 17 app signed
ok 18 app flattened
ok 9 app signed
# defaults-test:v0.36.12-darwin-x64
ok 19 app signed
ok 20 app flattened
ok 10 app signed
# defaults-test:v0.36.12-mas-x64
ok 21 app signed
ok 22 app flattened
ok 11 app signed
# defaults-test:v0.37.8-darwin-x64
ok 23 app signed
ok 24 app flattened
ok 12 app signed
# defaults-test:v0.37.8-mas-x64
ok 25 app signed
ok 26 app flattened
ok 13 app signed
# defaults-test:v1.0.2-darwin-x64
ok 27 app signed
ok 28 app flattened
ok 14 app signed
# defaults-test:v1.0.2-mas-x64
ok 29 app signed
ok 30 app flattened
ok 15 app signed
# defaults-test:v1.1.3-darwin-x64
ok 31 app signed
ok 32 app flattened
ok 16 app signed
# defaults-test:v1.1.3-mas-x64
ok 33 app signed
ok 34 app flattened
ok 17 app signed
# defaults-test:v1.2.8-darwin-x64
ok 35 app signed
ok 36 app flattened
ok 18 app signed
# defaults-test:v1.2.8-mas-x64
ok 37 app signed
ok 38 app flattened
ok 19 app signed
# defaults-test:v1.3.7-darwin-x64
ok 39 app signed
ok 40 app flattened
ok 20 app signed
# defaults-test:v1.3.7-mas-x64
ok 41 app signed
ok 42 app flattened
# defaults-test:v1.4.14-darwin-x64
ok 43 app signed
ok 44 app flattened
# defaults-test:v1.4.14-mas-x64
ok 45 app signed
ok 46 app flattened
ok 21 app signed
# defaults-test:v1.4.15-darwin-x64
ok 22 app signed
# defaults-test:v1.4.15-mas-x64
ok 23 app signed
# defaults-test:v1.6.8-darwin-x64
ok 24 app signed
# defaults-test:v1.6.8-mas-x64
ok 25 app signed
# teardown
1..46
# tests 46
# pass 46
1..25
# tests 25
# pass 25

@@ -438,0 +424,0 @@ # ok

@@ -146,2 +146,5 @@ /**

}
if (opts.timestamp) {
args.push('--timestamp', opts.timestamp)
}

@@ -148,0 +151,0 @@ var promise

var sign = require('..')
var flat = require('..').flat

@@ -22,5 +21,2 @@ var waterfall = require('run-waterfall')

t.pass('app signed')
flat(Object.create(opts), cb)
}, function (cb) {
t.pass('app flattened')
cb()

@@ -27,0 +23,0 @@ }

@@ -18,4 +18,5 @@ {

"1.3.7",
"1.4.14"
"1.4.15",
"1.6.8"
]
}

@@ -36,5 +36,7 @@ /**

var identityFound = line.substring(line.indexOf('"') + 1, line.lastIndexOf('"'))
var identityHashFound = line.substring(line.indexOf(')') + 2, line.indexOf('"') - 1)
debuglog('Identity:', '\n',
'> Name:', identityFound)
return identityFound
'> Name:', identityFound, '\n',
'> Hash:', identityHashFound)
return identityHashFound
}

@@ -41,0 +43,0 @@ })

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