From 030789491405b6916b0d25a0f9809e63c591e01a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20B=C3=B6nnemann?= Date: Fri, 3 Apr 2015 20:37:29 +0200 Subject: [PATCH] fix(package): update dependencies and adapt to their internal changes Released as a patch, because this includes security fixes. --- lib/type/commits.js | 6 +++++- package.json | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/type/commits.js b/lib/type/commits.js index 70d2b4c9..c82a8a67 100644 --- a/lib/type/commits.js +++ b/lib/type/commits.js @@ -5,7 +5,11 @@ var git = require('conventional-changelog/lib/git') var efh = require('../error').efh module.exports = function (from, cb) { - git.getCommits({from: from}, efh(cb)(function (commits) { + git.getCommits({ + log: console.log.bind(console), + warn: console.warn.bind(console), + from: from + }, efh(cb)(function (commits) { cb(null, commits) })) } diff --git a/package.json b/package.json index c717321c..93bcafb9 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "abbrev": "^1.0.5", - "conventional-changelog": "0.0.11", + "conventional-changelog": "0.0.17", "error-first-handler": "^1.0.1", "git-head": "^1.2.1", "github": "^0.2.3", @@ -18,7 +18,7 @@ "minimist": "^1.1.0", "parse-github-repo-url": "^1.0.0", "request": "^2.53.0", - "semver": "^4.2.0" + "semver": "^4.3.3" }, "devDependencies": { "github-release-fake-server": "^1.3.0",