upgrade to 2025-09-13

This commit is contained in:
2025-11-17 20:37:13 -05:00
parent aff57b77f7
commit d9be3f3f2a
4 changed files with 57 additions and 18 deletions

View File

@@ -1,3 +1,43 @@
-------------------------------------------------------------------
Tue Nov 18 01:35:26 UTC 2025 - Avindra Goolcharan <avindra@opensuse.org>
- update to 2025-09-13:
* added JSON modules and import attributes
* added JS_PrintValue() API
* qjs: pretty print objects in print() and console.log()
* qjs: better promise rejection tracker heuristics
* added RegExp v flag
* added RegExp modifiers
* added RegExp.escape
* added Float16Array
* added Promise.try
* improved JSON parser spec conformance
* qjs: improved compatibility of std.parseExtJSON() with JSON5 and
accept JSON5 modules
* added JS_FreePropertyEnum() and JS_AtomToCStringLen() API
* added Error.isError()
* misc bug fixes
-------------------------------------------------------------------
Wed Jun 18 00:26:00 UTC 2025 - Avindra Goolcharan <avindra@opensuse.org>
- update to 2025-04-26:
* removed the bignum extensions and qjscalc to simplify the code.
The BFCalc calculator (web version) can be used as a
replacement for qjscalc.
* new BigInt implementation optimized for small numbers
* added WeakRef, FinalizationRegistry and symbols as weakrefs
* added builtin float64 printing and parsing functions for more correctness
* faster repeated string concatenation
* qjs: promise unhandled rejections are fatal errors by default
* added column number in debug information
* removed the "use strip" extension
* qjs: added -s and --strip-source options
* qjsc: added -s and --keep-source options
* added JS_GetAnyOpaque()
* added more callbacks for exotic objects in JSClassExoticMethods
* misc bug fixes
-------------------------------------------------------------------
Fri Feb 9 23:22:54 UTC 2024 - Avindra Goolcharan <avindra@opensuse.org>