Skip to content

Releases: luvit/luv

1.42.0-1

21 Oct 03:18
Compare
Choose a tag to compare
  • Use uv_handle_size/uv_req_size instead of sizeof (#569)
  • LuaJIT: add missing LJ_ENDIAN and LJ_NO_UNWIND checks for DASM (#570) [this fixes building on aarch64]

1.42.0-0

19 Sep 09:33
Compare
Choose a tag to compare
  • Update to Libuv 1.42.0 (#559)
  • Fix uninitialized memory reads when work_fn in uv.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

19 Jul 06:24
1637516
Compare
Choose a tag to compare
  • 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

18 Apr 05:09
af61b05
Compare
Choose a tag to compare
  • Update to Libuv 1.41.0 (#534)
    • note: as of Libuv 1.41.0, the minimum supported Windows version was bumped to Windows 8

1.40.0-0

14 Apr 01:15
b3a7e09
Compare
Choose a tag to compare
  • 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 and req_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

19 Apr 08:32
8ceda52
Compare
Choose a tag to compare
  • Bump libuv to 1.36.0 (#471, #479)
  • Some async cleanup / fixes (#468)
  • Refactored luv.h (#470)
  • Made luv backwards compatible with libuv versions going back to 1.0.0 (#476)

1.34.2-2

15 Mar 04:12
f1c64ed
Compare
Choose a tag to compare
  • CMake: Fix header install paths for shared/static builds when using LuaRocks (#464)
  • Add extra_gc to luv_handle_t to allow control over how luv_handle_t.extra is freed via the C API (#465)

1.34.2-1

29 Feb 06:34
02237cd
Compare
Choose a tag to compare
  • 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 is luv
      • To build a static library, -DBUILD_STATIC_LIBS=On; the target name for the static lib is libluv_a
      • To build a shared library, -DBUILD_SHARED_LIBS=On; the target name for the shared lib is libluv
    • 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 on BUILD_SHARED_LIBS/BUILD_STATIC_LIBS before calling add_subdirectory

1.34.2-0

27 Feb 03:05
0938751
Compare
Choose a tag to compare
  • 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 to libluv
  • 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)

1.34.1-1

18 Jan 04:52
40b5fa7
Compare
Choose a tag to compare
Merge pull request #453 from squeek502/deploy-fix

travis: Fix deploy step