Releases: luvit/luv
Releases · luvit/luv
1.42.0-1
1.42.0-0
- Update to Libuv 1.42.0 (#559)
- New function:
uv.try_write2
- New function:
- Fix uninitialized memory reads when
work_fn
inuv.new_work
returns no values (#562) - Luv C API: Add function to run thread in protected mode (#563)
- Change luv_work_cb() to run in protected mode and throw an error in luv_thread_arg_set() if an argument of an impermissible type is passed (#566)
1.41.1-0
- Update Libuv to 1.41.1 (#558)
- Libuv 1.41.1 is a security release fixing a buffer overrun in uv__idna_toascii, see libuv/libuv@86dbeb4
- Fix protocol being treated as family in getaddrinfo inputs/outputs (#538)
- Fix udp multicast test when testing with no internet access and/or restrictive firewall settings (#540, #541, #543)
- rockspec: Use library file given by LuaRocks instead of trying to find it ourselves (#545)
- Fix thread dumping in Lua 5.4.3+ (#554)
1.41.0-0
1.40.0-0
- Updated Libuv to 1.40.0 (#486, #509, #518)
- Fix/add support for Lua 5.4 (#504, #515, #521)
- CMake: Only require finding Lua libs via find_package on Windows (#489)
fs_{read,write}
: make offset argument optional and default it to -1 (#490)- Add udp_set_source_membership binding + improve udp_set_membership (#491)
- Add
pipe_chmod
binding (#492) - Add
process_get_pid
binding (#493) - Add
handle_get_type
andreq_get_type
(#494) - Add method form of
uv.cancel
:req:cancel()
(#494) - Add
loop_configure
binding (#496) - Fix garbage collection-related memory bug with threads (#508)
- fix install path for
make install
with Luajit 2.1 (#502) - Fix args potentially being garbage collected before use in luv_spawn (#511)
- fix bug in luv_check_fs (#516)
- Add
uv.loop_mode
function (#517) - Add BUILD_STATIC_LIBS to Makefile (#520)
- fix a memry bug in thread pool work callback (#524)
- Fix possible memory leak in lhandle.c (#525)
- fix memleaks in luv_cpu_info (#526)
- fs: Print destination paths in error messages for the relevant functions (#528)
- Make symlink/copyfile bindings more user-friendly (#532)
- Fix shared library build failure on macOS (#533)
1.36.0-0
1.34.2-2
1.34.2-1
- CMake: Add BUILD_STATIC_LIBS option (#461)
- This adds on to the changes in #459 to make it possible to build module, static, and shared libraries all at the same time if requested
- To build the module,
-DBUILD_MODULE=On
; the target name for the module isluv
- To build a static library,
-DBUILD_STATIC_LIBS=On
; the target name for the static lib islibluv_a
- To build a shared library,
-DBUILD_SHARED_LIBS=On
; the target name for the shared lib islibluv
- To build the module,
- This is a breaking change (as was #459) for users of CMake (e.g. luvi) who will now need to specify linking against
libluv
/libluv_a
and turn onBUILD_SHARED_LIBS
/BUILD_STATIC_LIBS
before callingadd_subdirectory
- See luvit/luvi#228 for the changes needed for Luvi's
CMakeLists.txt
- See luvit/luvi#228 for the changes needed for Luvi's
- This adds on to the changes in #459 to make it possible to build module, static, and shared libraries all at the same time if requested
1.34.2-0
- CMake: Make BUILD_MODULE and BUILD_SHARED_LIBS able to be built at the same time (#459)
- Note: The BUILD_SHARED_LIBS target name has changed from
luv
tolibluv
- Note: The BUILD_SHARED_LIBS target name has changed from
- Bump libuv to 1.34.2 (#460)
- Optimize data exchange between threads (#455)
- src/lreq.c: fix build with gcc 4.8 (#456)
- LuaJIT: Fix WITH_AMALG option failing during parallel builds (#454)