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

git-log-utils

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-log-utils - npm Package Compare versions

Comparing version 0.1.6 to 0.2.0

9

CHANGELOG.md

@@ -0,1 +1,10 @@

## [0.2.0](https://github.com/littlebee/git-log-utils.git/compare/0.1.6...0.2.0) (2016-03-87)
Thank you @Faleij the critical windows fix. Did I ever tell you, you're my hero. :)
### New Features
* [25c137c](https://github.com/littlebee/git-log-utils.git/commit/25c137cfa9f1c9f223f71ac49c335f4ab6aa0a25) now working on windows!
### Other Commits
* [929370b](https://github.com/littlebee/git-log-utils.git/commit/929370b386669af1705249384efba5a6a04d849d) origin/master
## [0.1.6](https://github.com/littlebee/git-log-utils.git/compare/0.1.5...0.1.6) (2016-03-79)

@@ -2,0 +11,0 @@ remove accidental console.log left behind

6

lib/git-log-utils.js

@@ -46,3 +46,3 @@ // Generated by CoffeeScript 1.9.3

format = ("{\"id\": \"%H\", \"authorName\": \"%an\", \"relativeDate\": \"%cr\", \"authorDate\": %at, " + " \"message\": \"%s\", \"body\": \"%b\", \"hash\": \"%h\"}").replace(/\"/g, "#/dquotes/");
flags = " --pretty='format:" + format + "' --topo-order --date=local --numstat";
flags = " --pretty=\"format:" + format + "\" --topo-order --date=local --numstat";
fstats = Fs.statSync(fileName);

@@ -59,3 +59,5 @@ if (fstats.isDirectory()) {

}
return ChildProcess.execSync(cmd).toString();
return ChildProcess.execSync(cmd, {
stdio: 'pipe'
}).toString();
};

@@ -62,0 +64,0 @@

{
"name": "git-log-utils",
"version": "0.1.6",
"version": "0.2.0",
"description": "Utility methods for parsing git log output",

@@ -5,0 +5,0 @@ "main": "lib/git-log-utils.js",

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