forked from brianmcd/contextify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog
67 lines (61 loc) · 2.19 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
0.1.15
* Add support for Node 4 (Ido Ben-Yair - @idoby and Rod Vagg - @rvagg)
0.1.14
* Update NAN to ~1.8.4 (Benjamin Byholm - @kkoopa)
0.1.13
* Bump NAN to ~1.5.0 (Trygve Lie - @trygve-lie)
0.1.12
* Fix build for newer V8s (Andrew Paprocki - @apaprocki)
0.1.11
* Fix build error on node 0.11 (Sergei Ianovich - @yanovich)
0.1.10
* Fix segfault in GlobalPropertyGetter() (Sergei Ianovich - @yanovich)
0.1.9
* Update NAN to 1.3.0 (Benjamin Byholm - @kkoopa)
* Notify heap on context disposal (Kevin Decker - @kpdecker)
* Remove unused persistent handles (Kevin Decker - @kpdecker)
0.1.8
* Update NAN to 1.0.0 (Benjamin Byholm - @kkoopa)
0.1.7
* Fix broken builds with node >= 0.11.4 (Benjamin Byholm - @kkoopa)
0.1.6
* Fix broken build with node >= 0.11.0 (Jamie Kirkpatrick - @jpk)
0.1.5
* Fix broken builds on 0.9.11 and above (tomgco - #61)
0.1.4
* Fix segfault on Node >= 0.9.6. (pyokagan)
* Allow pre-compiling scripts. (mroch)
0.1.3
* Remove PrintException.
0.1.2
* Renamed bindings.gyp to binding.gyp (Rex Morgan)
* More fixes for OS X build.
0.1.1
* Add node-gyp build support (Nathan Rajlich)
* Fix build for OS X (stolen from einaros's work on ws :)).
* Better exception reporting (print error message and stack trace).
0.1.0
* Fix: #13 - Can't use global.eval as function.
* Added [Named|Indexed]SecurityCallbacks to global ObjectTemplate.
* No longer detaching the global proxy.
* Refactored to use node::ObjectWrap.
0.0.7
* Fix: #11 - Declared global variables treated as undefined
0.0.6
* Fix: potential segfault when looking up properties on sandbox.
0.0.5
* Better error feedback when the module isn't built on the current node
version.
* All builds now build to the Release directory, regardless of Node
version.
0.0.4
* Defend against calling Contextify methods on the global after dispose()
has been called.
* Fix: npm install fails on Node 0.5.x.
0.0.3
* Fix: segfault due to premature garbage collection of sandbox.
* Added dispose() method to clean up context.
0.0.2
* Fix: memory leak due to creating unnecessary function instances.
0.0.1
* Initial release