]> git.kaiwu.me - quickjs.git/shortlog
quickjs.git
2026-03-21 Fabrice Bellardfixed TypedArray sort semantics by copying the array...
2026-03-21 Fabrice Bellardmodified js_allocate_fast_array() so that the array...
2025-12-22 Fabrice Bellardregexp: removed alloca() is lre_exec() - added specific...
2025-12-22 Fabrice Bellard\x{N} is a syntax error
2025-12-22 Fabrice Bellardslightly faster lexical variable assignment
2025-12-11 Fabrice BellardDon't call well-known Symbol methods for RegExp on...
2025-12-11 Fabrice Bellardremoved use after free in js_create_module_bytecode_fun...
2025-12-11 Fabrice Bellardremoved memory leak in case of error in cpool_add(...
2025-12-03 Fabrice Bellardfixed fast array extension optimization when there...
2025-12-03 Fabrice Bellardadded regexp duplicate named groups - fixed reset of...
2025-11-29 Fabrice Bellardupdated to unicode 17.0.0 - updated test262 version
2025-11-29 Fabrice Bellardadded missing lre_poll_timeout()
2025-11-29 Fabrice Bellardregexp: cosmetic: make it clearer that there is now...
2025-11-29 Fabrice Bellardregexp: ensure that the bytecode size grows linearly...
2025-11-22 Fabrice Bellardremoved buffer overflows introduced in regexp optimizations
2025-11-22 Fabrice Bellardfixed Worker freeing logic (#462)
2025-11-22 Fabrice Bellard- optimized Regexp.prototype.exec
2025-11-22 Fabrice Bellardfaster and simpler implementation of regexp backtracking
2025-11-15 Fabrice Bellardfixed BJSON array serialization (#457)
2025-11-15 Fabrice Bellard- Added Iterator.concat (initial patch by bnoordhuis)
2025-11-15 Fabrice Bellardoptimized add/sub int32 overflow
2025-11-15 Fabrice Bellardadded error checking in JS_InstantiateFunctionListItem()
2025-11-15 Fabrice Bellard- Closure optimization (go from quadratic to linear...
2025-11-05 Fabrice BellardRestore a mistakenly removed goto on error in js_build_...
2025-11-05 Fabrice Bellardfixed JS_PROP_AUTOINIT handling in js_closure_define_gl...
2025-11-05 Fabrice Bellardfixed exception handling in put_var operation (regressi...
2025-11-03 Fabrice BellardMore informative "not a constructor" error message...
2025-11-03 Fabrice BellardFix length check in ArrayBuffer.prototype.slice (bnoord...
2025-11-03 Fabrice Bellardfixed DataView resizing
2025-11-03 Fabrice BellardFix use-after-free in ArrayBuffer.prototype.transfer...
2025-11-03 Fabrice Bellardqjs: added --strict option - don't consider included...
2025-11-03 Fabrice Bellardremoved duplicate test
2025-11-03 Fabrice BellardMuch faster destructuring at the expense of a slight...
2025-11-03 Fabrice Bellardoptimized global variable access
2025-10-18 Fabrice Bellardremoved uninitialized variable
2025-10-18 Fabrice Bellardupdated test results
2025-10-18 Fabrice Bellardfixed operation order in Regexp constructor
2025-10-18 Fabrice Bellardchanged module rejection order according to spec change
2025-10-16 Fabrice Bellardoptimized Array.prototype.push
2025-10-16 Fabrice Bellardinlined the get_length operation
2025-10-16 Fabrice Bellardadded js_string_eq()
2025-10-13 Fabrice Bellardstricter year parsing in Date
2025-10-13 Fabrice Bellardfixed argument evaluation order in Date constructor...
2025-10-13 Fabrice Bellardfaster and safer dbuf functions (#443)
2025-10-12 Fabrice Bellardtest262 update
2025-10-12 Fabrice Bellardfixed regression in error message display introduced...
2025-10-11 Fabrice Bellardcompilation fix for clang
2025-10-11 Fabrice BellardFaster context creation and exception checks in JS_NewC...
2025-10-08 Fabrice Bellardupdate
2025-10-08 Fabrice Bellardfaster appending of elements in arrays
2025-10-08 Fabrice Bellardoptimized string_buffer_putc()
2025-10-07 Fabrice Bellardoptimized post_inc and post_dec
2025-10-04 Fabrice Bellardoptimized array access by inlining get_array_el, get_ar...
2025-10-03 Fabrice Bellardremoved JS_PROP_NO_ADD
2025-10-03 Fabrice Bellardinlined fast path for get_field, get_field2 and put_field
2025-10-03 Fabrice Bellard- optimized global variable access
2025-10-03 Fabrice Bellardoptimize the create of arrays - optimized the rest...
2025-10-03 Fabrice BellardImprove error handling in Promise.withResolvers (bnoord...
2025-10-03 Fabrice Bellardupdated test262
2025-09-30 bellardMerge pull request #408 from nickva/run-test262-in-ci
2025-09-29 Nick VatamaniucRun test262 tests in CI
2025-09-29 Fabrice Bellardsimplified math.sumPrecise()
2025-09-29 Fabrice Bellardfixed Date parsing: "1997-03-08 11:19:10-0700" is a...
2025-09-29 Fabrice Bellardfixed Atomics.pause() in the NaN boxing case (32 bit...
2025-09-27 Fabrice Bellardadded Math.sumPrecise()
2025-09-27 Fabrice Bellardadded Map and WeakMap upsert methods (bnoordhuis)
2025-09-22 Fabrice Bellard- added Atomics.pause (bnoordhuis)
2025-09-22 Fabrice Bellard- added resizable array buffers (bnoordhuis)
2025-09-22 Fabrice Bellardfixed parsing of computed property name
2025-09-21 Fabrice Bellard- added ArrayBuffer.prototype.transfer (Divy Srivastava)
2025-09-20 Fabrice BellardIterator functions:
2025-09-20 Fabrice BellardIterator is an abstract class (bnoordhuis)
2025-09-20 Fabrice Bellardfix Iterator.prototype.constructor (initial patch by...
2025-09-20 Fabrice Bellardadded Iterator.prototype.[drop,filter,flatMap,map,take...
2025-09-20 Fabrice Bellardadded Iterator.prototype.toArray and Iterator.from...
2025-09-20 Fabrice Bellardadded the Iterator object
2025-09-20 Fabrice Bellardremoved uninitialized values - removed useless init
2025-09-20 Fabrice Bellardset methods: removed memory leaks - fixed ordering...
2025-09-20 Fabrice Bellardadded set methods (bnoordhuis)
2025-09-18 Fabrice Bellardremoved memory leak (#441)
2025-09-18 Fabrice Bellardupdated release.sh
2025-09-13 Fabrice Bellardnew release
2025-09-13 Fabrice BellardFix crash on failure to read bytecode (penneryu)
2025-09-10 Fabrice Bellardmore efficient handling of strings in JSON.stringify()
2025-09-10 Fabrice Bellardbetter pretty printing of strings - removed String...
2025-08-27 Fabrice Bellardqjsc: handle C name conflicts between scripts and modul...
2025-08-27 Fabrice Bellardrun-test262: added --count_skipped_features option
2025-08-27 Fabrice Bellardremoved function cast warnings (initial patch by saghul)
2025-08-25 Fabrice Bellardfixed handling of 8 bit unicode strings in RegExp ...
2025-08-25 Fabrice BellardAdjust lastIndex to leading surrogate when inside a...
2025-08-25 Fabrice Bellardlimit function and regexp bytecode to 1G to avoid buffe...
2025-08-25 Fabrice Bellardavoid side effects in JS_PrintValue() which may lead...
2025-08-25 Fabrice Bellardfixed buffer overflow in TypedArray.prototype.lastIndexOf()
2025-08-25 Fabrice Bellardfixed buffer overflow in js_bigint_to_string1()
2025-08-25 Fabrice Bellardfixed crash in OP_add_loc if the variable is modified...
2025-08-25 Fabrice Bellardfixed buffer overflow in js_bigint_from_string()
2025-08-25 Fabrice BellardTypedArray.prototype.subarray: fixed the step at which...
2025-08-25 Fabrice Bellardtest262 update
2025-07-09 Fabrice Bellardremoved module leak in js_std_eval_binary() (#425)
2025-06-28 Fabrice Bellardfixed GC logic so that a module can live after a JSCont...
next