Download

2024-02-07, Version v0.37.0

Changes

  • feature :

    • addons:
      • support napi_make_callback.(xicilion)
      • support napi_module_register addons module.(xicilion)
      • support Buffer Finalizer.(xicilion)
      • support buffer api.(xicilion)
    • build - build shared library.(xicilion)
    • child_process:
      • support spawnSync.(xicilion)
      • support inherit mode in execFile.(xicilion)
    • console - support complex parameters in console.trace.(xicilion)
    • core:
      • suooprt DisallowGarbageCollection.(xicilion)
      • support execute scripts in package.json.(xicilion)
    • crypto:
      • support Bls12381Shake256 bbs suite.(xicilion)
      • support shake.(xicilion)
      • support sha3.(xicilion)
      • support bbs signacture.(xicilion)
      • support computeSecret in BlsKey.(xicilion)
      • support undefined in randomBytes.(xicilion)
    • dgram - support multicast function.(xicilion)
    • Digest - support update string.(xicilion)
    • encoding - support encode/decode with codec.(xicilion)
    • fasttext:
      • support more api.(xicilion)
      • ad fasttext module.(xicilion)
    • fs - support recursive option in fs.readdir.(xicilion)
    • http - add maxHeaderLength in http/HttpClient/HttpRequest/HttpResponse/HttpServer/HttpsServer/HttpHandler.(xicilion)
    • icu - support Intl.Segmenter.(xicilion)
    • LevelDB - add firstKey and lastKey methods, enhancements to forEach.(xicilion)
    • module - support require(.node).(xicilion)
    • options - support install addons binary module.(xicilion)
    • process:
      • : support process.dlopen.(xicilion)
      • support emitWarning.(xicilion)
    • SandBox:
      • support async import.(xicilion)
      • simple support for loading ES modules.(xicilion)
    • SQLite - update sqlite.(xicilion)
    • test:
      • support muslCall/mustNotCall.(xicilion)
      • enable g_track_native_object in test.setup to support using process.memoryUsage to count the use of built-in objects.(xicilion)
    • tty - support cursorTo and moveCursor.(xicilion)
    • url - support fileURLToPath and pathToFileURL.(xicilion)
    • util:
      • support symbol key in util.format.(xicilion)
      • support maxStringLength in inspect. (#766)(PinelliaC)
      • support max_array_length in inspect. (#765)(PinelliaC)
    • v8 - update v8 to v11.5.151.(xicilion)
    • vector - support vec_distance function.(xicilion)
    • vm - support vm.Script and context.(xicilion)
    • worker_threads:
      • support workerData in worker_threads.(xicilion)
      • support parentPort in worker_threads.(xicilion)
  • bugfix :

    • addons:
      • fibjs api crashed in addons callback.(xicilion)
      • callback error on linux.(xicilion)
      • compile error on Windfows.(xicilion)
    • buffer - Buffer.from(Date) result error.(xicilion)
    • build:
      • fix conversion issue in app.cpp on Windows.(xicilion)
      • fix UTF-8 to UTF-16 conversion on Windows.(xicilion)
      • compile error on linux.(xicilion)
      • update glibc_config.h include in encoding_iconv.cpp and encoding_iconv_ucs.cpp.(xicilion)
      • build script mistake.(xicilion)
      • build unicode error,(xicilion)
      • update vender to fix compile error.(xicilion)
    • child_process - encoding/env/output error.(xicilion)
    • core:
      • Exception object crash.(xicilion)
      • RunMicrotasks will deadlock due to reentry.(xicilion)
      • the ineffective iteration over m_keys (#762)(PinelliaC)
      • update the associative relationship between m_keys and m_values (#761)(PinelliaC)
      • crash when loading so in python.(xicilion)
      • unordered_map compile error on android.(xicilion)
      • runtime error in debug mode.(xicilion)
      • incorrect handling of kJSSpecialApiObjectType objects in get_instance_pointer causes fibjs crash.(xicilion)
      • compile error on WIndows.(xicilion)
    • crypto:
      • crash in PKey.toJSON().(xicilion)
      • crash when new PKey with empty string.(xicilion)
      • digest returns the wrong result when update is called multiple times in shake256.(xicilion)
      • remove dependency on std::span to fix compilation errors in low versions of gcc.(xicilion)
    • db - the db connection in odbc was not closed properly before being released.(xicilion)
    • docs:
      • URL typo (#764)(PinelliaC)
      • update docs (#760)(PinelliaC)
    • fasttext - predict has an error in recognizing a single word.(xicilion)
    • fs - 64 bits seek error on Linux i386&arm.(xicilion)
    • iconv - decode error when iconv does not exist.(xicilion)
    • jemalloc - runtime error on kunpeng arch.(xicilion)
    • mysql - conn.execute throws a "broken pipe" error when the sql statement size is greater than 16M.(xicilion)
    • net - pipe is incorrectly allowing multiple binds on Linux.(xicilion)
    • options:
      • fix prefix filename error in untar.(xicilion)
      • alias name package install error.(xicilion)
      • fix addon file path issue.(xicilion)
      • fix binary file installation path issue.(xicilion)
    • process:
      • not set return value when env key not exists.(xicilion)
      • crash in process.memoryUsage.(xicilion)
      • missing files.(xicilion)
    • SandBox - cannot find promises module by require("node:fs/promises") on Windows.(xicilion)
    • test - child_process test error on linux.(xicilion)
    • timers - timers.call may fail after multiple sleeps.(xicilion)
    • util - crash in util.promisify.(xicilion)
  • refactor :

    • addons:
      • add more api support.(xicilion)
      • Implement node_napi_env__ to support Finalizer for fixing object leaks within addons.(xicilion)
      • Update include directory for addons.(xicilion)
      • fix addon test on ubuntu 10.04.(xicilion)
      • remove unused code.(xicilion)
      • not check executable flag of .node.(xicilion)
      • enable addons to be loaded by fibjs.exe and node.exe.(xicilion)
      • throw dlerror in posix.(xicilion)
      • add init order test.(xicilion)
      • refactor promises test.(xicilion)
      • refactor code.(xicilion)
    • Buffer:
      • fix data type check in Buffer.concat.(xicilion)
      • use encoding.encode to build Bufer from string.(xicilion)
      • improving the performance of Buffer.from(string).(xicilion)
      • fix error in util.table.(xicilion)
      • adding missing scripts.(xicilion)
      • rewrite Buffer.write to improve performance.(xicilion)
      • optimising Buffer performance with primordials.(xicilion)
      • remove unused deleter.(xicilion)
      • refactor Buffer's data processing methods in native code.(xicilion)
      • inject the buffer module in the sandbox of the shared global.(xicilion)
      • define the Buffer type in a separate global sandbox.(xicilion)
      • implement the JavaScript version of Buffer.(xicilion)
      • not save ArrayBuffer into Global.(xicilion)
      • refactoring Buffer's built-in object binding model to optimize the performance of Buffer member method calls.(xicilion)
      • use InstanceOf to detect Buffer type.(xicilion)
      • only unwrap Buffer when ArrayBuffer is fully mapped.(xicilion)
      • compile error on Windows.(xicilion)
      • implement new Buffer(size) and Buffer.length to be compatible with the previous api.(xicilion)
      • refactor Buffer to inherit from Uint8Array.(xicilion)
    • build:
      • refactor build docker.(xicilion)
      • include CI environment variable in test docker.(xicilion)
      • fix openssl compile error on windows ia32.(xicilion)
      • enable ci test for macOS-14 arm64 in build.yml.(xicilion)
      • fix compile error on linux ia32.(xicilion)
      • update macOS versions in build.yml.(xicilion)
      • clear new_args before process arguments.(xicilion)
      • handle user permissions in Docker container.(xicilion)
      • add support for loong64ow architecture.(xicilion)
      • correct website link.(xicilion)
      • add USE_VENDER_DIST flag to build.cmd.(xicilion)
      • remove unnecessary environment variable in build.yml.(xicilion)
      • update build.sh script to include safe.directory in docker run command.(xicilion)
      • Remove gd module and related code.(xicilion)
      • Add -rdynamic flag for non-Windows systems(xicilion)
      • update cmake minimum required.(xicilion)
      • update CMakeLists.txt to read HEAD reference.(xicilion)
      • update build scripts and submodule initialization.(xicilion)
      • update vender tag retrieval in CMakeLists.txt.(xicilion)
      • refactor build.cmd and CMakeLists.txt(xicilion)
      • add dev argument in tasks.json.(xicilion)
      • add dev argument.(xicilion)
      • rename config.h to glibc_config.h.(xicilion)
      • delete logo folder.(xicilion)
      • delete perf folder.(xicilion)
      • delete unused variable.(xicilion)
      • fix compile warning in debug mode.(xicilion)
      • use the pre-compiled vender on github for compiling when the USE_VENDER_DIST environment variable is set.(xicilion)
      • remove unused path.(xicilion)
      • fetch current tag in vender.(xicilion)
      • refactor BUILD_OPTION.(xicilion)
      • merge flags with CMAKE_C_FLAGS.(xicilion)
      • not link stdc++ on Darwin.(xicilion)
      • set LINK_FLAGS in setup_result_library.(xicilion)
      • detect BUILD_OS and BUILD_ARCH in cmake script.(xicilion)
      • refactor build script.(xicilion)
      • refactor release workflow.(xicilion)
      • fix ci build script error.(xicilion)
      • script path error.(xicilion)
      • refactor build dockerfiles.(xicilion)
      • refactor ci workflow.(xicilion)
      • rename x86 to ia32.(xicilion)
      • not setup env in sub script.(xicilion)
      • refactor build script.(xicilion)
      • change amd64/i386 to x64/x86.(xicilion)
      • refactor shell build script.(xicilion)
      • link options error on alpine.(xicilion)
      • remove git from depend list.(xicilion)
      • update docker image to clang-12.(xicilion)
      • support amd64 on iphone.(xicilion)
      • fix compile error on windows.(xicilion)
      • add android ci item.(xicilion)
      • add android ci for arm and i386.(xicilion)
      • remove libmongo from cmake.(xicilion)
    • child_process:
      • fix test error on Windows.(xicilion)
      • process error in spawnSync.(xicilion)
    • ci - remove deprecating commands (#758)(PinelliaC)
    • core:
      • update heap limit in options.cpp.(xicilion)
      • set @toStringTag property with DontEnum attribute.(xicilion)
      • update vendor and fix character types in multiple files.(xicilion)
      • refactor node api include files.(xicilion)
      • refactor addon api source code.(xicilion)
      • convert date to ISOString in argument.(xicilion)
      • remove support for top-level async in common modules.(xicilion)
      • add musl flag in process.versions.(xicilion)
      • fill error code in callback.(xicilion)
      • reenable fasttext.(xicilion)
      • remove unused variable.(xicilion)
      • pass the global module via context.SetEmbedderData.(xicilion)
      • remove Master, argv from global.(xicilion)
      • allow passing null to ignore parameters.(xicilion)
      • patch glibc function.(xicilion)
      • optimise reference counting caused by unnecessary obj_ptr.(xicilion)
      • enable isolate scope.(xicilion)
      • replace #include "map".(xicilion)
      • change std::map to std::unordered_map.(xicilion)
      • remove unused variable.(xicilion)
      • deprecate VariantEx.(xicilion)
      • identify if it is a built-in object by checking InternalFieldCount.(xicilion)
      • use ::operator new/delete instead of new uint8_t[].(xicilion)
      • remove unused code.(xicilion)
      • define kObjectPrototype to refer to the prototype of a common object.(xicilion)
      • disable instance counter by default and allowed to be turned on by option.(xicilion)
      • assign the value to p directly in the constructor of obj_ptr to avoid unnecessary initialization that introduces extra load.(xicilion)
      • direct access to the data in the Buffer to avoid the cost of copying data.(xicilion)
      • refactor class cache init.(xicilion)
      • reduce calls to Isolate::current.(xicilion)
      • rename v8 instance api.(xicilion)
      • merge allocations of data blocks and BackingStore objects.(xicilion)
      • check pointer in getInstance.(xicilion)
      • refactoring getInstance to improve the speed of calling member methods of built-in objects.(xicilion)
      • not lock the object before calling the synchronization method.(xicilion)
      • discontinuation of support for native code to boost running performance.(xicilion)
      • break the script in ~SnapshotJsScope().(xicilion)
      • remove EscapableHandleScope in native function.(xicilion)
      • expanded memory usage limits.(xicilion)
      • use External to keep netive object pointer.(xicilion)
    • crypto:
      • rename BLS12381_G1/BLS12381_G2 to Bls12381G1/Bls12381G2.(xicilion)
      • move fips202 to vender.(xicilion)
      • update bbs signature to draft-irtf-cfrg-bbs-signatures-03.(xicilion)
      • refactor the api for bbs signature.(xicilion)
      • fix compile error on low version gcc.(xicilion)
      • remove unused code.(xicilion)
      • remove ecsdsa.(xicilion)
      • deprecation "sign to" function in ecc.(xicilion)
    • db:
      • document LevelDB.forEach.(xicilion)
      • enable sqlite test.(xicilion)
      • update sqlite to v3.45.1.(xicilion)
      • refactor LevelDB for improved performance.(xicilion)
      • support binary vector in vec_index.(xicilion)
      • remove the mongo module.(xicilion)
      • performance tuning for SQLite.(xicilion)
    • dgram - add test for multicast.(xicilion)
    • docs:
      • fix document format.(xicilion)
      • add star history.(响马)
      • translate comments in source code into english.(xicilion)
      • add document for bbs signature.(xicilion)
      • make it clear that SandBox is an isolation sandbox and not a security sandbox.(xicilion)
      • update missing ts files.(xicilion)
    • encoding:
      • use icu built-in encoding for iconv if icu built-in encoding.(xicilion)
      • disable iconv encode/decode in safe_isolate.(xicilion)
    • exlib:
      • refactor string.(xicilion)
      • fix the TLS issue on iPhone, implement local storage using pthread_key.(xicilion)
    • fasttext:
      • remove fasttext module.(xicilion)
      • change source code folder.(xicilion)
    • fs:
      • update writeFile function, support encoding for Buffer.(xicilion)
      • add writeFile() method options.(xicilion)
      • using unordered_map to speed up zip file lookups.(xicilion)
      • support FileHandle promisify in fs.promises.open.(xicilion)
    • global - Fix capitalization of GC function.(xicilion)
    • http:
      • rename maxHeaderLength to maxHeaderSize.(xicilion)
      • HttpHandler ends processing when HttpRequest detects a network shutdown.(xicilion)
      • when setting a custom Content-Type header, json/pack/body does not set the Content-Type.(xicilion)
      • add status to HttpResponse as an alias for statusCode.(xicilion)
      • cache STATUS_CODES in Isolate.(xicilion)
      • fix compile warning in debug mode.(xicilion)
    • Isolate - refactor isolate to minimize access to thread-local storage.(xicilion)
    • isolate:
      • add safe_current() method to Isolate class.(xicilion)
      • support Isolate::main() to get first isolate.(xicilion)
    • module - support exports in package.json.(xicilion)
    • net:
      • detects port arguments passed as strings in new TcpServer to avoid incorrect handling.(xicilion)
      • support timeout in Socket.connect.(xicilion)
    • option:
      • regenerate the opt_tools.cpp file.(xicilion)
      • refactor file download logic in install.js(xicilion)
      • fix dependency module tree.(xicilion)
    • options:
      • refactor install.js to save memory usage.(xicilion)
      • refactor module installation code.(xicilion)
      • update string helper function to handle paths correctly.(xicilion)
      • fix installation errors for symbolic link files in tar.gz.(xicilion)
      • fix addon filename on alpine.(xicilion)
    • os:
      • remove printer-related functions from os module.(xicilion)
      • use uv_os_uname to get os.arch.(xicilion)
    • PKey - fix compile warning in debug mode.(xicilion)
    • process:
      • add version of node and modules into process.versions.(xicilion)
      • support property attribute in process.env.(xicilion)
      • use handler to get env variable.(xicilion)
      • force exit in process.exit.(xicilion)
    • Routing - clear HttpRequest.params before process url.(xicilion)
    • sandbox - convert the result of readFile to Buffer directly to avoid introducing multiple type conversions.(xicilion)
    • SandBox:
      • remove unused header file.(xicilion)
      • not check stat for script file.(xicilion)
      • only lock require from same SandBox.(xicilion)
      • check file stat before load file.(xicilion)
      • compile warning on WIndows.(xicilion)
      • set resource_line_offset to -1 to enable v8 to report the correct line number.(xicilion)
      • support require('fs/promises').(xicilion)
      • deprecate the argv argument to SandBox.run.(xicilion)
      • modify the parameter order of the module wrapper to be compatible with node.js.(xicilion)
      • support builtin module's alias with prefix node:.(xicilion)
    • Sandbox - refactor SandBox lock handling to improve module loading flexibility.(xicilion)
    • test:
      • refactor test for child_process and gui.(xicilion)
      • fix file system and timer tests.(xicilion)
      • reduce memory usage in tests to avoid memory overflow in Windows ia32.(xicilion)
      • remove unused test file.(xicilion)
      • add missing document about return of test.mustCall/mustNotCall.(xicilion)
      • use localhost to test dns.resolve.(xicilion)
      • timeout in LruCache may error in ci.(xicilion)
      • test mey error on ci.(xicilion)
      • relaxing the time of testing avoids misjudgment during testing.(xicilion)
      • increase the timeout test time to avoid test misclassification.(xicilion)
      • run workerData test on load event.(xicilion)
      • reduce time judgment in testing to avoid misjudgment.(xicilion)
      • require garbage collection before enabling track_native_object.(xicilion)
    • tools - change split rule.(xicilion)
    • util:
      • add unicode version in util.info.(xicilion)
      • fix key collection mode in json_format function.(xicilion)
      • fix symbol formatting in util_format.(xicilion)
      • support util.types.(xicilion)
      • simplifying function calls with parameter defaults in inspect.(xicilion)
      • use u_getIntPropertyValue to refactor console.table.(xicilion)
    • uv - export uv functions in the symbol table to support being referenced in addons.(xicilion)
    • v8:
      • fix compile error in loong64 debug mode.(xicilion)
      • update to v11.8.173.(xicilion)
      • enable turbofan.(xicilion)
      • Disable V8_HAS_PKU_JIT_WRITE_PROTECT globally.(xicilion)
    • vender - update vender.(xicilion)
    • vm:
      • revert Sandbox.freeze.(xicilion)
      • remove Sandbox.freeze.(xicilion)
      • use proxy to isolate sandbox from host and share the global's data between them.(xicilion)
    • xml:
      • not close self-clsing tag in html.(xicilion)
      • refactors documentElement into an XmlElement node with tagName html.(xicilion)
      • implements XmlElement.outerHTML, mapping it to the function XmlElement.toString().(xicilion)
  • others :

    • addons. feat - support async work.(xicilion)
    • core - refactor: move SetAlignedPointerInInternalField of Buffer into object_base::wrap.(xicilion)
  • refator :

    • docs - Update PKey.idl function “sign” comment (#763)(yaoqiaofeng)
  • fix :

    • core - eliminate the key within the remove function. (#759)(PinelliaC)
  • reactor :

    • core - refactoring the object recognition model to improve the performance of calling Buffer object member methods.(xicilion)

Commits

  • [1168986a41] - util, refactor: add unicode version in util.info.(xicilion)
  • [0ffdab302b] - build, refactor: refactor build docker.(xicilion)
  • [8347822a28] - Merge remote-tracking branch 'origin/dev' into dev(xicilion)
  • [2114096f69] - test, refactor: refactor test for child_process and gui.(xicilion)
  • [53304c029a] - db, refactor: document LevelDB.forEach.(xicilion)
  • [a945fb830d] - db, refactor: enable sqlite test.(xicilion)
  • [7abb5f97ee] - db, refactor: update sqlite to v3.45.1.(xicilion)
  • [18a858a10e] - core, refactor: update heap limit in options.cpp.(xicilion)
  • [44e6bba626] - options, refactor: refactor install.js to save memory usage.(xicilion)
  • [7eb5e7babf] - options, refactor: refactor module installation code.(xicilion)
  • [1741353c5f] - build, refactor: include CI environment variable in test docker.(xicilion)
  • [6f492f781b] - options, bugfix: fix prefix filename error in untar.(xicilion)
  • [48ea0141c9] - options, refactor: update string helper function to handle paths correctly.(xicilion)
  • [188b2a41f5] - options, bugfix: alias name package install error.(xicilion)
  • [1206531a5e] - test, refactor: fix file system and timer tests.(xicilion)
  • [be79e1d334] - build, refactor: fix openssl compile error on windows ia32.(xicilion)
  • [528b9d5dd5] - build, refactor: enable ci test for macOS-14 arm64 in build.yml.(xicilion)
  • [7dd518fb69] - build, refactor: fix compile error on linux ia32.(xicilion)
  • [4b79b6a7bf] - build, refactor: update macOS versions in build.yml.(xicilion)
  • [4c3daa428d] - build, refactor: clear new_args before process arguments.(xicilion)
  • [c24194cad6] - build, refactor: handle user permissions in Docker container.(xicilion)
  • [62b0d1fa16] - fs, feat: support recursive option in fs.readdir.(xicilion)
  • [3a1fe5c6fd] - v8, refactor: fix compile error in loong64 debug mode.(xicilion)
  • [c4f5ac1dfd] - build, refactor: add support for loong64ow architecture.(xicilion)
  • [865eafa901] - build, refactor: correct website link.(xicilion)
  • [75742a186e] - fs, refactor: update writeFile function, support encoding for Buffer.(xicilion)
  • [7af243ea9e] - fs, refactor: add writeFile() method options.(xicilion)
  • [ff40f87cab] - build, refactor: add USE_VENDER_DIST flag to build.cmd.(xicilion)
  • [2bef21094c] - os, refactor: remove printer-related functions from os module.(xicilion)
  • [b12e600f89] - build, refactor: remove unnecessary environment variable in build.yml.(xicilion)
  • [6b37d5ba9f] - test, refactor: reduce memory usage in tests to avoid memory overflow in Windows ia32.(xicilion)
  • [845e4d5f86] - LevelDB, feat: add firstKey and lastKey methods, enhancements to forEach.(xicilion)
  • [14d029dde0] - db, refactor: refactor LevelDB for improved performance.(xicilion)
  • [20d07789b0] - build, refactor: update build.sh script to include safe.directory in docker run command.(xicilion)
  • [f8c5da798a] - option, refactor: regenerate the opt_tools.cpp file.(xicilion)
  • [4427498108] - option, refactor: refactor file download logic in install.js(xicilion)
  • [f66e5a9ac3] - test, refactor: remove unused test file.(xicilion)
  • [159805ce56] - build, refactor: Remove gd module and related code.(xicilion)
  • [36dd66bab9] - build, refactor: Add -rdynamic flag for non-Windows systems(xicilion)
  • [127c6af8b4] - module, refactor: support exports in package.json.(xicilion)
  • [ef71aafa5b] - build, refactor: update cmake minimum required.(xicilion)
  • [3ed13dc69d] - build, refactor: update CMakeLists.txt to read HEAD reference.(xicilion)
  • [ab6a9d3168] - options, refactor: fix installation errors for symbolic link files in tar.gz.(xicilion)
  • [734028da17] - options, bugfix: fix addon file path issue.(xicilion)
  • [1b650bb11b] - core, refactor: set @toStringTag property with DontEnum attribute.(xicilion)
  • [9bcd64997e] - util, refactor: fix key collection mode in json_format function.(xicilion)
  • [bca8c1f24a] - util, refactor: fix symbol formatting in util_format.(xicilion)
  • [a760a3557e] - util, feat: support symbol key in util.format.(xicilion)
  • [26eebc39ef] - options, bugfix: fix binary file installation path issue.(xicilion)
  • [265aa27031] - http, refactor: rename maxHeaderLength to maxHeaderSize.(xicilion)
  • [bbb0b594c0] - http, feat: add maxHeaderLength in http/HttpClient/HttpRequest/HttpResponse/HttpServer/HttpsServer/HttpHandler.(xicilion)
  • [a29e19b43a] - build, refactor: update build scripts and submodule initialization.(xicilion)
  • [255f912ad4] - build, refactor: update vender tag retrieval in CMakeLists.txt.(xicilion)
  • [a70f2a116c] - build, bugfix: fix conversion issue in app.cpp on Windows.(xicilion)
  • [48ef6589f7] - build, refactor: refactor build.cmd and CMakeLists.txt(xicilion)
  • [b51fda601e] - build, bugfix: fix UTF-8 to UTF-16 conversion on Windows.(xicilion)
  • [a7469ca774] - build, refactor: add dev argument in tasks.json.(xicilion)
  • [86cee67089] - build, refactor: add dev argument.(xicilion)
  • [90e282f41a] - isolate, refactor: add safe_current() method to Isolate class.(xicilion)
  • [7bae20993c] - build, bugfix: compile error on linux.(xicilion)
  • [3ec5cef967] - build, bugfix: update glibc_config.h include in encoding_iconv.cpp and encoding_iconv_ucs.cpp.(xicilion)
  • [755cecc0f4] - core, refactor: update vendor and fix character types in multiple files.(xicilion)
  • [1ef60f3ae4] - build, refactor: rename config.h to glibc_config.h.(xicilion)
  • [539a916ca4] - exlib, refactor: refactor string.(xicilion)
  • [bc4b8f11d0] - addons, refactor: add more api support.(xicilion)
  • [2a9a1a79bc] - addons, refactor: Implement node_napi_env__ to support Finalizer for fixing object leaks within addons.(xicilion)
  • [4c8c1441e6] - global, refactor: Fix capitalization of GC function.(xicilion)
  • [7b53c2c2a6] - addons, refactor: Update include directory for addons.(xicilion)
  • [dae8dc51b9] - core, refactor: refactor node api include files.(xicilion)
  • [9b4e5a4b18] - core, refactor: refactor addon api source code.(xicilion)
  • [a49d789d53] - Sandbox, refactor: refactor SandBox lock handling to improve module loading flexibility.(xicilion)
  • [0de2e1eef6] - xml, refactor: not close self-clsing tag in html.(xicilion)
  • [bc2a39a90c] - xml, refactor: refactors documentElement into an XmlElement node with tagName html.(xicilion)
  • [80ddca82e2] - xml, refactor: implements XmlElement.outerHTML, mapping it to the function XmlElement.toString().(xicilion)
  • [cd69b3c984] - console, feat: support complex parameters in console.trace.(xicilion)
  • [7739a738a7] - core, refactor: convert date to ISOString in argument.(xicilion)
  • [8730b4d319] - buffer, bugfix: Buffer.from(Date) result error.(xicilion)
  • [4ed90ece17] - build, refactor: delete logo folder.(xicilion)
  • [ea478bb07f] - build, refactor: delete perf folder.(xicilion)
  • [6ac95a10bb] - http, refactor: HttpHandler ends processing when HttpRequest detects a network shutdown.(xicilion)
  • [4be9147fa2] - net, refactor: detects port arguments passed as strings in new TcpServer to avoid incorrect handling.(xicilion)
  • [f035fad07d] - crypto, bugfix: crash in PKey.toJSON().(xicilion)
  • [afa75b74da] - http, refactor: when setting a custom Content-Type header, json/pack/body does not set the Content-Type.(xicilion)
  • [eb40809988] - build, refactor: delete unused variable.(xicilion)
  • [3ebce2d423] - crypto, bugfix: crash when new PKey with empty string.(xicilion)
  • [c2e9dc74ca] - test, refactor: add missing document about return of test.mustCall/mustNotCall.(xicilion)
  • [6897bb2288] - SandBox, refactor: remove unused header file.(xicilion)
  • [fb336699ec] - Routing, refactor: clear HttpRequest.params before process url.(xicilion)
  • [31befe5382] - SandBox, feat: support async import.(xicilion)
  • [6081d128a6] - option, refactor: fix dependency module tree.(xicilion)
  • [f9fc0f6cd6] - Buffer, refactor: fix data type check in Buffer.concat.(xicilion)
  • [28e1e52d6c] - http, refactor: add status to HttpResponse as an alias for statusCode.(xicilion)
  • [8b2def964a] - http, refactor: cache STATUS_CODES in Isolate.(xicilion)
  • [a5e9b5af07] - Digest, feat: support update string.(xicilion)
  • [fea27a89d1] - test, refactor: use localhost to test dns.resolve.(xicilion)
  • [44463b0ccc] - vm, refactor: revert Sandbox.freeze.(xicilion)
  • [30a319ed9d] - build, refactor: fix compile warning in debug mode.(xicilion)
  • [73a929819c] - SandBox, refactor: not check stat for script file.(xicilion)
  • [7dda8c254c] - fs, refactor: using unordered_map to speed up zip file lookups.(xicilion)
  • [d90731f1dd] - build, refactor: use the pre-compiled vender on github for compiling when the USE_VENDER_DIST environment variable is set.(xicilion)
  • [65134aeb04] - core, refactor: remove support for top-level async in common modules.(xicilion)
  • [cb8336d772] - vector, feat: support vec_distance function.(xicilion)
  • [ac60f9c95d] - build, refactor: remove unused path.(xicilion)
  • [679f888444] - fasttext, refactor: remove fasttext module.(xicilion)
  • [8b8f471405] - build, refactor: fetch current tag in vender.(xicilion)
  • [1953c8e547] - SQLite, feat: update sqlite.(xicilion)
  • [d797c0f057] - addons, bugfix: fibjs api crashed in addons callback.(xicilion)
  • [356bd77883] - test, refactor: timeout in LruCache may error in ci.(xicilion)
  • [b11c1922da] - test, refactor: test mey error on ci.(xicilion)
  • [53e4756054] - addons, refactor: fix addon test on ubuntu 10.04.(xicilion)
  • [050512c83d] - build, refactor: refactor BUILD_OPTION.(xicilion)
  • [10435ed5be] - build, refactor: merge flags with CMAKE_C_FLAGS.(xicilion)
  • [574503820f] - build, refactor: not link stdc++ on Darwin.(xicilion)
  • [8f50c1ec1d] - build, refactor: set LINK_FLAGS in setup_result_library.(xicilion)
  • [ed7cca3350] - build, refactor: detect BUILD_OS and BUILD_ARCH in cmake script.(xicilion)
  • [5bda216824] - build, refactor: refactor build script.(xicilion)
  • [ab7a5c8a7f] - build, refactor: refactor release workflow.(xicilion)
  • [ff42a6ddee] - build, refactor: fix ci build script error.(xicilion)
  • [e8b1b1ffc2] - build, refactor: script path error.(xicilion)
  • [056a5e74ca] - build, refactor: refactor build dockerfiles.(xicilion)
  • [46684e849d] - build, refactor: refactor ci workflow.(xicilion)
  • [debcdb71f9] - options, refactor: fix addon filename on alpine.(xicilion)
  • [66323a953e] - core, refactor: add musl flag in process.versions.(xicilion)
  • [03999427ed] - build, refactor: rename x86 to ia32.(xicilion)
  • [824c7e64b5] - build, refactor: not setup env in sub script.(xicilion)
  • [fc9034620a] - build, refactor: refactor build script.(xicilion)
  • [91d86d6aab] - SandBox, refactor: only lock require from same SandBox.(xicilion)
  • [bd998ec315] - build, refactor: change amd64/i386 to x64/x86.(xicilion)
  • [669504d1f8] - Merge remote-tracking branch 'origin/dev' into dev(xicilion)
  • [5fe6b4e436] - os, refactor: use uv_os_uname to get os.arch.(xicilion)
  • [ad5f673b74] - addons, bugfix: callback error on linux.(xicilion)
  • [41287cc441] - uv, refactor: export uv functions in the symbol table to support being referenced in addons.(xicilion)
  • [1455a04564] - addons, refactor: remove unused code.(xicilion)
  • [8bae75b6d1] - addons, feat: support napi_make_callback.(xicilion)
  • [a8ad9d4a3e] - test, feat: support muslCall/mustNotCall.(xicilion)
  • [d018d37b3c] - addons, refactor: not check executable flag of .node.(xicilion)
  • [997729954c] - build, refactor: refactor shell build script.(xicilion)
  • [bde0f038f2] - addons, refactor: enable addons to be loaded by fibjs.exe and node.exe.(xicilion)
  • [bee0fa2ed7] - child_process, refactor: fix test error on Windows.(xicilion)
  • [9b1abae97d] - addons, refactor: throw dlerror in posix.(xicilion)
  • [464db8bc9a] - core, refactor: fill error code in callback.(xicilion)
  • [ae8a37b7e1] - core, refactor: reenable fasttext.(xicilion)
  • [0a0e5db757] - process, refactor: add version of node and modules into process.versions.(xicilion)
  • [7bea7ec7eb] - child_process, bugfix: encoding/env/output error.(xicilion)
  • [9c681b9fe9] - build, bugfix: build script mistake.(xicilion)
  • [9a653e0655] - addons, feat: support napi_module_register addons module.(xicilion)
  • [87bf8a6c93] - options, feat: support install addons binary module.(xicilion)
  • [749785e49d] - addons, refactor: add init order test.(xicilion)
  • [d42a7f2ffa] - addons, refactor: refactor promises test.(xicilion)
  • [8129eb2df0] - util, refactor: support util.types.(xicilion)
  • [5e5da20277] - addons, bugfix: compile error on Windfows.(xicilion)
  • [6b0c5821b5] - addons, feat: support Buffer Finalizer.(xicilion)
  • [5665592ceb] - addons. feat: support async work.(xicilion)
  • [e493096aae] - addons, feat: support buffer api.(xicilion)
  • [c610073335] - addons, refactor: refactor code.(xicilion)
  • [77b1db23eb] - module, feat: support require(.node).(xicilion)
  • [5ab4d91549] - SandBox, refactor: check file stat before load file.(xicilion)
  • [004d3dd45e] - build, refactor: link options error on alpine.(xicilion)
  • [949d31027c] - process, feat: : support process.dlopen.(xicilion)
  • [b18cd2b5ba] - vm, feat: support vm.Script and context.(xicilion)
  • [3aab45d980] - test, refactor: relaxing the time of testing avoids misjudgment during testing.(xicilion)
  • [fc1ebd32eb] - vm, refactor: remove Sandbox.freeze.(xicilion)
  • [2fab5661fe] - util, refactor: simplifying function calls with parameter defaults in inspect.(xicilion)
  • [f6fbe99d2a] - util, feat: support maxStringLength in inspect. (#766)(PinelliaC)
  • [17a43539bb] - core, refactor: remove unused variable.(xicilion)
  • [7ee9aea4cf] - core, refactor: pass the global module via context.SetEmbedderData.(xicilion)
  • [77c928fddd] - vm, refactor: use proxy to isolate sandbox from host and share the global's data between them.(xicilion)
  • [9855cf869b] - core, refactor: remove Master, argv from global.(xicilion)
  • [af24410259] - test, refactor: increase the timeout test time to avoid test misclassification.(xicilion)
  • [4f71ae16da] - util, feat: support max_array_length in inspect. (#765)(PinelliaC)
  • [96ca1cfbd0] - iconv, bugfix: decode error when iconv does not exist.(xicilion)
  • [4cb10ebeb7] - encoding, refactor: use icu built-in encoding for iconv if icu built-in encoding.(xicilion)
  • [5e16d74084] - core, bugfix: Exception object crash.(xicilion)
  • [3e438ef56d] - dgram, refactor: add test for multicast.(xicilion)
  • [63b29c51ec] - dgram, feat: support multicast function.(xicilion)
  • [30c7be3dc9] - build, refactor: remove git from depend list.(xicilion)
  • [8a88c7d2f9] - v8, refactor: update to v11.8.173.(xicilion)
  • [687243d0ba] - build, refactor: update docker image to clang-12.(xicilion)
  • [c526167a66] - docs, bugfix: URL typo (#764)(PinelliaC)
  • [2828fd18f5] - core, refactor: allow passing null to ignore parameters.(xicilion)
  • [3e25a8f82d] - tty, feat: support cursorTo and moveCursor.(xicilion)
  • [65d4f77c63] - net, bugfix: pipe is incorrectly allowing multiple binds on Linux.(xicilion)
  • [67af61a307] - fasttext, feat: support more api.(xicilion)
  • [d70604139f] - core, refactor: patch glibc function.(xicilion)
  • [19f293e1ec] - fasttext, refactor: change source code folder.(xicilion)
  • [1248efa613] - fasttext, bugfix: predict has an error in recognizing a single word.(xicilion)
  • [de5ad3a85e] - fasttext, feat: ad fasttext module.(xicilion)
  • [aa7333ff0d] - build, bugfix: build unicode error,(xicilion)
  • [1f5100dcaa] - util, refactor: use u_getIntPropertyValue to refactor console.table.(xicilion)
  • [f41fcfbca3] - icu, feat: support Intl.Segmenter.(xicilion)
  • [6daf638fc2] - core, bugfix: RunMicrotasks will deadlock due to reentry.(xicilion)
  • [37c35ef809] - test, refactor: run workerData test on load event.(xicilion)
  • [e26ae8b614] - worker_threads, feat: support workerData in worker_threads.(xicilion)
  • [b7c8f96ec1] - test, refactor: reduce time judgment in testing to avoid misjudgment.(xicilion)
  • [5881ac6b10] - worker_threads, feat: support parentPort in worker_threads.(xicilion)
  • [b239efcee9] - url, feat: support fileURLToPath and pathToFileURL.(xicilion)
  • [d3969df26a] - db, bugfix: the db connection in odbc was not closed properly before being released.(xicilion)
  • [90e483b7a4] - mysql, bugfix: conn.execute throws a "broken pipe" error when the sql statement size is greater than 16M.(xicilion)
  • [50c0e6f942] - fs, refactor: support FileHandle promisify in fs.promises.open.(xicilion)
  • [a2eb1b5bf4] - crypto, refactor: rename BLS12381_G1/BLS12381_G2 to Bls12381G1/Bls12381G2.(xicilion)
  • [1943c78124] - vender, refactor: update vender.(xicilion)
  • [f588c3a5c3] - crypto, feat: support Bls12381Shake256 bbs suite.(xicilion)
  • [405af45c4a] - crypto, refactor: move fips202 to vender.(xicilion)
  • [3b5a0e001e] - crypto, bugfix: digest returns the wrong result when update is called multiple times in shake256.(xicilion)
  • [a8eeddc977] - crypto, refactor: update bbs signature to draft-irtf-cfrg-bbs-signatures-03.(xicilion)
  • [c70083653b] - timers, bugfix: timers.call may fail after multiple sleeps.(xicilion)
  • [3b7d8a9bd8] - crypto, feat: support shake.(xicilion)
  • [9ae4816099] - crypto, feat: support sha3.(xicilion)
  • [8ea81c9ec9] - docs, refactor: fix document format.(xicilion)
  • [6ba15c025b] - docs, refator: Update PKey.idl function “sign” comment (#763)(yaoqiaofeng)
  • [7889f44128] - db, refactor: support binary vector in vec_index.(xicilion)
  • [66e8ea3b0e] - net, refactor: support timeout in Socket.connect.(xicilion)
  • [36d0d3211a] - exlib, refactor: fix the TLS issue on iPhone, implement local storage using pthread_key.(xicilion)
  • [b912ee5495] - core, bugfix: the ineffective iteration over m_keys (#762)(PinelliaC)
  • [ccfe88c0a3] - jemalloc, bugfix: runtime error on kunpeng arch.(xicilion)
  • [ee081c2395] - core, bugfix: update the associative relationship between m_keys and m_values (#761)(PinelliaC)
  • [dacab81695] - docs, refactor: add star history.(响马)
  • [46ab52cce2] - docs, refactor: translate comments in source code into english.(xicilion)
  • [db5da8f20c] - crypto, refactor: refactor the api for bbs signature.(xicilion)
  • [4e28733a03] - docs, refactor: add document for bbs signature.(xicilion)
  • [684f54383a] - build, refactor: support amd64 on iphone.(xicilion)
  • [83d7a87846] - build, refactor: fix compile error on windows.(xicilion)
  • [9172dcfecd] - crypto, refactor: fix compile error on low version gcc.(xicilion)
  • [0bb927794d] - crypto, bugfix: remove dependency on std::span to fix compilation errors in low versions of gcc.(xicilion)
  • [b121842e37] - crypto, feat: support bbs signacture.(xicilion)
  • [03fd0ffadb] - core, refactor: optimise reference counting caused by unnecessary obj_ptr.(xicilion)
  • [db30d57f93] - fs, bugfix: 64 bits seek error on Linux i386&arm.(xicilion)
  • [2aecba53a7] - build, refactor: add android ci item.(xicilion)
  • [a645f6a74d] - docs, bugfix: update docs (#760)(PinelliaC)
  • [6ec5eb0704] - build, refactor: add android ci for arm and i386.(xicilion)
  • [1716e519e5] - core, bugfix: crash when loading so in python.(xicilion)
  • [da4f8e18ea] - core, fix: eliminate the key within the remove function. (#759)(PinelliaC)
  • [2373c4c26d] - Buffer, refactor: use encoding.encode to build Bufer from string.(xicilion)
  • [f7adbc0588] - build, feat: build shared library.(xicilion)
  • [cd9bfed872] - SandBox, refactor: compile warning on WIndows.(xicilion)
  • [1701ed46a1] - crypto, refactor: remove unused code.(xicilion)
  • [1038489915] - crypto, refactor: remove ecsdsa.(xicilion)
  • [5c75fba734] - http, refactor: fix compile warning in debug mode.(xicilion)
  • [5983e7d3e2] - PKey, refactor: fix compile warning in debug mode.(xicilion)
  • [39d1578ab4] - crypto, refactor: deprecation "sign to" function in ecc.(xicilion)
  • [24da7f5a14] - crypto, feat: support computeSecret in BlsKey.(xicilion)
  • [3cd018c4d3] - util, bugfix: crash in util.promisify.(xicilion)
  • [e12cb3348f] - SandBox, feat: simple support for loading ES modules.(xicilion)
  • [740da800ab] - Buffer, refactor: improving the performance of Buffer.from(string).(xicilion)
  • [40ab37648c] - Buffer, refactor: fix error in util.table.(xicilion)
  • [6a4c2474bd] - Buffer, refactor: adding missing scripts.(xicilion)
  • [8cdc37df35] - core, refactor: enable isolate scope.(xicilion)
  • [6bce235f8b] - Buffer, refactor: rewrite Buffer.write to improve performance.(xicilion)
  • [234e78b2ad] - Buffer, refactor: optimising Buffer performance with primordials.(xicilion)
  • [665a69dabe] - core, refactor: replace #include "map".(xicilion)
  • [d76e9162dd] - core, bugfix: unordered_map compile error on android.(xicilion)
  • [e5cfac7139] - process, refactor: support property attribute in process.env.(xicilion)
  • [492c44169b] - core, refactor: change std::map to std::unordered_map.(xicilion)
  • [fc05e1173e] - process, bugfix: not set return value when env key not exists.(xicilion)
  • [61ccbebe57] - SandBox, refactor: set resource_line_offset to -1 to enable v8 to report the correct line number.(xicilion)
  • [8f363b3aec] - core, refactor: remove unused variable.(xicilion)
  • [ee0c8e95d0] - process, refactor: use handler to get env variable.(xicilion)
  • [9740865581] - v8, refactor: enable turbofan.(xicilion)
  • [1dff34944c] - Buffer, refactor: remove unused deleter.(xicilion)
  • [1ed2b476f4] - core, feat: suooprt DisallowGarbageCollection.(xicilion)
  • [3bff2dec43] - core, refactor: deprecate VariantEx.(xicilion)
  • [b47dc02d61] - v8, refactor: Disable V8_HAS_PKU_JIT_WRITE_PROTECT globally.(xicilion)
  • [c04a310212] - core, bugfix: runtime error in debug mode.(xicilion)
  • [ad5b53a72b] - v8, feat: update v8 to v11.5.151.(xicilion)
  • [f679016c5b] - process, refactor: force exit in process.exit.(xicilion)
  • [bb362a650d] - isolate, refactor: support Isolate::main() to get first isolate.(xicilion)
  • [e8b066865d] - encoding, refactor: disable iconv encode/decode in safe_isolate.(xicilion)
  • [d603cf2750] - core, refactor: identify if it is a built-in object by checking InternalFieldCount.(xicilion)
  • [e13657cda2] - build, refactor: remove libmongo from cmake.(xicilion)
  • [cf794b49c5] - core, refactor: use ::operator new/delete instead of new uint8_t[].(xicilion)
  • [32c0c2d1cc] - core, refactor: remove unused code.(xicilion)
  • [1392b262a7] - Buffer, refactor: refactor Buffer's data processing methods in native code.(xicilion)
  • [af4b8a2260] - Buffer, refactor: inject the buffer module in the sandbox of the shared global.(xicilion)
  • [5c0ace24ca] - Buffer, refactor: define the Buffer type in a separate global sandbox.(xicilion)
  • [cb83f32ec9] - db, refactor: remove the mongo module.(xicilion)
  • [f1789617cf] - Buffer, refactor: implement the JavaScript version of Buffer.(xicilion)
  • [ecf693c1e0] - test, refactor: require garbage collection before enabling track_native_object.(xicilion)
  • [f0a90eaca3] - core, refactor: define kObjectPrototype to refer to the prototype of a common object.(xicilion)
  • [e35d929253] - encoding, feat: support encode/decode with codec.(xicilion)
  • [1d3353bb84] - sandbox, refactor: convert the result of readFile to Buffer directly to avoid introducing multiple type conversions.(xicilion)
  • [64ea150c3f] - Buffer, refactor: not save ArrayBuffer into Global.(xicilion)
  • [32fc76f88d] - build, bugfix: update vender to fix compile error.(xicilion)
  • [ef7dc23b34] - core, bugfix: incorrect handling of kJSSpecialApiObjectType objects in get_instance_pointer causes fibjs crash.(xicilion)
  • [f1af68f8b4] - test, feat: enable g_track_native_object in test.setup to support using process.memoryUsage to count the use of built-in objects.(xicilion)
  • [666ea31fc5] - process, bugfix: crash in process.memoryUsage.(xicilion)
  • [3b954fe1d6] - core, refactor: disable instance counter by default and allowed to be turned on by option.(xicilion)
  • [1fe90c0722] - core, refactor: assign the value to p directly in the constructor of obj_ptr to avoid unnecessary initialization that introduces extra load.(xicilion)
  • [c246353501] - core, refactor: direct access to the data in the Buffer to avoid the cost of copying data.(xicilion)
  • [37b26579a9] - core, refactor: refactor class cache init.(xicilion)
  • [607adb4b83] - core: refactor: move SetAlignedPointerInInternalField of Buffer into object_base::wrap.(xicilion)
  • [4bec0a807b] - core, refactor: reduce calls to Isolate::current.(xicilion)
  • [aaa204beaf] - Buffer, refactor: refactoring Buffer's built-in object binding model to optimize the performance of Buffer member method calls.(xicilion)
  • [b9cfd31d64] - core, refactor: rename v8 instance api.(xicilion)
  • [0c78a2a615] - core, reactor: refactoring the object recognition model to improve the performance of calling Buffer object member methods.(xicilion)
  • [5482491e29] - core, bugfix: compile error on WIndows.(xicilion)
  • [90b04aa12a] - core, refactor: merge allocations of data blocks and BackingStore objects.(xicilion)
  • [250c3ee5dc] - core, refactor: check pointer in getInstance.(xicilion)
  • [f887fa4e82] - core, refactor: refactoring getInstance to improve the speed of calling member methods of built-in objects.(xicilion)
  • [f2ac34ad94] - core, refactor: not lock the object before calling the synchronization method.(xicilion)
  • [7d78fbc2c7] - core, refactor: discontinuation of support for native code to boost running performance.(xicilion)
  • [0cfa14a463] - core, refactor: break the script in ~SnapshotJsScope().(xicilion)
  • [36ea24e4bb] - core, refactor: remove EscapableHandleScope in native function.(xicilion)
  • [7bd598cd9b] - Isolate, refactor: refactor isolate to minimize access to thread-local storage.(xicilion)
  • [0ba556fa7f] - core, refactor: expanded memory usage limits.(xicilion)
  • [594699df10] - Buffer, refactor: use InstanceOf to detect Buffer type.(xicilion)
  • [d523eab118] - Buffer, refactor: only unwrap Buffer when ArrayBuffer is fully mapped.(xicilion)
  • [7b07101b94] - Buffer, refactor: compile error on Windows.(xicilion)
  • [311c41a4aa] - Buffer, refactor: implement new Buffer(size) and Buffer.length to be compatible with the previous api.(xicilion)
  • [012a79a2db] - Buffer, refactor: refactor Buffer to inherit from Uint8Array.(xicilion)
  • [e12db17af7] - core, refactor: use External to keep netive object pointer.(xicilion)
  • [d305a445d2] - crypto, feat: support undefined in randomBytes.(xicilion)
  • [62b38177b0] - tools, refactor: change split rule.(xicilion)
  • [018915a17a] - docs, refactor: make it clear that SandBox is an isolation sandbox and not a security sandbox.(xicilion)
  • [8a50cb1a62] - ci, refactor: remove deprecating commands (#758)(PinelliaC)
  • [0961a987e0] - db, refactor: performance tuning for SQLite.(xicilion)
  • [f38fe11575] - SandBox, refactor: support require('fs/promises').(xicilion)
  • [4298510016] - SandBox, refactor: deprecate the argv argument to SandBox.run.(xicilion)
  • [c051529be5] - SandBox, refactor: modify the parameter order of the module wrapper to be compatible with node.js.(xicilion)
  • [dbd3041ac7] - SandBox, bugfix: cannot find promises module by require("node:fs/promises") on Windows.(xicilion)
  • [a060c3e0a7] - SandBox, refactor: support builtin module's alias with prefix node:.(xicilion)
  • [07ad422e07] - core, feat: support execute scripts in package.json.(xicilion)
  • [f80980f5dd] - process, bugfix: missing files.(xicilion)
  • [320be42336] - process, feat: support emitWarning.(xicilion)
  • [22f7f5061a] - test, bugfix: child_process test error on linux.(xicilion)
  • [04dec0d131] - child_process, refactor: process error in spawnSync.(xicilion)
  • [3a0588bb64] - child_process, feat: support spawnSync.(xicilion)
  • [fc54e7c38b] - docs, refactor: update missing ts files.(xicilion)
  • [97309cb752] - child_process, feat: support inherit mode in execFile.(xicilion)

Archives

  1. fibjs-v0.37.0-alpine-arm64
  2. fibjs-v0.37.0-alpine-arm64.tar.gz
  3. fibjs-v0.37.0-alpine-ia32
  4. fibjs-v0.37.0-alpine-ia32.tar.gz
  5. fibjs-v0.37.0-alpine-x64
  6. fibjs-v0.37.0-alpine-x64.tar.gz
  7. fibjs-v0.37.0-android-arm
  8. fibjs-v0.37.0-android-arm.tar.gz
  9. fibjs-v0.37.0-android-arm64
  10. fibjs-v0.37.0-android-arm64.tar.gz
  11. fibjs-v0.37.0-android-ia32
  12. fibjs-v0.37.0-android-ia32.tar.gz
  13. fibjs-v0.37.0-android-x64
  14. fibjs-v0.37.0-android-x64.tar.gz
  15. fibjs-v0.37.0-darwin-arm64
  16. fibjs-v0.37.0-darwin-arm64.tar.gz
  17. fibjs-v0.37.0-darwin-x64
  18. fibjs-v0.37.0-darwin-x64.tar.gz
  19. fibjs-v0.37.0-iphone-arm64
  20. fibjs-v0.37.0-iphone-arm64.tar.gz
  21. fibjs-v0.37.0-iphone-x64
  22. fibjs-v0.37.0-iphone-x64.tar.gz
  23. fibjs-v0.37.0-linux-arm
  24. fibjs-v0.37.0-linux-arm.tar.gz
  25. fibjs-v0.37.0-linux-arm64
  26. fibjs-v0.37.0-linux-arm64.tar.gz
  27. fibjs-v0.37.0-linux-ia32
  28. fibjs-v0.37.0-linux-ia32.tar.gz
  29. fibjs-v0.37.0-linux-loong64
  30. fibjs-v0.37.0-linux-loong64.tar.gz
  31. fibjs-v0.37.0-linux-loong64ow
  32. fibjs-v0.37.0-linux-loong64ow.tar.gz
  33. fibjs-v0.37.0-linux-mips64
  34. fibjs-v0.37.0-linux-mips64.tar.gz
  35. fibjs-v0.37.0-linux-ppc64
  36. fibjs-v0.37.0-linux-ppc64.tar.gz
  37. fibjs-v0.37.0-linux-riscv64
  38. fibjs-v0.37.0-linux-riscv64.tar.gz
  39. fibjs-v0.37.0-linux-x64
  40. fibjs-v0.37.0-linux-x64.tar.gz
  41. fibjs-v0.37.0-win32-arm64.exe
  42. fibjs-v0.37.0-win32-arm64.zip
  43. fibjs-v0.37.0-win32-gui-arm64.exe
  44. fibjs-v0.37.0-win32-gui-arm64.zip
  45. fibjs-v0.37.0-win32-gui-ia32.exe
  46. fibjs-v0.37.0-win32-gui-ia32.zip
  47. fibjs-v0.37.0-win32-gui-x64.exe
  48. fibjs-v0.37.0-win32-gui-x64.zip
  49. fibjs-v0.37.0-win32-ia32.exe
  50. fibjs-v0.37.0-win32-ia32.zip
  51. fibjs-v0.37.0-win32-x64.exe
  52. fibjs-v0.37.0-win32-x64.zip
  53. fullsrc.zip
  54. installer-v0.37.0-alpine-arm64.sh
  55. installer-v0.37.0-alpine-ia32.sh
  56. installer-v0.37.0-alpine-x64.sh
  57. installer-v0.37.0-android-arm.sh
  58. installer-v0.37.0-android-arm64.sh
  59. installer-v0.37.0-android-ia32.sh
  60. installer-v0.37.0-android-x64.sh
  61. installer-v0.37.0-darwin-arm64.sh
  62. installer-v0.37.0-darwin-x64.sh
  63. installer-v0.37.0-iphone-arm64.sh
  64. installer-v0.37.0-iphone-x64.sh
  65. installer-v0.37.0-linux-arm.sh
  66. installer-v0.37.0-linux-arm64.sh
  67. installer-v0.37.0-linux-ia32.sh
  68. installer-v0.37.0-linux-loong64.sh
  69. installer-v0.37.0-linux-loong64ow.sh
  70. installer-v0.37.0-linux-mips64.sh
  71. installer-v0.37.0-linux-ppc64.sh
  72. installer-v0.37.0-linux-riscv64.sh
  73. installer-v0.37.0-linux-x64.sh
  74. installer-v0.37.0-win32-arm64.exe
  75. installer-v0.37.0-win32-ia32.exe
  76. installer-v0.37.0-win32-x64.exe
  77. Source code (tar.gz)
  78. Source code (zip)
  79. All download options

2023-04-09, Version v0.36.0

Changes

  • feature :

    • blst - update to v0.3.10.(xicilion)
    • build:
      • add riscv64 docker file.(xicilion)
      • build for iPhone.(xicilion)
      • compile for iPhone.(xicilion)
      • add apline ppc64 dockerfile.(xicilion)
      • support loong64.(xicilion)
      • update dockerfiles.(xicilion)
      • enable ctrl-c to break build in docker.(xicilion)
      • use current user name in docker.(xicilion)
      • support android in ci.(xicilion)
      • support cross build for android/linux.(xicilion)
      • build alpine in ci.(xicilion)
      • support alipine build.(xicilion)
      • automatically create /usr/local/bin folder during installation.(xicilion)
    • child_process:
      • set the error exit code when the child process is aborted.(xicilion)
      • return process exit code in join. #736(xicilion)
    • ci - support riscv64 ci build.(xicilion)
    • core:
      • support riscv64.(xicilion)
      • process background tasks.(xicilion)
      • support ppc64.(xicilion)
      • type error in WebAssembly.(xicilion)
    • coroutine - support timeout.(xicilion)
    • crypto:
      • support loadPKey.(xicilion)
      • update doc of crypto.(xicilion)
      • update root ca.(xicilion)
      • implement BlaKey.(xicilion)
      • support aggregate on BLS12381_G1/BLS12381_G2.(xicilion)
    • db:
      • support for multi-core concurrent vector queries.(xicilion)
      • support vector search.(xicilion)
      • use system codec in odbc.(xicilion)
    • docs:
      • update docs submodule.(xicilion)
      • building an index of documents and test cases with OpenAI.(xicilion)
      • update doc.(xicilion)
      • update module documents.(xicilion)
      • update docs.(xicilion)
      • update docs.(xicilion)
    • encoding - set binary/latin1 to native codec.(xicilion)
    • exlib - support Apple M1.(xicilion)
    • fs - support fs.write.(xicilion)
    • global - add performance module.(xicilion)
    • http:
      • support http.request(opts).(xicilion)
      • support for ignoring method parameters in http.request.(xicilion)
    • icu - support change TZ/LANG env inside process.(xicilion)
    • msgpack - support Set and Map (#751)(lhkzh)
    • option:
      • to specify the path of package.json, use --target in --install (#756)(PinelliaC)
      • support -e on command line.(xicilion)
      • Use http_proxy to proxy https requests when https_proxy is not set.(xicilion)
      • --install script support uppercase HTTP_PROXY environment variable.(xicilion)
    • options - support * in package.json.(xicilion)
    • os:
      • support os.platform on android.(xicilion)
      • support ppc64.(xicilion)
    • process - support uid/gui in process.(xicilion)
    • repl - support javascript statements beginning with .. in the repl. #738(xicilion)
    • SandBox - support addNativeModule.(xicilion)
    • Sandbox - support builtin module's alias with prefix fibjs:.(richardo2016)
    • ssl - automatically load the root certificate at startup.(xicilion)
    • test:
      • add icu test.(xicilion)
      • return test result in test.run.(xicilion)
      • support todo item.(xicilion)
    • uv - update to v1.44.2.(xicilion)
    • v8:
      • update to v11.2.129.(xicilion)
      • support icu.(xicilion)
      • update to v10.9.194.4.(xicilion)
    • vender - update packages.(xicilion)
    • vm - rename Sandbox::addNativeModule to Sandbox::addBuiltinModules.(richardo2016)
    • xml:
      • support element methods.(xicilion)
      • support XmlNode.children.(xicilion)
    • zip - support codec in ZipFile.(xicilion)
  • bugfix :

    • build:
      • missing files.(xicilion)
      • compile error in mips64 debug.(xicilion)
      • alpine test error in ci.(xicilion)
      • test error in ci.(xicilion)
      • test docker name error on linux.(响马)
      • fix build error on win32 clang.(richardo2016)
      • build option error in docker on mac.(xicilion)
      • build error in ci.(xicilion)
      • compile error on android.(xicilion)
      • compile warning on Windows.(xicilion)
    • child_process - do not pass environment variables when the variable is undefined.(xicilion)
    • console - unicode characters not supported by the codepage return wrong characters in readline on Windows. #741(xicilion)
    • core:
      • deadlock on backgroud task in worker isolate.(xicilion)
      • deadlock in wasm async compile.(xicilion)
      • create HttpClient when building Isolate to avoid memory access errors caused by dynamic creation.(xicilion)
      • Object.prototype.toString.call(native object) return [object Object].(xicilion)
      • refactor fcntl64.(xicilion)
      • missing include file.(xicilion)
    • crypto - crash when dumping uninitialized X509Cert object.(xicilion)
    • db:
      • fix Redis.incr/decr (#755)(lhkzh)
      • use utf8 codec on windows.(xicilion)
    • docs - update websocket doc (#754)(PinelliaC)
    • exlib - ConditionVariable deadlock.(xicilion)
    • gui - webview missing in macos.(xicilion)
    • hash - keccak384 hash error.(xicilion)
    • http:
      • the abbreviation for file size has been displayed incorrectly. (#757)(PinelliaC)
      • query.all causes wrong memoryUsage count.(xicilion)
      • HttpClient.sslVerification does not working.(xicilion)
      • encoding error when Cookie value in HttpResponse is empty. #743(xicilion)
    • os - result of os.cpus() does not change.(xicilion)
    • process - wasm compiler worker holds fibjs process.(xicilion)
    • repl - The wrong repl path causes require to not reach the modules in the current directory. #735(xicilion)
    • Sandbox - module initialization script timeout will cause fibjs crash.(xicilion)
    • ssl - default client crt and key not work.(xicilion)
    • test:
      • test error in CI.(xicilion)
      • util test error.(xicilion)
      • util test error when compile with gcc.(xicilion)
      • child_process test error in CI.(xicilion)
      • iconv test error in CI.(xicilion)
      • test error in CI.(xicilion)
      • test error in CI.(xicilion)
      • some test error.(xicilion)
      • some test error.(xicilion)
      • getter test error.(xicilion)
    • util - compile error on Windows.(xicilion)
    • uuid - compile error on Linux.(xicilion)
    • uv:
      • link error in debug mode.(xicilion)
      • fix uv issue.(xicilion)
    • v8:
      • v8 crashed when load wasm module on linux x64.(xicilion)
      • compile error in debug mode.(xicilion)
    • vm - missing idl file.(xicilion)
    • xml - release children cause crash.(xicilion)
  • refactor :

    • BlsKey - assign first point.(xicilion)
    • Buffer:
      • do not assert isolate locker status in Buffer::is_safe_codec.(xicilion)
      • Fix some functions of Buffer for compatibility with node.js. #696(xicilion)
    • build:
      • install xz-utils in alpine-build-env.(xicilion)
      • upgrade ci to ubuntu 20.04.(xicilion)
      • patch powf.(xicilion)
      • use userid in docker.(xicilion)
      • not patch first version of glibc.(xicilion)
      • do not patch math function on loongarch64.(xicilion)
      • change compiler to vec version on loongarch64.(xicilion)
      • compress qemu binary file.(xicilion)
      • refactor docker file for loong64.(xicilion)
      • file mode for qemu on mac.(xicilion)
      • fix glibc_2.17 on arm.(xicilion)
      • update compiler to 8.3.novec for loongarch64.(xicilion)
      • only patch memcpy&time on x86.(xicilion)
      • refactor glibc detect function.(xicilion)
      • fix expf argument type.(xicilion)
      • build loong64 docker image for release.(xicilion)
      • print shared libraries used.(xicilion)
      • detect vc in vs.net.(xicilion)
      • remove out/bin directly in build clean.(xicilion)
      • enable CXX compile options.(xicilion)
      • skip iPhone test on ci.(响马)
      • test ubuntu 10.04 only on amd64.(xicilion)
      • add ubuntu 10.04 test in ci.(xicilion)
      • remove arm alpine ci.(xicilion)
      • enable PIC in posix.(xicilion)
      • enable gc-sections link option.(xicilion)
      • compile error on alpine for arm.(xicilion)
      • add i385&arm docker.(xicilion)
      • remove SLOW_DCHECKS option.(xicilion)
      • detect musl compiler.(xicilion)
      • update loong64 dockerfile.(xicilion)
      • revert some comments.(xicilion)
      • set CI env in test.sh.(xicilion)
      • change ci to docker.(xicilion)
      • refactor dockerfiles, support loong64.(xicilion)
      • skip some test in CI.(xicilion)
      • change docker os to ubuntu 18.04.(xicilion)
      • refactor build script.(xicilion)
      • not build gui module when using llvm on mac.(xicilion)
      • map work folder to same path in docker.(xicilion)
      • use ansi code in build script.(xicilion)
      • auto detect brew folder.(xicilion)
    • console - deprecate key&mouse operation.(xicilion)
    • core:
      • PumpMessageLoop only when there are background tasks.(xicilion)
      • use IsJust instead of Check to prevent MeyBe crash.(xicilion)
      • use FromMaybe instead of ToChecked to prevent MeyBe crash.(xicilion)
      • use FromMaybe instead of FromJust to prevent MeyBe crash.(xicilion)
      • use Global.Get to convert Value.(xicilion)
      • use dynamic_cast to check class type of object.(xicilion)
      • init class before first create.(xicilion)
      • remove unused code.(xicilion)
      • use default dcheck error handler.(xicilion)
      • refactor native module list.(xicilion)
      • refactor platform creator.(xicilion)
      • set native async function name.(xicilion)
      • Simplify the delivery of events in callbacks and promises.(xicilion)
    • coroutine:
      • resume task outside of lock.(xicilion)
      • revert Sleep.cancel.(xicilion)
    • crypto:
      • refactor PKey class.(xicilion)
      • compile warning.(xicilion)
      • rename more secp256k1 api name.(xicilion)
    • db:
      • optimizing the database structure for vector search.(xicilion)
      • refactor vector index plugin.(xicilion)
      • use a single table to store indexed data in the vector search plugin.(xicilion)
      • change labeltype type to int32_t.(xicilion)
      • remove fulltext search in sqlite.(xicilion)
      • use PostgreSQL unicode driver.(xicilion)
    • docs:
      • update document for HttpCookie.(xicilion)
      • update docs.(xicilion)
      • update document in idl.(xicilion)
      • update ws docs.(xicilion)
      • update docs.(xicilion)
      • add nl language.(xicilion)
      • update collect.json.(xicilion)
      • use viz.js to render graph.(xicilion)
    • ECCKey - refactor ECCKey.(xicilion)
    • encoding - deprecate custom encode in encoding.json.(xicilion)
    • exlib:
      • refactor context switch on posix.(xicilion)
      • refactor sleep.cancel.(xicilion)
    • gd - enable filter test on loongarch64.(xicilion)
    • global - add URL to global.(xicilion)
    • gui - disable gui on ios.(xicilion)
    • http:
      • add get as an alias for first in HttpCollection.(xicilion)
      • throw error if the connection is closed by peer when Httprequest/HttpResponse readFrom.(xicilion)
      • missing files.(xicilion)
      • support http_proxy and https_proxy in HttpClient.(xicilion)
    • iconv:
      • refactor code.(xicilion)
      • refactor code.(xicilion)
    • icu - support TZ and LANG env on Windows.(xicilion)
    • isolate - refactor code of background task.(xicilion)
    • option - save package.json when update module.(xicilion)
    • options - use JSON.stringify to generate package.json.(xicilion)
    • PKey - refactor ECCKey, separate Ed25519Key.(xicilion)
    • process:
      • use uv to set os env.(xicilion)
      • reset thread signal mask.(xicilion)
    • SandBox:
      • refactor repl.(xicilion)
      • deprecate SandBox.refresh.(xicilion)
    • sandbox - support relative path in internal script.(xicilion)
    • test:
      • test of wasm load crash.(xicilion)
      • use different name in selfzip test.(xicilion)
      • os test fail on ubuntu 10.04.(xicilion)
      • remove console.keyDown case.(xicilion)
      • skip unsupported tests.(xicilion)
      • change gb2312 to EUC-JP in test.(xicilion)
      • hide ignored items in normal mode.(xicilion)
      • stable os.cpus tests.(xicilion)
      • deprecated setting loglevel in test.(xicilion)
      • change http test url.(xicilion)
    • tools:
      • update fib-spliter to v1.4.0.(xicilion)
      • change document index table name.(xicilion)
      • update fib-spliter.(xicilion)
      • remove unused prompt.(xicilion)
      • update prompt to avoid unexpected question.(xicilion)
      • update prompt for ask.(xicilion)
      • optimize document indexing and disable useless fragments.(xicilion)
      • format docs hash json file.(xicilion)
      • use devtools to translate docs.(xicilion)
    • url - keep other variables in sync when setting host, hostname and port.(xicilion)
    • util - add icu version.(xicilion)
    • v8:
      • revert to 10.9.194.9.(xicilion)
      • disable code gc in wasm.(xicilion)
    • xml:
      • set ownerDocument tp child Nodes.(xicilion)
      • init m_document.(xicilion)
      • move TextContext to XmlNode.(xicilion)
  • others :

    • Merge branch 'dev' of github.com - fibjs/fibjs into dev(xicilion)
    • Merge remote-tracking branch 'origin/dev' into dev(xicilion)
    • Merge remote-tracking branch 'origin/dev' into dev(xicilion)
    • Merge remote-tracking branch 'origin/dev' into dev(xicilion)
    • v0.37.0-dev.(xicilion)
    • Release 0.36.0.(xicilion)
    • Merge remote-tracking branch 'origin/dev' into dev(xicilion)
  • refator :

    • build - fix GLIBC_2.27 issue.(xicilion)
  • bigfix :

    • build - compile warning and runtime error in debug mode.(xicilion)

Commits

  • [fb770ed822] - v8, bugfix: v8 crashed when load wasm module on linux x64.(xicilion)
  • [939235436b] - tools, refactor: update fib-spliter to v1.4.0.(xicilion)
  • [9134f642b4] - docs, refactor: update document for HttpCookie.(xicilion)
  • [e84b7036d3] - tools, refactor: change document index table name.(xicilion)
  • [7875ba8a4c] - http, refactor: add get as an alias for first in HttpCollection.(xicilion)
  • [7fb22f0eab] - tools, refactor: update fib-spliter.(xicilion)
  • [2c12f0cf5e] - http, refactor: throw error if the connection is closed by peer when Httprequest/HttpResponse readFrom.(xicilion)
  • [3dddcccaa9] - docs, refactor: update docs.(xicilion)
  • [868507eb15] - docs, feat: update docs submodule.(xicilion)
  • [64999c0473] - docs, refactor: update document in idl.(xicilion)
  • [1da5183482] - build, refactor: install xz-utils in alpine-build-env.(xicilion)
  • [25540eb6df] - tools, refactor: remove unused prompt.(xicilion)
  • [eaf07530c6] - tools, refactor: update prompt to avoid unexpected question.(xicilion)
  • [f2d3543640] - tools, refactor: update prompt for ask.(xicilion)
  • [8b4869f32f] - tools, refactor: optimize document indexing and disable useless fragments.(xicilion)
  • [a80336feff] - docs, feat: building an index of documents and test cases with OpenAI.(xicilion)
  • [cebf95fe8e] - docs, feat: update doc.(xicilion)
  • [08aa0d58a7] - db, refactor: optimizing the database structure for vector search.(xicilion)
  • [852c79f214] - db, feat: support for multi-core concurrent vector queries.(xicilion)
  • [209fe50df5] - ci, feat: support riscv64 ci build.(xicilion)
  • [91737af6f0] - build, feat: add riscv64 docker file.(xicilion)
  • [9de7187022] - core, feat: support riscv64.(xicilion)
  • [3633d7a598] - build, refactor: upgrade ci to ubuntu 20.04.(xicilion)
  • [cee2e2f583] - db, refactor: refactor vector index plugin.(xicilion)
  • [d7dd7fb6c3] - db, refactor: use a single table to store indexed data in the vector search plugin.(xicilion)
  • [cd98bebb29] - db, refactor: change labeltype type to int32_t.(xicilion)
  • [0523387b79] - db, feat: support vector search.(xicilion)
  • [9fdc80f364] - crypto, feat: support loadPKey.(xicilion)
  • [90e1d9c8ff] - test, bugfix: test error in CI.(xicilion)
  • [8886e3e1f4] - zip, feat: support codec in ZipFile.(xicilion)
  • [ca16c7fb57] - xml, refactor: set ownerDocument tp child Nodes.(xicilion)
  • [34a30535ef] - xml, refactor: init m_document.(xicilion)
  • [585a80c1e5] - xml, refactor: move TextContext to XmlNode.(xicilion)
  • [5c9a01577a] - xml, bugfix: release children cause crash.(xicilion)
  • [cc3001684e] - http, bugfix: the abbreviation for file size has been displayed incorrectly. (#757)(PinelliaC)
  • [9ec2832c56] - xml, feat: support element methods.(xicilion)
  • [ade605171f] - xml, feat: support XmlNode.children.(xicilion)
  • [cd3e5917e5] - global, refactor: add URL to global.(xicilion)
  • [f730008a57] - Merge remote-tracking branch 'origin/dev' into dev(xicilion)
  • [194b585686] - docs, refactor: update ws docs.(xicilion)
  • [b3eebcdfef] - options, feat: support * in package.json.(xicilion)
  • [7a4cfbefa7] - sandbox, refactor: support relative path in internal script.(xicilion)
  • [971acea875] - core, refactor: PumpMessageLoop only when there are background tasks.(xicilion)
  • [3188324aba] - core, bugfix: deadlock on backgroud task in worker isolate.(xicilion)
  • [66b4d90af5] - isolate, refactor: refactor code of background task.(xicilion)
  • [1611981f72] - core, bugfix: deadlock in wasm async compile.(xicilion)
  • [2b426aef2f] - Merge remote-tracking branch 'origin/dev' into dev(xicilion)
  • [ef270ca10d] - core, feat: process background tasks.(xicilion)
  • [89349dcce9] - test, refactor: test of wasm load crash.(xicilion)
  • [2805641941] - http, refactor: missing files.(xicilion)
  • [ae8d599746] - http, refactor: support http_proxy and https_proxy in HttpClient.(xicilion)
  • [3a2976d7d1] - build, bugfix: missing files.(xicilion)
  • [ee4f6d5a3a] - url, refactor: keep other variables in sync when setting host, hostname and port.(xicilion)
  • [ea8e92c39c] - http, feat: support http.request(opts).(xicilion)
  • [ae15d579ef] - http, feat: support for ignoring method parameters in http.request.(xicilion)
  • [37d8d19c52] - core, refactor: use IsJust instead of Check to prevent MeyBe crash.(xicilion)
  • [e11a2d0ef8] - Merge remote-tracking branch 'origin/dev' into dev(xicilion)
  • [fe2e314e76] - docs, feat: update module documents.(xicilion)
  • [440c8fb67a] - core, refactor: use FromMaybe instead of ToChecked to prevent MeyBe crash.(xicilion)
  • [e0011153cc] - core, refactor: use FromMaybe instead of FromJust to prevent MeyBe crash.(xicilion)
  • [e23c0e12fb] - exlib, refactor: refactor context switch on posix.(xicilion)
  • [eced2f947c] - v8, refactor: revert to 10.9.194.9.(xicilion)
  • [f418e1b749] - v8, refactor: disable code gc in wasm.(xicilion)
  • [0a9ca0dc84] - build, refactor: patch powf.(xicilion)
  • [285d656db5] - build, bugfix: compile error in mips64 debug.(xicilion)
  • [9b675a1d92] - build, refactor: use userid in docker.(xicilion)
  • [9bcbbc03ee] - v8, bugfix: compile error in debug mode.(xicilion)
  • [3cedc77065] - v8, feat: update to v11.2.129.(xicilion)
  • [52888f3ab5] - v0.37.0-dev.(xicilion)
  • [f68b575150] - Release 0.36.0.(xicilion)
  • [1379403f96] - option, feat: to specify the path of package.json, use --target in --install (#756)(PinelliaC)
  • [4c3a5a6754] - gd, refactor: enable filter test on loongarch64.(xicilion)
  • [dd4686ab02] - build, refactor: not patch first version of glibc.(xicilion)
  • [013b88c9cb] - build, refactor: do not patch math function on loongarch64.(xicilion)
  • [40e07c6e6b] - build, refactor: change compiler to vec version on loongarch64.(xicilion)
  • [7fb3a848c4] - db, bugfix: fix Redis.incr/decr (#755)(lhkzh)
  • [13e94d63ec] - core, bugfix: create HttpClient when building Isolate to avoid memory access errors caused by dynamic creation.(xicilion)
  • [eb8c20c643] - docs, feat: update docs.(xicilion)
  • [04141000a1] - child_process, feat: set the error exit code when the child process is aborted.(xicilion)
  • [72d179e35f] - docs, bugfix: update websocket doc (#754)(PinelliaC)
  • [8d216fe155] - docs, refactor: update docs.(xicilion)
  • [630c47822b] - docs, refactor: add nl language.(xicilion)
  • [df892fec6b] - tools, refactor: format docs hash json file.(xicilion)
  • [6b53042314] - build, refactor: compress qemu binary file.(xicilion)
  • [5ed783e598] - build, refactor: refactor docker file for loong64.(xicilion)
  • [c5b12c534f] - build, refactor: file mode for qemu on mac.(xicilion)
  • [917a463827] - build, refactor: fix glibc_2.17 on arm.(xicilion)
  • [4b07e6e758] - build, refactor: update compiler to 8.3.novec for loongarch64.(xicilion)
  • [067183f043] - build, refactor: only patch memcpy&time on x86.(xicilion)
  • [542383d9a6] - build, refactor: refactor glibc detect function.(xicilion)
  • [a151ddd598] - build, refactor: fix expf argument type.(xicilion)
  • [6b5451036d] - option, refactor: save package.json when update module.(xicilion)
  • [894334f331] - build, refactor: build loong64 docker image for release.(xicilion)
  • [4bc90a40b6] - build, refactor: print shared libraries used.(xicilion)
  • [4456b3de6e] - tools, refactor: use devtools to translate docs.(xicilion)
  • [3fc3722255] - crypto, feat: update doc of crypto.(xicilion)
  • [bdd5f944af] - crypto, feat: update root ca.(xicilion)
  • [40f96eedac] - build, refactor: detect vc in vs.net.(xicilion)
  • [5ca9be48bb] - build, refactor: remove out/bin directly in build clean.(xicilion)
  • [25627df46d] - uuid, bugfix: compile error on Linux.(xicilion)
  • [bd04ddd34f] - build, feat: build for iPhone.(xicilion)
  • [88b7903933] - build, refactor: enable CXX compile options.(xicilion)
  • [09ec22794b] - os, feat: support os.platform on android.(xicilion)
  • [6c8c19e785] - BlsKey, refactor: assign first point.(xicilion)
  • [25104043b6] - crypto, feat: implement BlaKey.(xicilion)
  • [d6d49c10da] - ECCKey, refactor: refactor ECCKey.(xicilion)
  • [fde99ef6be] - docs, refactor: update collect.json.(xicilion)
  • [39f899ef5e] - PKey, refactor: refactor ECCKey, separate Ed25519Key.(xicilion)
  • [81a93fdff6] - process, refactor: use uv to set os env.(xicilion)
  • [cbef657464] - crypto, refactor: refactor PKey class.(xicilion)
  • [14228072ac] - core, refactor: use Global.Get to convert Value.(xicilion)
  • [393812a202] - SandBox, refactor: refactor repl.(xicilion)
  • [ca6e65a121] - core, bugfix: Object.prototype.toString.call(native object) return [object Object].(xicilion)
  • [4cffff9741] - test, refactor: use different name in selfzip test.(xicilion)
  • [19207ca7c1] - build, refactor: skip iPhone test on ci.(响马)
  • [95ed0141cb] - build, refactor: test ubuntu 10.04 only on amd64.(xicilion)
  • [34287e9c07] - test, refactor: os test fail on ubuntu 10.04.(xicilion)
  • [1852240a01] - build, refactor: add ubuntu 10.04 test in ci.(xicilion)
  • [b312b02245] - msgpack, feat: support Set and Map (#751)(lhkzh)
  • [e020ab3329] - build, refactor: remove arm alpine ci.(xicilion)
  • [34db5c9442] - build, refactor: enable PIC in posix.(xicilion)
  • [b90c114508] - uv, bugfix: link error in debug mode.(xicilion)
  • [69e166480c] - icu, feat: support change TZ/LANG env inside process.(xicilion)
  • [6e407d5cf8] - iconv, refactor: refactor code.(xicilion)
  • [105cf9558f] - iconv, refactor: refactor code.(xicilion)
  • [3b743854e7] - util, bugfix: compile error on Windows.(xicilion)
  • [31dff6d899] - uv, bugfix: fix uv issue.(xicilion)
  • [0fb9a61577] - vender, feat: update packages.(xicilion)
  • [09736b8ccd] - uv, feat: update to v1.44.2.(xicilion)
  • [c86a015eb4] - util, refactor: add icu version.(xicilion)
  • [1339429c07] - icu, refactor: support TZ and LANG env on Windows.(xicilion)
  • [58d9f585f1] - build, refator: fix GLIBC_2.27 issue.(xicilion)
  • [c1e8169bc4] - test, feat: add icu test.(xicilion)
  • [ebbbc90baa] - option, feat: support -e on command line.(xicilion)
  • [e9efa07259] - core, refactor: use dynamic_cast to check class type of object.(xicilion)
  • [a9384c8e25] - build, refactor: enable gc-sections link option.(xicilion)
  • [bd7ae9f15c] - v8, feat: support icu.(xicilion)
  • [1596f13298] - db, refactor: remove fulltext search in sqlite.(xicilion)
  • [cc15203d9c] - build, refactor: compile error on alpine for arm.(xicilion)
  • [1fc1008a5a] - gui, bugfix: webview missing in macos.(xicilion)
  • [738d954087] - test, refactor: remove console.keyDown case.(xicilion)
  • [c2e7f8ce13] - build, feat: compile for iPhone.(xicilion)
  • [a512d63b13] - gui, refactor: disable gui on ios.(xicilion)
  • [2c00b695aa] - build, refactor: add i385&arm docker.(xicilion)
  • [c6aaa7ee06] - console, refactor: deprecate key&mouse operation.(xicilion)
  • [a48f63b015] - process, refactor: reset thread signal mask.(xicilion)
  • [878aecd995] - core, refactor: init class before first create.(xicilion)
  • [a35bc2dafd] - build, bugfix: alpine test error in ci.(xicilion)
  • [f86260ec52] - Sandbox, bugfix: module initialization script timeout will cause fibjs crash.(xicilion)
  • [e36cc83abd] - build, refactor: remove SLOW_DCHECKS option.(xicilion)
  • [e7ef8fe2d5] - build, bugfix: test error in ci.(xicilion)
  • [f26e89f035] - build, refactor: detect musl compiler.(xicilion)
  • [d418ff8eb7] - encoding, refactor: deprecate custom encode in encoding.json.(xicilion)
  • [22056b69cd] - core, refactor: remove unused code.(xicilion)
  • [b7dc7eef04] - core, refactor: use default dcheck error handler.(xicilion)
  • [5e0b9f1306] - build, bigfix: compile warning and runtime error in debug mode.(xicilion)
  • [e5e44cd803] - hash, bugfix: keccak384 hash error.(xicilion)
  • [c2220e6549] - build, refactor: update loong64 dockerfile.(xicilion)
  • [e887fbd536] - Buffer, refactor: do not assert isolate locker status in Buffer::is_safe_codec.(xicilion)
  • [e9d6410160] - build, refactor: revert some comments.(xicilion)
  • [4afa4ac790] - build, feat: add apline ppc64 dockerfile.(xicilion)
  • [438dc1ab6c] - build, refactor: set CI env in test.sh.(xicilion)
  • [4395fc6c38] - build, feat: support loong64.(xicilion)
  • [e42df18f94] - build, bugfix: test docker name error on linux.(响马)
  • [b71f7d8a1c] - build, refactor: change ci to docker.(xicilion)
  • [c077329dba] - build, refactor: refactor dockerfiles, support loong64.(xicilion)
  • [0a392fe8d1] - process, feat: support uid/gui in process.(xicilion)
  • [92d5d8c2bb] - build, feat: update dockerfiles.(xicilion)
  • [0f8b328a73] - test, refactor: skip unsupported tests.(xicilion)
  • [75727a8792] - test, bugfix: util test error.(xicilion)
  • [853f972079] - test, bugfix: util test error when compile with gcc.(xicilion)
  • [2f2ef490ee] - test, refactor: change gb2312 to EUC-JP in test.(xicilion)
  • [59642cc40c] - build, refactor: skip some test in CI.(xicilion)
  • [aa9ba9366c] - child_process, bugfix: do not pass environment variables when the variable is undefined.(xicilion)
  • [a50a6858bd] - test, bugfix: child_process test error in CI.(xicilion)
  • [9168703da3] - test, bugfix: iconv test error in CI.(xicilion)
  • [66ca55d383] - encoding, feat: set binary/latin1 to native codec.(xicilion)
  • [0dbce21d05] - test, bugfix: test error in CI.(xicilion)
  • [c875c6428e] - test, bugfix: test error in CI.(xicilion)
  • [1fd2e3b94a] - test, bugfix: some test error.(xicilion)
  • [3a9fb60928] - test, bugfix: some test error.(xicilion)
  • [d79e46bd9d] - exlib, feat: support Apple M1.(xicilion)
  • [17a2c7251b] - os, feat: support ppc64.(xicilion)
  • [c8cb277111] - core, bugfix: refactor fcntl64.(xicilion)
  • [c3dfa7110e] - core, feat: support ppc64.(xicilion)
  • [987aa5b100] - v8, feat: update to v10.9.194.4.(xicilion)
  • [b5416dd152] - crypto, refactor: compile warning.(xicilion)
  • [7480ba5486] - ssl, bugfix: default client crt and key not work.(xicilion)
  • [7c5f4bb35d] - http, bugfix: query.all causes wrong memoryUsage count.(xicilion)
  • [06869e1ef3] - test, refactor: hide ignored items in normal mode.(xicilion)
  • [1d1a4fd9be] - build, refactor: change docker os to ubuntu 18.04.(xicilion)
  • [f337abcd2b] - build, refactor: refactor build script.(xicilion)
  • [3bdac1fb3f] - test, refactor: stable os.cpus tests.(xicilion)
  • [bfeccc6879] - SandBox, refactor: deprecate SandBox.refresh.(xicilion)
  • [8b54b5b8d0] - Merge remote-tracking branch 'origin/dev' into dev(xicilion)
  • [4657268096] - os, bugfix: result of os.cpus() does not change.(xicilion)
  • [58b681ebfc] - ssl, feat: automatically load the root certificate at startup.(xicilion)
  • [61d60a1347] - Sandbox, feat: support builtin module's alias with prefix fibjs:.(richardo2016)
  • [f0232f1175] - vm, feat: rename Sandbox::addNativeModule to Sandbox::addBuiltinModules.(richardo2016)
  • [37eb225ebd] - blst, feat: update to v0.3.10.(xicilion)
  • [13eaa0bdfc] - build, refactor: not build gui module when using llvm on mac.(xicilion)
  • [4a756c2f97] - build, bugfix: fix build error on win32 clang.(richardo2016)
  • [921877a3a6] - Merge branch 'dev' of github.com: fibjs/fibjs into dev(xicilion)
  • [6e6ddedc10] - build, refactor: map work folder to same path in docker.(xicilion)
  • [1de4558f16] - http, bugfix: HttpClient.sslVerification does not working.(xicilion)
  • [102655ed41] - build, bugfix: build option error in docker on mac.(xicilion)
  • [efd870340e] - build, feat: enable ctrl-c to break build in docker.(xicilion)
  • [7808079934] - build, feat: use current user name in docker.(xicilion)
  • [f91648f013] - build, feat: support android in ci.(xicilion)
  • [4fae38cc45] - build, bugfix: build error in ci.(xicilion)
  • [d6b61213af] - build, bugfix: compile error on android.(xicilion)
  • [fa89e88dc8] - build, feat: support cross build for android/linux.(xicilion)
  • [a2f9ec48f8] - crypto, bugfix: crash when dumping uninitialized X509Cert object.(xicilion)
  • [0ec547494b] - options, refactor: use JSON.stringify to generate package.json.(xicilion)
  • [a4ead285c3] - console, bugfix: unicode characters not supported by the codepage return wrong characters in readline on Windows. #741(xicilion)
  • [787640adc3] - http, bugfix: encoding error when Cookie value in HttpResponse is empty. #743(xicilion)
  • [7f356bd7a8] - build, feat: build alpine in ci.(xicilion)
  • [9165978e41] - build, feat: support alipine build.(xicilion)
  • [4b161a30d2] - build, refactor: use ansi code in build script.(xicilion)
  • [4fb16938b8] - repl, bugfix: The wrong repl path causes require to not reach the modules in the current directory. #735(xicilion)
  • [ad9185f1bd] - Buffer, refactor: Fix some functions of Buffer for compatibility with node.js. #696(xicilion)
  • [7647e4c9fe] - repl, feat: support javascript statements beginning with .. in the repl. #738(xicilion)
  • [84b4661ded] - child_process, feat: return process exit code in join. #736(xicilion)
  • [4f9780b80d] - fs, feat: support fs.write.(xicilion)
  • [99d7d87bfb] - db, bugfix: use utf8 codec on windows.(xicilion)
  • [3900017ecc] - db, refactor: use PostgreSQL unicode driver.(xicilion)
  • [ff22c7d504] - option, feat: Use http_proxy to proxy https requests when https_proxy is not set.(xicilion)
  • [8fe5b8ec2f] - option, feat: --install script support uppercase HTTP_PROXY environment variable.(xicilion)
  • [40fbb3af6e] - build, bugfix: compile warning on Windows.(xicilion)
  • [312fe66247] - core, feat: type error in WebAssembly.(xicilion)
  • [e8763e431b] - docs, refactor: use viz.js to render graph.(xicilion)
  • [e72404c1ba] - test, feat: return test result in test.run.(xicilion)
  • [53fcd5fd77] - vm, bugfix: missing idl file.(xicilion)
  • [6d0cef0288] - SandBox, feat: support addNativeModule.(xicilion)
  • [6fa02d7776] - test, refactor: deprecated setting loglevel in test.(xicilion)
  • [e9cbbb515b] - global, feat: add performance module.(xicilion)
  • [93b51260c2] - test, feat: support todo item.(xicilion)
  • [711a915879] - db, feat: use system codec in odbc.(xicilion)
  • [4bb099fb0e] - coroutine, refactor: resume task outside of lock.(xicilion)
  • [d3159aa455] - test, refactor: change http test url.(xicilion)
  • [5f02bda0e6] - coroutine, refactor: revert Sleep.cancel.(xicilion)
  • [0f71967d5f] - build, refactor: auto detect brew folder.(xicilion)
  • [7dccc5db73] - core, bugfix: missing include file.(xicilion)
  • [9d65205a9e] - core, refactor: refactor native module list.(xicilion)
  • [56ff7ddbc9] - core, refactor: refactor platform creator.(xicilion)
  • [535317cfba] - exlib, refactor: refactor sleep.cancel.(xicilion)
  • [864e77c6db] - test, bugfix: getter test error.(xicilion)
  • [f644aea660] - exlib, bugfix: ConditionVariable deadlock.(xicilion)
  • [db417069f3] - coroutine, feat: support timeout.(xicilion)
  • [7e07a5e284] - build, feat: automatically create /usr/local/bin folder during installation.(xicilion)
  • [656cbeb425] - process, bugfix: wasm compiler worker holds fibjs process.(xicilion)
  • [739ba59c71] - crypto, feat: support aggregate on BLS12381_G1/BLS12381_G2.(xicilion)
  • [fe8fe2c8ec] - core, refactor: set native async function name.(xicilion)
  • [427a346bf2] - core, refactor: Simplify the delivery of events in callbacks and promises.(xicilion)
  • [26ae1a8d29] - crypto, refactor: rename more secp256k1 api name.(xicilion)
  • [e64202c225] - docs, feat: update docs.(xicilion)

Archives

  1. fibjs-v0.36.0-alpine-arm64
  2. fibjs-v0.36.0-alpine-arm64.tar.gz
  3. fibjs-v0.36.0-alpine-x64
  4. fibjs-v0.36.0-alpine-x64.tar.gz
  5. fibjs-v0.36.0-alpine-x86
  6. fibjs-v0.36.0-alpine-x86.tar.gz
  7. fibjs-v0.36.0-android-arm64
  8. fibjs-v0.36.0-android-arm64.tar.gz
  9. fibjs-v0.36.0-android-x64
  10. fibjs-v0.36.0-android-x64.tar.gz
  11. fibjs-v0.36.0-darwin-arm64
  12. fibjs-v0.36.0-darwin-arm64.tar.gz
  13. fibjs-v0.36.0-darwin-x64
  14. fibjs-v0.36.0-darwin-x64.tar.gz
  15. fibjs-v0.36.0-iphone-arm64
  16. fibjs-v0.36.0-iphone-arm64.tar.gz
  17. fibjs-v0.36.0-linux-arm
  18. fibjs-v0.36.0-linux-arm.tar.gz
  19. fibjs-v0.36.0-linux-arm64
  20. fibjs-v0.36.0-linux-arm64.tar.gz
  21. fibjs-v0.36.0-linux-loong64
  22. fibjs-v0.36.0-linux-loong64.tar.gz
  23. fibjs-v0.36.0-linux-mips64
  24. fibjs-v0.36.0-linux-mips64.tar.gz
  25. fibjs-v0.36.0-linux-ppc64
  26. fibjs-v0.36.0-linux-ppc64.tar.gz
  27. fibjs-v0.36.0-linux-riscv64
  28. fibjs-v0.36.0-linux-riscv64.tar.gz
  29. fibjs-v0.36.0-linux-x64
  30. fibjs-v0.36.0-linux-x64.tar.gz
  31. fibjs-v0.36.0-linux-x86
  32. fibjs-v0.36.0-linux-x86.tar.gz
  33. fibjs-v0.36.0-windows-arm64.exe
  34. fibjs-v0.36.0-windows-gui-arm64.exe
  35. fibjs-v0.36.0-windows-gui-x64.exe
  36. fibjs-v0.36.0-windows-gui-x86.exe
  37. fibjs-v0.36.0-windows-x64.exe
  38. fibjs-v0.36.0-windows-x86.exe
  39. fullsrc.zip
  40. installer-v0.36.0-alpine-arm64.sh
  41. installer-v0.36.0-alpine-x64.sh
  42. installer-v0.36.0-alpine-x86.sh
  43. installer-v0.36.0-android-arm64.sh
  44. installer-v0.36.0-android-x64.sh
  45. installer-v0.36.0-darwin-arm64.sh
  46. installer-v0.36.0-darwin-x64.sh
  47. installer-v0.36.0-iphone-arm64.sh
  48. installer-v0.36.0-linux-arm.sh
  49. installer-v0.36.0-linux-arm64.sh
  50. installer-v0.36.0-linux-loong64.sh
  51. installer-v0.36.0-linux-mips64.sh
  52. installer-v0.36.0-linux-ppc64.sh
  53. installer-v0.36.0-linux-riscv64.sh
  54. installer-v0.36.0-linux-x64.sh
  55. installer-v0.36.0-linux-x86.sh
  56. installer-v0.36.0-windows-arm64.exe
  57. installer-v0.36.0-windows-x64.exe
  58. installer-v0.36.0-windows-x86.exe
  59. Source code (tar.gz)
  60. Source code (zip)
  61. All download options

2022-08-31, Version v0.35.0

2021-09-03, Version v0.34.0

2021-05-30, Version v0.33.0

2021-03-29, Version v0.32.1

2021-03-20, Version v0.32.0

2021-03-20, Version v0.31.0

2021-03-20, Version v0.30.0

2019-11-06, Version v0.29.0

2019-09-02, Version v0.28.0

2019-05-01, Version v0.27.0

2018-08-18, Version v0.26.1

2018-08-17, Version v0.26.0

2018-06-11, Version v0.25.0

2018-05-26, Version v0.24.0

2018-04-11, Version v0.23.0

2018-02-06, Version v0.22.0

2017-12-28, Version v0.21.0

2017-12-03, Version v0.20.0

2017-11-15, Version v0.19.0

2017-11-03, Version v0.18.0

2017-10-27, Version v0.17.0

2017-10-14, Version v0.16.0

2017-09-30, Version v0.15.0

2017-09-21, Version v0.14.0

2017-09-12, Version v0.13.0

2017-08-27, Version v0.12.0

2017-08-19, Version v0.11.0

2017-07-31, Version v0.10.0