OLD | NEW |
| 1 2009-06-08: Version 1.2.7 |
| 2 |
| 3 Improved debugger and profiler support. |
| 4 |
| 5 Reduced compilation time by improving the handling of deferred |
| 6 code. |
| 7 |
| 8 Optimized interceptor accesses where the property is on the object |
| 9 on which the interceptors is attached. |
| 10 |
| 11 Fixed compilation problem on GCC 4.4 by changing the stack |
| 12 alignment to 16 bytes. |
| 13 |
| 14 Fixed handle creation to follow stric aliasing rules. |
| 15 |
| 16 Fixed compilation on FreeBSD. |
| 17 |
| 18 Introduced API for forcing the deletion of a property ignoring |
| 19 interceptors and attributes. |
| 20 |
| 21 |
1 2009-05-29: Version 1.2.6 | 22 2009-05-29: Version 1.2.6 |
2 | 23 |
3 Added a histogram recording hit rates at different levels of the | 24 Added a histogram recording hit rates at different levels of the |
4 compilation cache. | 25 compilation cache. |
5 | 26 |
6 Added stack overflow check for the RegExp analysis phase. Previously a | 27 Added stack overflow check for the RegExp analysis phase. Previously a |
7 very long regexp graph could overflow the stack with recursive calls. | 28 very long regexp graph could overflow the stack with recursive calls. |
8 | 29 |
9 Use a dynamic buffer when collecting log events in memory. | 30 Use a dynamic buffer when collecting log events in memory. |
10 | 31 |
(...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
933 | 954 |
934 Improved debugger support by allowing nested break points and by | 955 Improved debugger support by allowing nested break points and by |
935 dealing with stack-overflows when compiling functions before | 956 dealing with stack-overflows when compiling functions before |
936 setting break points in them. | 957 setting break points in them. |
937 | 958 |
938 | 959 |
939 2008-07-03: Version 0.1.0 | 960 2008-07-03: Version 0.1.0 |
940 | 961 |
941 Initial export. | 962 Initial export. |
942 | 963 |
OLD | NEW |