|
@ -7,7 +7,21 @@ Release overview |
|
|
|
|
|
|
|
|
Main changes in this release (see RELEASES.rst for full details): |
|
|
Main changes in this release (see RELEASES.rst for full details): |
|
|
|
|
|
|
|
|
* TBD. |
|
|
* Performance, footprint, and portability improvements. |
|
|
|
|
|
|
|
|
|
|
|
* API additions for more convenient handling of optional arguments: |
|
|
|
|
|
duk_opt_xxx() and duk_get_xxx_default(). |
|
|
|
|
|
|
|
|
|
|
|
* Allow duk_push_heapptr() for objects which have become unreachable and |
|
|
|
|
|
are pending finalization. In such a case a duk_push_heapptr() cancels |
|
|
|
|
|
the pending finalizer call and automatically rescues the object. |
|
|
|
|
|
|
|
|
|
|
|
* ES2015 additions like String.prototype.{startsWith,endsWith,includes}() |
|
|
|
|
|
and HTML comment syntax. Non-standard shebang ("#!...") comment support. |
|
|
|
|
|
|
|
|
|
|
|
* Finalizer handling rework for reference counting and mark-and-sweep to fix |
|
|
|
|
|
a few "side effect" bugs. Also improved torture test coverage for ensuring |
|
|
|
|
|
side effects are handled correctly in Duktape internals. |
|
|
|
|
|
|
|
|
* DUK_VERSION is now visible to duk_config.h so it's possible for duk_config.h |
|
|
* DUK_VERSION is now visible to duk_config.h so it's possible for duk_config.h |
|
|
to support multiple Duktape versions. For example, some config options may be |
|
|
to support multiple Duktape versions. For example, some config options may be |
|
@ -27,26 +41,3 @@ from Duktape v2.0.x. Note the following: |
|
|
|
|
|
|
|
|
Prior to 2.1 the finalizer thread could also be heap_thread but usually the |
|
|
Prior to 2.1 the finalizer thread could also be heap_thread but usually the |
|
|
current thread would be used. |
|
|
current thread would be used. |
|
|
|
|
|
|
|
|
Known issues |
|
|
|
|
|
============ |
|
|
|
|
|
|
|
|
|
|
|
TBD. |
|
|
|
|
|
|
|
|
|
|
|
Raw issues from test runs |
|
|
|
|
|
========================= |
|
|
|
|
|
|
|
|
|
|
|
API tests |
|
|
|
|
|
--------- |
|
|
|
|
|
|
|
|
|
|
|
TBD. |
|
|
|
|
|
|
|
|
|
|
|
Ecmascript tests |
|
|
|
|
|
---------------- |
|
|
|
|
|
|
|
|
|
|
|
TBD. |
|
|
|
|
|
|
|
|
|
|
|
test262 |
|
|
|
|
|
------- |
|
|
|
|
|
|
|
|
|
|
|
TBD. |
|
|
|
|
|