]> git.kaiwu.me - njs.git/shortlog
njs.git
2019-02-26 Dmitry VolyntsevVersion 0.2.8. 0.2.8
2019-02-26 Dmitry VolyntsevHTTP: avoid creating empty request_body buffer in r...
2019-02-25 Dmitry VolyntsevMoving boilerplate code into njs_generate_code().
2019-02-25 Dmitry VolyntsevAdded labels support.
2019-02-25 Dmitry VolyntsevHTTP: setting exception if memory allocation fails.
2019-02-23 Artem S. PovalyukhinFixed Array.prototype.fill().
2019-02-23 Artem S. PovalyukhinStyle.
2019-02-22 Dmitry VolyntsevFixed heap-buffer-overflow in String.prototype.split().
2019-02-21 Dmitry VolyntsevAdded support for setting nginx variables.
2019-02-21 Dmitry VolyntsevImproved API for value creation from the outside of VM.
2019-02-20 hongzhidaoFixed njs_benchmark.
2019-02-20 Dmitry VolyntsevStyle.
2019-02-20 Dmitry VolyntsevFixed %*s length argument type in nxt_sprintf() fmt...
2019-02-20 Dmitry VolyntsevFixed creation of long UTF8 strings.
2019-02-16 hongzhidaoFixed fast paths.
2019-02-16 hongzhidaoImproved njs_vm_compile().
2019-02-16 hongzhidaoAllocating njs_lexer_t on stack.
2019-02-16 hongzhidaoAllocating njs_generator_t on stack.
2019-02-16 hongzhidaoMaking njs_vm_invoke() public.
2019-02-16 hongzhidaoIntroduced njs_parser_global_scope().
2019-02-20 Dmitry VolyntsevIntroduced nxt_file_basename() and nxt_file_dirname().
2019-02-14 Dmitry VolyntsevFixed String.prototype.split() for unicode strings.
2019-02-14 Dmitry VolyntsevAdding const qualifiers to njs_string_prototype_split...
2019-02-14 Dmitry VolyntsevStyle.
2019-02-14 Dmitry VolyntsevFixed line number in reporting variable reference errors.
2019-02-14 Dmitry VolyntsevFixed parsing of string literals.
2019-02-12 Dmitry VolyntsevEliminating sprintf() and vsnprintf() usage.
2019-02-12 Dmitry VolyntsevReplacing vsprintf with nxt_vsprintf in modules' except...
2019-02-11 Dmitry VolyntsevAdded support for shorthand property names for Object...
2019-02-09 hongzhidaoRefactored njs_parser_terminal().
2019-02-09 hongzhidaoImproved njs_parser_property_token().
2019-02-08 Dmitry VolyntsevRemoving unused argument of njs_parser_property_name().
2019-02-08 Dmitry VolyntsevShell: avoid reporting filenames in exception is quiet...
2019-02-08 Dmitry VolyntsevUpdated list of reserved keywords.
2019-02-07 Dmitry VolyntsevHTTP: skipping deleted elements while iterating over...
2019-02-07 Dmitry VolyntsevHTTP: added support for delete operation in r.headersOut.
2019-02-06 Dmitry VolyntsevHTTP: improved setting empty headers.
2019-02-06 Dmitry VolyntsevHTTP: improved setting of special response headers.
2019-02-06 Dmitry VolyntsevModules: reporting njs filenames in exceptions.
2019-02-06 hongzhidaoShell: improved filenames reporting in exceptions.
2019-02-05 Dmitry VolyntsevHTTP: setting default content type in sendHeader().
2019-02-04 hongzhidaoReporting filename in runtime errors.
2019-02-04 hongzhidaoReporting filename in generator errors.
2019-02-04 hongzhidaoUsing nxt_sprintf() instead of sprintf() in backtraces.
2019-02-04 Sergey KandaurovRemoved a surplus argument to the parser exception...
2019-02-04 Dmitry VolyntsevFixed building with Apple clang.
2019-02-03 hongzhidaoRenaming njs_exception_error_create() with njs_error_fm...
2019-02-03 hongzhidaoReporting filename in parser errors.
2019-02-03 hongzhidaoImproved exception creation.
2019-02-02 hongzhidaoIntroduced njs_vm_invoke().
2019-02-02 hongzhidaoImproved njs_parser_statement_chain().
2019-02-01 Dmitry VolyntsevImproved parsing object literals.
2019-02-01 Dmitry VolyntsevFixed parsing object literals.
2019-02-01 hongzhidaoSimplified parser builtin function.
2019-01-29 hongzhidaoSimplified parser tree building.
2019-01-30 Dmitry VolyntsevUnifying quotes usage in exceptions.
2019-01-30 Dmitry VolyntsevReplacing vsprintf with nxt_vsprintf in exceptions.
2019-01-30 Dmitry VolyntsevFixed SyntaxError message for unterminated regexp token.
2019-01-30 Dmitry VolyntsevFixed lexer->text state for the last token.
2019-01-30 Dmitry VolyntsevImported nxt_sprintf.c.
2019-01-28 hongzhidaoStyle.
2019-01-29 Dmitry VolyntsevFixed parsing multiline comments.
2019-01-29 Dmitry VolyntsevAdded support for multiline tests.
2019-01-26 hongzhidaoImproved next index allocation.
2019-01-28 Dmitry VolyntsevRenaming nxt_mem_cache_pool_t related structures and...
2019-01-28 Dmitry VolyntsevHTTP: removed response object deprecated in 0.2.2.
2019-01-23 hongzhidaoSimplified function parsing.
2019-01-22 Dmitry VolyntsevImproved setting vm->trace.
2019-01-18 Dmitry VolyntsevRemoved unused vm->scratch field.
2019-01-18 Dmitry VolyntsevStyle.
2019-01-17 Dmitry VolyntsevSetting exit index for try_return instruction is simpli...
2019-01-17 Dmitry VolyntsevFixed comments "try" instructions.
2019-01-17 Dmitry VolyntsevFixed try_break instruction.
2019-01-16 Dmitry VolyntsevMaking generator block for block statements.
2019-01-16 Dmitry VolyntsevFixed heap-use-after-free introduced in 045ba10db769.
2019-01-11 hongzhidaoImproved an argument name of njs_function_frame().
2019-01-11 hongzhidaoRefactored njs_function_lambda_call().
2019-01-10 Dmitry VolyntsevMaking njs_function_frame_alloc() static.
2019-01-08 hongzhidaoIntroduced njs_function_frame().
2019-01-07 hongzhidaoRenamed functions related to lambda.
2019-01-07 hongzhidaoRefactored out njs_function_apply().
2019-01-07 hongzhidaoFixed njs_vm_call().
2019-01-07 hongzhidaoSimplified njs_vm_call().
2019-01-07 hongzhidaoMaking njs_function_activate() more generic.
2019-01-10 Dmitry VolyntsevInlined njs_function_previous_frame().
2019-01-07 hongzhidaoMoving njs_normalize_args() into njs_function_native_ca...
2019-01-07 hongzhidaoIntroduced njs_function_native_call().
2019-01-07 hongzhidaoRefactored njs_function_frame_free.
2019-01-07 hongzhidaoFixed vmcode function call.
2019-01-09 Dmitry Volyntsev2019 year.
2018-12-29 hongzhidaoImproved function naming in variable code.
2018-12-29 hongzhidaoImproved working with scope indexes of variables.
2018-12-29 Dmitry VolyntsevRemoved dead code in njs_set_timer().
2018-12-28 hongzhidaoRemoved duplicate njs_variable_reference() declaration.
2018-12-28 hongzhidaoVariables handling during code generation is improved.
2018-12-28 hongzhidaoImproved njs_generate_typeof_operation().
2018-12-28 Dmitry VolyntsevInteractive shell: immediate events support.
2018-12-28 Dmitry VolyntsevFixed grammar in njs_vm.h.
2018-12-28 Dmitry VolyntsevAdded setImmediate().
2018-12-28 Dmitry VolyntsevInteractive shell: initial support of posted events.
next