| OLD | NEW |
| 1 2011-02-07: Version 3.1.2 |
| 2 |
| 3 Added better security checks when accessing properties via |
| 4 Object.getOwnPropertyDescriptor. |
| 5 |
| 6 Fixed bug in Object.defineProperty and related access bugs (issues |
| 7 992, 1083 and 1092). |
| 8 |
| 9 Added LICENSE.v8, LICENSE.strongtalk and LICENSE.valgrind to ease |
| 10 copyright notice generation for embedders. |
| 11 |
| 12 |
| 13 2011-02-02: Version 3.1.1 |
| 14 |
| 15 Perform security checks before fetching the value in |
| 16 Object.getOwnPropertyDescriptor. |
| 17 |
| 18 Fixed a bug in Array.prototype.splice triggered by passing no |
| 19 arguments. |
| 20 |
| 21 Fixed bugs in -0 in arithmetic and in Math.pow. |
| 22 |
| 23 Fixed bugs in the register allocator and in switching from optimized |
| 24 to unoptimized code. |
| 25 |
| 26 |
| 27 2011-01-31: Version 3.1.0 |
| 28 |
| 29 Performance improvements on all platforms. |
| 30 |
| 31 |
| 32 2011-01-28: Version 3.0.12 |
| 33 |
| 34 Added support for strict mode parameter and object property |
| 35 validation. |
| 36 |
| 37 Fixed a couple of crash bugs. |
| 38 |
| 39 |
| 1 2011-01-25: Version 3.0.11 | 40 2011-01-25: Version 3.0.11 |
| 2 | 41 |
| 3 Fixed a bug in deletion of lookup slots that could cause global | 42 Fixed a bug in deletion of lookup slots that could cause global |
| 4 variables to be accidentally deleted (http://crbug.com/70066). | 43 variables to be accidentally deleted (http://crbug.com/70066). |
| 5 | 44 |
| 6 Added support for strict mode octal literal verification. | 45 Added support for strict mode octal literal verification. |
| 7 | 46 |
| 8 Fixed a couple of crash bugs (issues 1070 and 1071). | 47 Fixed a couple of crash bugs (issues 1070 and 1071). |
| 9 | 48 |
| 10 | 49 |
| (...skipping 2406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2417 | 2456 |
| 2418 Improved debugger support by allowing nested break points and by | 2457 Improved debugger support by allowing nested break points and by |
| 2419 dealing with stack-overflows when compiling functions before | 2458 dealing with stack-overflows when compiling functions before |
| 2420 setting break points in them. | 2459 setting break points in them. |
| 2421 | 2460 |
| 2422 | 2461 |
| 2423 2008-07-03: Version 0.1.0 | 2462 2008-07-03: Version 0.1.0 |
| 2424 | 2463 |
| 2425 Initial export. | 2464 Initial export. |
| 2426 | 2465 |
| OLD | NEW |