mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
746 B
26 lines
746 B
=========================
|
|
Duktape 2.4 release notes
|
|
=========================
|
|
|
|
Release overview
|
|
================
|
|
|
|
TBD.
|
|
|
|
* Symbol built-in is now enabled by default.
|
|
|
|
* Add duk_push_bare_array() API call which pushes a bare Array, i.e. one
|
|
that doesn't inherit from Array.prototype.
|
|
|
|
* Add duk_to_stacktrace() and duk_safe_to_stacktrace() to make it easier
|
|
to get stacktraces in C code.
|
|
|
|
Upgrading from Duktape 2.3
|
|
==========================
|
|
|
|
No action (other than recompiling) should be needed for most users to upgrade
|
|
from Duktape v2.3.x. Note the following:
|
|
|
|
* Symbol built-in (Symbol(xxx), Symbol.toPrimitive, etc) is now enabled
|
|
by default. If you don't want the built-in, disable
|
|
``DUK_USE_SYMBOL_BUILTIN`` in tools/configure.py.
|
|
|