forked from othiym23/node-continuation-local-storage
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
209 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules/ | ||
.idea/ | ||
!.idea/runConfigurations | ||
npm-debug.log |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
script: | ||
- "npm test" | ||
|
||
language: node_js | ||
|
||
node_js: | ||
- "6" | ||
|
||
sudo: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
|
||
### v4.1.0 | ||
* Feature: add `runAndReturn` method to get return value of `func` (from ). | ||
|
||
|
||
### v4.0.1 | ||
* Same API but major change to implementation. Uses **unofficial** [AsyncWrap](https://github.com/nodejs/node-eps/blob/async-wrap-ep/XXX-asyncwrap-api.md) instead of [async-listener](https://github.com/othiym23/async-listener). | ||
|
||
|
||
### v3.1.0 (2014-07-28): | ||
|
||
* Updated to use `[email protected]` to pick up bug fixes. | ||
|
||
### v3.0.0 (2013-12-14): | ||
|
||
* Removed the notion of a "default" or "global" context per namespace. It only | ||
existed to create a simpler interface for developing and testing the module, | ||
and created the potential for nasty information disclosure bugs (see [issue | ||
#14](https://github.com/othiym23/node-continuation-local-storage/issues/14) | ||
for details). This is potentially a breaking change, if you're depending on | ||
the global context, so semver says we have to bump the major version. | ||
* Removed the notion of a "default" or "global" context per namespace. | ||
It only existed to create a simpler interface for developing and testing the module, | ||
and created the potential for nasty information disclosure bugs | ||
(see [issue #14](https://github.com/othiym23/node-continuation-local-storage/issues/14) | ||
for details). This is potentially a breaking change, if you're depending on the global context, | ||
so semver says we have to bump the major version. | ||
* Added this changelog. | ||
|
||
### v2.6.2 (2013-12-07): | ||
|
@@ -18,8 +27,8 @@ | |
|
||
### v2.6.1 (2013-11-29): | ||
|
||
* `emitter-listener` has been extracted from `shimmer` into a standalone | ||
module for `namespace.bindEmitter()`. | ||
* `emitter-listener` has been extracted from `shimmer` into a standalone module | ||
for `namespace.bindEmitter()`. | ||
|
||
### v2.6.0 (2013-11-27): | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.