diff options
| author | yo mama <pepper@scannerjammer.com> | 2015-04-04 01:00:59 -0700 |
|---|---|---|
| committer | yo mama <pepper@scannerjammer.com> | 2015-04-04 01:00:59 -0700 |
| commit | c7c22e3db1c826bcfb2bc66651ec480aae0d4ae0 (patch) | |
| tree | 8546df448afef40d3814d2581f4dacff7cebb87f /node_modules/webworker-threads/CHANGES.md | |
Diffstat (limited to 'node_modules/webworker-threads/CHANGES.md')
| -rw-r--r-- | node_modules/webworker-threads/CHANGES.md | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/node_modules/webworker-threads/CHANGES.md b/node_modules/webworker-threads/CHANGES.md new file mode 100644 index 0000000..c956a56 --- /dev/null +++ b/node_modules/webworker-threads/CHANGES.md @@ -0,0 +1,73 @@ +## 0.4.6 + +### Bug Fixes + +* Compatibility with Node.js 0.10. + +## 0.4.5 + +### Bug Fixes + +* new Worker("filename.js") was broken on OS X. (@dfellis) + +## 0.4.3 + +### Bug Fixes + +* Fix Linux compilation issue introduced in 0.4.1. (@dfellis) + +* `importScripts` now checks if the files have been read entirely, + instead of (potentially) evaluating part of the file in case + of filesystem failure. + +## 0.4.2 + +### Global Worker API + +* Set `onmessage = function(event) { ... }` directly now works + as specced. (Previously it required `self.onmessage = ...`.) + +## 0.4.1 + +### Global Worker API + +* Add `importScripts` for loading on-disk files. + +* Add `console.log` and `console.error` from thread.js. + +## 0.4.0 + +* Support for Windows with Node.js 0.9.3+. + +## 0.3.2 + +* Fix BSON building on SunOS. + +## 0.3.1 + +* Switch to BSON instead of JSON for message serialization. + + Note that neither one supports circular structures or + native buffer objects yet. + +## 0.3.0 + +* Require Node.js 0.8. + +## 0.2.3 + +* Add SunOS to supported OSs; tested on Linux. + +## 0.2.2 + +* Allow an empty `new Worker()` constructor. + +* Update API documentation in README. + +## 0.2.1 + +* Allow any JSON-serializable structures in postMessage/onmessage. + +## 0.2.0 + +* Initial release. |
