]> git.kaiwu.me - njs.git/shortlog
njs.git
2019-04-29 hongzhidaoSimplified parsing of var statements.
2019-04-29 hongzhidaoMaking njs_lexer_rollback() more generic.
2019-04-28 Dmitry VolyntsevAdded extra tests for assignment expression.
2019-04-27 hongzhidaoImproved njs_lexer_rollback().
2019-04-27 Dmitry VolyntsevFixed null pointer dereferences introduced in f5bdddca3252.
2019-04-26 hongzhidaoImproved njs_vm_continuation().
2019-04-26 hongzhidaoImproved njs_function_native_call().
2019-04-26 Valentin BartenevRemoved NXT_READLINE_CFLAGS.
2019-04-26 Valentin BartenevSupport for building with GNU Readline library.
2019-04-25 Dmitry VolyntsevFixed Date() constructor with one argument.
2019-04-25 Dmitry VolyntsevImproved text for method frame exception.
2019-04-25 hongzhidaoFixed njs_vmcode_restart().
2019-04-25 Dmitry VolyntsevDisabling njs_retain() and njs_release().
2019-04-25 Dmitry VolyntsevFixed special getters for objects created using Object...
2019-04-25 Dmitry VolyntsevFixed string object creation using Object() constructor.
2019-04-24 Alexander BorisovImproved String.prototype.match() function.
2019-04-24 Alexander BorisovAdded processing asterisk quantifier for String.prototy...
2019-04-23 Alexander BorisovAdded macro for converting surrogate pair to code point.
2019-04-22 Alexander BorisovFixed parsing surrogate pair presents as UTF-16 escape...
2019-04-22 Alexander BorisovFixed length calculation for UTF-8 string with escape...
2019-04-23 Dmitry VolyntsevFixed condition on already been declared exception.
2019-04-22 hongzhidaoAdded support for template literals.
2019-04-21 hongzhidaoAdded block scoped function definitions support.
2019-04-22 Alexander BorisovImproved array allocation test for low memory machines.
2019-04-21 hongzhidaoRestricted function declaration to top level or inside...
2019-04-21 hongzhidaoAdded option to run unit tests in module mode.
2019-04-19 Alexander BorisovFixed overflow in Array.prototype.concat().
2019-04-19 Alexander BorisovAdded uint32_t overflow check for njs_array_alloc(...
2019-04-19 hongzhidaoSimplified typeof operation.
2019-04-18 Dmitry VolyntsevStyle.
2019-04-18 hongzhidaoRefactored variable reference.
2019-04-18 Dmitry VolyntsevTests: freeing pcre structs to silence leak-sanitizer.
2019-04-17 Alexander BorisovWalking over prototypes chain during iteration over...
2019-04-17 Alexander BorisovAdded two new function for working with enumerate value.
2019-04-17 Alexander BorisovAdded function to get length of the string.
2019-04-08 Alexander BorisovSaving hash key to result for each() function in level...
2019-04-18 Dmitry VolyntsevFixed RegExp constructor for regexp value arguments.
2019-04-18 Dmitry VolyntsevImproved working with arguments in Regexp.prototype...
2019-04-18 Dmitry VolyntsevShell: fixed njs_vm_value_dump() for empty string values.
2019-04-17 Dmitry VolyntsevFixed Regexp.prototype.exec() for unicode only regexps.
2019-04-17 Dmitry VolyntsevFixed handling of unicode only regexp expressions.
2019-04-16 Dmitry VolyntsevVersion bump.
2019-04-16 Dmitry VolyntsevFixed changelog 0.3.1 description.
2019-04-16 Dmitry VolyntsevAdded tag 0.3.1 for changeset ebfbdb8d8fe2
2019-04-16 Dmitry VolyntsevVersion 0.3.1. 0.3.1
2019-04-15 Alexander BorisovAdded implementation of functions: ToInt32, ToUint32...
2019-04-15 Alexander BorisovFixed ToInteger function in accordance with the specifi...
2019-04-13 hongzhidaoFixed function declaration with the same name as a...
2019-04-12 hongzhidaoMaking parser hoist more generic.
2019-04-12 hongzhidaoRenaming node->label to node->name.
2019-04-12 Dmitry VolyntsevAdded quiet option for vm to support bit-exact output...
2019-04-07 hongzhidaoAdded arrow function support.
2019-04-10 Dmitry VolyntsevThis object as a variable.
2019-04-10 Dmitry VolyntsevAdded support for module mode of execution.
2019-04-12 Dmitry VolyntsevFixed objects instance properties.
2019-04-11 Dmitry VolyntsevShell: improved njs_vm_value_dump().
2019-04-11 Dmitry VolyntsevShell: added shebang support.
2019-04-11 Dmitry VolyntsevAdded string functions wrappers.
2019-04-11 Dmitry VolyntsevUNIT style indentation in njs_string.h.
2019-04-11 Dmitry VolyntsevImproved console.log() for string values.
2019-04-11 hongzhidaoChecking for duplicate function parameter names.
2019-04-11 Dmitry VolyntsevAllowing to output large values in console.log().
2019-04-11 Dmitry VolyntsevHTTP: documenting props removal in changelog.
2019-04-10 Dmitry VolyntsevMaking njs_function_closures() inline function.
2019-04-07 Dmitry VolyntsevFixed njs_function_copy().
2019-04-09 Sergey KandaurovFixed using %*s format in nxt_printf().
2019-04-06 hongzhidaoFixed Function.prototype.bind().
2019-04-05 Alexander BorisovAdded support array-like objects for Function.prototype...
2019-04-05 hongzhidaoMaking njs_parser_var_statement() more generic.
2019-04-05 hongzhidaoRemoved unnecessary njs_parser_var_expression().
2019-04-05 Dmitry VolyntsevAdding const qualifier to njs_value_property().
2019-03-25 hongzhidaoArguments object as a variable.
2019-04-03 hongzhidaoRefactored njs_parser_call_expression().
2019-04-03 hongzhidaoRefactored njs_parser_object() and njs_parser_array().
2019-04-02 Dmitry VolyntsevIntroduced njs_parser_variable_node().
2019-04-02 Dmitry VolyntsevMaking __proto__ accessor descriptor of Object mutable.
2019-04-02 Igor SysoevFixed editline detection.
2019-04-01 Dmitry VolyntsevRefactored function object creation.
2019-03-31 hongzhidaoRefactored out terminal tokens into njs_parser_terminal.c.
2019-03-27 Artem S. PovalyukhinAdded Object.getOwnPropertyDescriptors().
2019-03-27 Artem S. PovalyukhinIntroduced njs_object_property_descriptor().
2019-03-28 Dmitry VolyntsevImproved njs_object_enumerate().
2019-03-28 Dmitry VolyntsevAvoiding strict check in export default value expressions.
2019-03-28 Dmitry VolyntsevUsing nxt_printf() everywhere.
2019-03-27 Dmitry VolyntsevAdded njs_vm_json_parse() and njs_vm_json_stringify().
2019-03-27 Dmitry VolyntsevImproved njs API tests.
2019-03-27 Dmitry VolyntsevAdded nxt_dprintf() and nxt_printf().
2019-03-27 Dmitry VolyntsevImproved working with arguments in JSON methods.
2019-03-27 Dmitry VolyntsevAdding const qualifier njs_string_prop().
2018-04-16 Dmitry VolyntsevAdded njs_vm_value().
2019-03-26 Artem S. PovalyukhinAdded Object.getOwnPropertyNames().
2019-03-26 Dmitry VolyntsevVersion bump.
2019-03-26 Dmitry VolyntsevAdded tag 0.3.0 for changeset 1935ab4643fd
2019-03-26 Dmitry VolyntsevVersion 0.3.0. 0.3.0
2019-03-26 Dmitry VolyntsevModules: added js_path directive.
2019-03-26 Dmitry VolyntsevModules: improved working with arguments.
2019-03-26 Dmitry VolyntsevTreating null and undefined as empty string for externa...
2019-03-26 Dmitry VolyntsevModules: returning undefined value for absent values.
2019-03-25 Dmitry VolyntsevResetting loaded modules in accumulative mode.
2019-03-25 Dmitry VolyntsevShell: fixed potential memory leak in main().
next