Skip to content

Commit

Permalink
chore(release): v4.1.5 update min engine ^4.7
Browse files Browse the repository at this point in the history
- dep: update engine support ^4.7||^6.9.2||^7.3 to be same as `async-hook`'s
- dep: update `async-hook` to 1.7.1
- test: give `fs.watchFile` a little more time to pass on Travis CI
  • Loading branch information
Jeff-Lewis committed Jan 23, 2017
1 parent f2e3ea3 commit ed39808
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules/
.idea/
!.idea/runConfigurations
npm-debug.log
.vscode
2 changes: 1 addition & 1 deletion .idea/runConfigurations/npm_test.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ language: node_js
node_js:
- "4"
- "6"
- "7"

sudo: false
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### v4.1.5
* dep: update engine support ^4.7||^6.9.2||^7.3 to be same as `async-hook`'s
* dep: update `async-hook` to 1.7.1
* test: give `fs.watchFile` a little more time to pass on Travis CI

### v4.1.4
* supports node 4.5.0 now
* chore(ci): add node 4 to travis
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cls-hooked",
"version": "4.1.4",
"description": "CLS using AsynWrap instead of async-listener - Node >= 4.5.0",
"version": "4.1.5",
"description": "CLS using AsynWrap instead of async-listener - Node >= 4.7.0",
"main": "context.js",
"files": [
"context.js"
Expand All @@ -28,7 +28,11 @@
"license": "BSD-2-Clause",
"engineStrict": true,
"engines": {
"node": ">=4.5.0"
"node": "^4.7 || ^6.9.2 || ^7.3"
},
"dependencies": {
"async-hook": "^1.7.1",
"emitter-listener": "^1.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
Expand All @@ -39,9 +43,5 @@
"superagent": "^2.2.0",
"tap": "^6.3.2",
"tap-mocha-reporter": "0.0.27"
},
"dependencies": {
"async-hook": "^1.5.2",
"emitter-listener": "^1.0.1"
}
}
2 changes: 1 addition & 1 deletion test/tap/fs.tap.js
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ test("continuation-local state with MakeCallback and fs module", function (t) {

setTimeout(function poke() {
fs.appendFileSync(FILENAME, 'still a test');
}, 20);
}, 100);
});
});
});
Expand Down

0 comments on commit ed39808

Please sign in to comment.