]> git.kaiwu.me - quickjs.git/shortlog
quickjs.git
2024-01-27 Fabrice Bellardupdate test results
2024-01-22 Fabrice Bellardfixed js_std_await() in case 'obj' is not a promise...
2024-01-19 Fabrice Bellardfixed and simplified setTimeout() by using an integer...
2024-01-19 Fabrice Bellardadded js_std_await() and use it to wait for the evaluat...
2024-01-19 Fabrice Bellardupdate Changelog
2024-01-13 Fabrice Bellardnew release
2024-01-13 Fabrice Bellardallow override of PREFIX, CROSS_PREFIX, CFLAGS and...
2024-01-13 Fabrice Bellardfixed JS_GetScriptOrModuleName() in direct or indirect...
2024-01-11 Fabrice Bellardnative cosmopolitan build
2024-01-11 Fabrice Bellardfixed uninitialized harnessbuf
2024-01-11 Fabrice Bellardupdate test results
2024-01-11 Fabrice Bellardmore portable and Windows version for getTimezoneOffset...
2024-01-11 Fabrice Bellardadded os.getpid()
2024-01-10 Fabrice Bellardregexp: fixed the zero advance logic in quantifiers...
2024-01-09 Fabrice Bellardoptional chaining fixes (github issue #103)
2024-01-08 Fabrice Bellardfixed Date.toLocaleString() (kuzmas)
2024-01-08 Fabrice Bellardfixed regexp case insensitive flag
2024-01-08 Fabrice Bellardfix worker termination in example (github issue #98)
2024-01-08 Fabrice Bellardfixed next token parsing after a function definition...
2024-01-08 Fabrice Bellardfixed class name init in static initializers
2024-01-08 Fabrice Bellardavoid potentially undefined behavior and make valgrind...
2024-01-06 Fabrice Bellardfixed run_test262_harness_test() with modules
2024-01-06 Fabrice Bellardmake for in faster and spec compliant (github issue...
2024-01-06 Fabrice Bellardfixed test262: derived-this-uninitialized-realm.js
2024-01-06 Fabrice Bellardadded a comment for non-initialized warning in Valgrind...
2024-01-02 Fabrice Bellardadded 'in' operator for private fields
2024-01-02 Fabrice Bellardclass static block (initial patch by bnoordhuis)
2024-01-02 Fabrice Bellardadded note about atomic operations
2024-01-02 Fabrice Bellardfixed crash in JS_DumpMemoryUsage (github issue #65)
2024-01-02 Fabrice Bellardallow 'await' in the REPL and added os.sleepAsync()
2024-01-02 Fabrice Bellardmake JS_NewClassID thread safe
2024-01-02 Fabrice Bellardadded Error cause
2023-12-27 Fabrice Bellardadded os.now()
2023-12-27 Fabrice Bellarddefine the same atoms with or without CONFIG_ATOMICS...
2023-12-27 Fabrice Bellardfixed JS module autodetection with shebang (github...
2023-12-27 Fabrice Bellardfixed crash when resizing property shapes in case of...
2023-12-27 Fabrice Bellardfixed the garbage collection of async functions with...
2023-12-27 Fabrice Bellardremoved memory leak
2023-12-27 Fabrice Bellardadded RegExp 'd' flag (bnoordhuis)
2023-12-27 Fabrice Bellardadded Promise.withResolvers
2023-12-27 Fabrice Bellardadded Array.prototype.{with,toReversed,toSpliced,toSort...
2023-12-27 Fabrice Bellardadded Object.groupBy and Map.groupBy (initial patch...
2023-12-27 Fabrice Bellardadded String.prototype.isWellFormed and String.prototyp...
2023-12-27 Fabrice Bellardfixed detached TypedArray in sort()
2023-12-27 Fabrice Bellardtypos
2023-12-27 Fabrice Bellardtop-level-await support - follow the spec in the implem...
2023-12-22 Fabrice Bellardcall js_std_free_handlers() in the code generated by...
2023-12-22 Fabrice Bellardreduced JS_MAX_LOCAL_VARS (github issue #123)
2023-12-22 Fabrice Bellardremoved unused JSContext field
2023-12-22 Fabrice Bellarduse Unicode normalization in String.prototype.localeCompare
2023-12-22 Fabrice Bellard'for of' expression cannot start with 'async'
2023-12-22 Fabrice Bellardremoved incorrect await in async yield*
2023-12-22 Fabrice Bellardfixed define own property with writable=false on module...
2023-12-22 Fabrice Bellardadded container_of macro
2023-12-22 Fabrice Bellardsafer typed array finalizer
2023-12-22 Fabrice Bellardfixed js_strtod with large integers (github issue ...
2023-12-22 Fabrice Bellardtest 128 bit integer support (github issue #125)
2023-12-13 Fabrice Bellardfixed 'return' handling with 'yield' in 'for of' or...
2023-12-13 Fabrice Bellardfixed async generator in case of exception in the impli...
2023-12-13 Fabrice BellardFix AsyncGenerator.prototype.return error handling...
2023-12-13 Fabrice Bellardadded -fwrapv to CFLAGS to ensure that signed overflows...
2023-12-13 Fabrice Bellardraise an error if a private method is added twice to...
2023-12-09 Fabrice Bellardnew release
2023-12-09 Fabrice Bellardadded Array.prototype.findLast{Index} and TypeArray...
2023-12-09 Fabrice Bellardfixed duplicate static private setter/getter test
2023-12-09 Fabrice BellardSymbol.species is no longer used in TypedArray construc...
2023-12-09 Fabrice Bellardfixed delete super.x error
2023-12-09 Fabrice Bellardreworked set property and fixed corner cases of typed...
2023-12-09 Fabrice BellardImplement extended named capture group identifiers...
2023-12-09 Fabrice BellardRetrieve RegExp 'g' flag in spec conformant way (origin...
2023-12-09 Fabrice Bellardfixed lexical scope of 'this' with eval (github issue...
2023-12-09 Fabrice BellardMake Date methods argument coercion spec compliant...
2023-12-09 Fabrice Bellardfixed negative zero date
2023-12-07 Fabrice Bellardfixed private field setters (github issue #194)
2023-12-05 Fabrice Bellardadded missing bignum error tests (github issue #159)
2023-12-05 Fabrice Bellardadded String.prototype.at, Array.prototype.at and Typed...
2023-12-05 Fabrice Bellardkeep LTO
2023-12-05 Fabrice Bellardupdated to unicode 15.0.0
2023-12-04 bellardthe BigInt support is now always included
2023-12-01 bellardfixed js_proxy_isArray stack overflow (github issue...
2023-12-01 bellardbf_set_ui() fix (github issue #133)
2022-03-06 bellardupdated to Unicode 14.0.0
2022-03-06 bellardupdated test262.conf
2022-03-06 bellardadded Object.hasOwn()
2022-03-06 bellardfixed invalid Array.prototype.push/unshift optimization
2021-03-27 bellard2021-03-27 release
2020-11-08 bellard2020-11-08 release take 2
2020-11-08 bellard2020-11-08 release
2020-09-06 bellard2020-09-06 release
2020-09-06 bellard2020-07-05 release
2020-09-06 bellard2020-04-12 release
2020-09-06 bellard2020-03-16 release
2020-09-06 bellard2020-01-19 release
2020-09-06 bellard2020-01-05 release
2020-09-06 bellardtest
2020-09-06 bellardInitial commit