UNPKG

2.08 kBPlain TextView Raw
1v0.3.5 -- 2017.03.15
2* Improve documentation
3* Update dependencies
4
5v0.3.4 -- 2015.10.02
6* Add `emitError` extension
7
8v0.3.3 -- 2015.01.30
9* Fix reference to module in benchmarks
10
11v0.3.2 -- 2015.01.20
12* Improve documentation
13* Configure lint scripts
14* Fix spelling of LICENSE
15
16v0.3.1 -- 2014.04.25
17* Fix redefinition of emit method in `pipe`
18* Allow custom emit method name in `pipe`
19
20v0.3.0 -- 2014.04.24
21* Move out from lib folder
22* Do not expose all utilities on main module
23* Support objects which do not inherit from Object.prototype
24* Improve arguments validation
25* Improve internals
26* Remove Makefile
27* Improve documentation
28
29v0.2.2 -- 2013.06.05
30* `unify` functionality
31
32v0.2.1 -- 2012.09.21
33* hasListeners module
34* Simplified internal id (improves performance a little), now it starts with
35 underscore (hint it's private). Abstracted it to external module to have it
36 one place
37* Documentation cleanup
38
39v0.2.0 -- 2012.09.19
40* Trashed poor implementation of v0.1 and came up with something solid
41
42Changes:
43* Improved performance
44* Fixed bugs event-emitter is now cross-prototype safe and not affected by
45 unexpected methods attached to Object.prototype
46* Removed support for optional "emitter" argument in `emit` method, it was
47 cumbersome to use, and should be solved just with event objects
48
49v0.1.5 -- 2012.08.06
50* (maintanance) Do not use descriptors for internal objects, it exposes V8 bugs
51 (only Node v0.6 branch)
52
53v0.1.4 -- 2012.06.13
54* Fix detachment of listeners added with 'once'
55
56v0.1.3 -- 2012.05.28
57* Updated es5-ext to latest version (v0.8)
58* Cleared package.json so it's in npm friendly format
59
60v0.1.2 -- 2012.01.22
61* Support for emitter argument in emit function, this allows some listeners not
62 to be notified about event
63* allOff - removes all listeners from object
64* All methods returns self object
65* Internal fixes
66* Travis CI integration
67
68v0.1.1 -- 2011.08.08
69* Added TAD test suite to devDependencies, configured test commands.
70 Tests can be run with 'make test' or 'npm test'
71
72v0.1.0 -- 2011.08.08
73Initial version