forked from airbnb/node-memwatch
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
72 lines (52 loc) · 1.45 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
v2.0.0
* BREAKING: Drop support for Node <= 9.
* Add support for Node >= 10.
v1.0.2 -
* Fix race condition on gc timers and counters
* Add gc_ts field to stats event
v1.0.1 -
* Fix build error on linux
v1.0.0 -
* First airbnb forked version.
* Emit all HeapStatistics
* Add GC Timers
* Correctly count GC types
* BREAKING: Completely change stats event type
* BREAKING: Remove leak detection
v0.3.0 -
* TODO: ?
v0.2.10 -
* TODO: ?
v0.2.9 -
* TODO: ?
v0.2.8 -
* TODO: ?
v0.2.7 -
* TODO: ?
v0.2.6 -
* TODO: ?
v0.2.5 -
* TODO: ?
v0.2.4 -
* TODO: ?
v0.2.3 -
* TODO: ?
v0.2.2 -
* don't crash when a user accidentally allocates a HeapDiff without new (ala new require('memwatch').HeapDiff()) #30
v0.2.1 -
* 0.10.0 support (thanks @rvagg and @tmuellerleile)
* improved windows build support (no longer requires sed in path, thanks @mscdex)
* work around a windows specific crash due to upstream "bug" in libuv (https://github.com/joyent/libuv/pull/629)
v0.2.0 -
* fix memory leak of snapshots in HeapDiff #15
* HeapDiff.end() throws an exception if invoked more than once.
* aggressively clean up snapshots, at end() rather than next gc
v0.1.5 -
* compiles on windows (thanks @jmatthewsr-ms! sorry to make you wait)
v0.1.4 -
* migrate to node-gyp (thanks @jhaynie for getting it started)
v0.1.3 -
* node 0.8 support
v0.1.2 -
* Addition of unit tests (running on travis)
* fix bug whereby events would not be emitted when listeners use .once()