Skip to content

Commit

Permalink
fix(package): update dependencies and adapt to their internal changes
Browse files Browse the repository at this point in the history
Released as a patch, because this includes security fixes.
  • Loading branch information
boennemann committed Apr 3, 2015
1 parent 06c464f commit 0307894
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion lib/type/commits.js
Expand Up @@ -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)
}))
}
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 0307894

Please sign in to comment.