Skip to content

Commit

Permalink
Merge pull request #44 from agilecontent/release-v5.1.1
Browse files Browse the repository at this point in the history
Release v5.1.1
  • Loading branch information
rzamana authored Apr 3, 2018
2 parents 255513a + 425e272 commit 263a868
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

## v5.1.1
- [2018-04-03] *patch* [TM-5231](https://jiralabone.atlassian.net/browse/TM-5231) **Add component name on the log**

## v5.1.0
- [2017-09-08] *minor* [TM-4508](https://jiralabone.atlassian.net/browse/TM-4508) **Cache Remote Object**

Expand Down
3 changes: 2 additions & 1 deletion lib/logger-factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ class LoggerFactory {
let logger = bunyan.createLogger({
name: this.opt.name,
streams: streamList,
serializers: serializers
serializers: serializers,
component: this.opt.name
});

return logger;
Expand Down
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "itaas-nodejs-tools",
"version": "5.1.0",
"version": "5.1.1",
"private": true,
"description": "Node.js tools",
"main": "./lib/index.js",
Expand All @@ -14,7 +14,8 @@
"coverage": "istanbul cover --include-all-sources true node_modules/mocha/bin/_mocha -- --timeout 10000 --recursive -R dot -c",
"nodemon": "nodemon --exec \"npm run lint && npm run coverage\"",
"test-unit": "mocha --timeout 10000 --recursive -c test/unit",
"license": "node lib/cmd/license-cmd.js"
"license": "node lib/cmd/license-cmd.js",
"precommit": "eslint ."
},
"repository": {
"type": "git",
Expand All @@ -35,7 +36,7 @@
"license-checker": "^8.0.3",
"lodash": "4.13.1",
"mkdirp": "0.5.1",
"moment": "2.13.0",
"moment": "^2.22.0",
"morgan": "1.7.0",
"request": "^2.81.0",
"uuid": "2.0.2"
Expand All @@ -50,7 +51,8 @@
"nock": "^9.0.14",
"nodemon": "^1.9.2",
"should": "^9.0.1",
"sleep": "^5.1.1"
"sleep": "^5.1.1",
"husky": "0.14.3"
},
"author": "iTaaS",
"license": "ISC",
Expand Down

0 comments on commit 263a868

Please sign in to comment.