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

ci-npm-update

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ci-npm-update - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

4

CHANGES.md
# The Reivision History of ci-npm-update
## v1.0.8 - 2016/09/30
* Avoid crashes when repository URLs are not a valid git repository (#50, #51)
## v1.0.7 - 2016/09/12

@@ -4,0 +8,0 @@

9

lib/compare_view.js

@@ -14,4 +14,9 @@ "use strict";

}
let data = github_1.GitHubApi.parseUrl(repository.url);
return `https://${data.host}/${data.owner}/${data.repository}`;
try {
let data = github_1.GitHubApi.parseUrl(repository.url);
return `https://${data.host}/${data.owner}/${data.repository}`;
}
catch (e) {
return null;
}
}

@@ -18,0 +23,0 @@ hasRepositoryUrl() {

{
"name": "ci-npm-update",
"version": "1.0.7",
"version": "1.0.8",
"description": "Keep NPM dependencies up-to-date with CI, providing version-to-version diff for each library",

@@ -5,0 +5,0 @@ "repository": {

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