mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
2022.03.07, Version 1.44.0 (Stable)
Changes since version 1.43.0: * darwin: remove EPROTOTYPE error workaround (Ben Noordhuis) * doc: fix v1.43.0 changelog entries (cjihrig) * win: replace CRITICAL_SECTION+Semaphore with SRWLock (David Machaj) * darwin: translate EPROTOTYPE to ECONNRESET (Ben Noordhuis) * android: use libc getifaddrs() (Ben Noordhuis) * unix: fix STATIC_ASSERT to check what it means to check (Jessica Clarke) * unix: ensure struct msghdr is zeroed in recvmmsg (Ondřej Surý) * test: test with maximum recvmmsg buffer (Ondřej Surý) * unix: don't allow too small thread stack size (Ben Noordhuis) * bsd: ensure mutex is initialized (Ben Noordhuis) * doc: add gengjiawen as maintainer (gengjiawen) * process: monitor for exit with kqueue on BSDs (Jeremy Rose) * test: fix flaky uv_fs_lutime test (Momtchil Momtchev) * build: fix cmake install locations (Jameson Nash) * thread,win: fix C90 style nit (ssrlive) * build: rename CFLAGS to AM_CFLAGS (Jameson Nash) * doc/guide: update content and sample code (woclass) * process,bsd: handle kevent NOTE_EXIT failure (Jameson Nash) * test: remove flaky test ipc_closed_handle (Ben Noordhuis) * darwin: bump minimum supported version to 10.15 (Ben Noordhuis) * win: return fractional seconds in uv_uptime() (Luca Adrian L) * build: export uv_a for cmake (WenTao Ou) * loop: add pending work to loop-alive check (Jameson Nash) * win: use GetTickCount64 for uptime again (Jameson Nash) * win: restrict system DLL load paths (jonilaitinen) * win,errors: remap ERROR_ACCESS_DENIED to UV_EACCES (Darshan Sen) * bench: add `uv_queue_work` ping-pong measurement (Momtchil Momtchev) * build: fix error C4146 on MSVC (UMU) * test: fix benchmark-ping-udp (Ryan Liptak) * win,fs: consider broken pipe error a normal EOF (Momtchil Momtchev) * document the values of enum uv_stdio_flags (Paul Evans) * win,loop: add missing uv_update_time (twosee) * win,fs: avoid closing an invalid handle (Jameson Nash) * fix oopsie from * doc: clarify android api level (Ben Noordhuis) * win: fix style nits [NFC] (Jameson Nash) * test: fix flaky udp_mmsg test (Santiago Gimeno) * test: fix ipc_send_recv_pipe flakiness (Ben Noordhuis) * doc: checkout -> check out (wyckster) * core: change uv_get_password uid/gid to unsigned (Jameson Nash) * hurd: unbreak build on GNU/Hurd (Vittore F. Scolari) * freebsd: use copy_file_range() in uv_fs_sendfile() (David Carlier) * test: use closefd in runner-unix.c (Guilherme Íscaro) * Reland "macos: use posix_spawn instead of fork" (Jameson Nash) * android: fix build error when no ifaddrs.h (ssrlive) * unix,win: add uv_available_parallelism() (Ben Noordhuis) * process: remove OpenBSD from kevent list (Jameson Nash) * zos: fix build breakage (Ben Noordhuis) * process: only use F_DUPFD_CLOEXEC if it is defined (Jameson Nash) * win,poll: add the MSAFD GUID for AF_UNIX (roflcopter4) * unix: simplify uv__cloexec_fcntl() (Ben Noordhuis) * doc: add secondary GPG ID for vtjnash (Jameson Nash) * unix: remove uv__cloexec_ioctl() (Jameson Nash)
This commit is contained in:
parent
20a2b1c341
commit
d2bff50845
12
AUTHORS
12
AUTHORS
@ -496,3 +496,15 @@ Jesper Storm Bache <jsbache@users.noreply.github.com>
|
||||
Campbell He <duskmoon314@users.noreply.github.com>
|
||||
Andrey Hohutkin <andrey.hohutkin@gmail.com>
|
||||
deal <halx99@live.com>
|
||||
David Machaj <46852402+dmachaj@users.noreply.github.com>
|
||||
Jessica Clarke <jrtc27@jrtc27.com>
|
||||
Jeremy Rose <nornagon@nornagon.net>
|
||||
woclass <git@wo-class.cn>
|
||||
Luca Adrian L <info@lucalindhorst.de>
|
||||
WenTao Ou <owt5008137@live.com>
|
||||
jonilaitinen <joni.laitinen@iki.fi>
|
||||
UMU <UMU618@users.noreply.github.com>
|
||||
Paul Evans <leonerd@leonerd.org.uk>
|
||||
wyckster <wyckster@hotmail.com>
|
||||
Vittore F. Scolari <vittore.scolari@gmail.com>
|
||||
roflcopter4 <15476346+roflcopter4@users.noreply.github.com>
|
||||
|
111
ChangeLog
111
ChangeLog
@ -1,3 +1,114 @@
|
||||
2022.03.07, Version 1.44.0 (Stable)
|
||||
|
||||
Changes since version 1.43.0:
|
||||
|
||||
* darwin: remove EPROTOTYPE error workaround (Ben Noordhuis)
|
||||
|
||||
* doc: fix v1.43.0 changelog entries (cjihrig)
|
||||
|
||||
* win: replace CRITICAL_SECTION+Semaphore with SRWLock (David Machaj)
|
||||
|
||||
* darwin: translate EPROTOTYPE to ECONNRESET (Ben Noordhuis)
|
||||
|
||||
* android: use libc getifaddrs() (Ben Noordhuis)
|
||||
|
||||
* unix: fix STATIC_ASSERT to check what it means to check (Jessica Clarke)
|
||||
|
||||
* unix: ensure struct msghdr is zeroed in recvmmsg (Ondřej Surý)
|
||||
|
||||
* test: test with maximum recvmmsg buffer (Ondřej Surý)
|
||||
|
||||
* unix: don't allow too small thread stack size (Ben Noordhuis)
|
||||
|
||||
* bsd: ensure mutex is initialized (Ben Noordhuis)
|
||||
|
||||
* doc: add gengjiawen as maintainer (gengjiawen)
|
||||
|
||||
* process: monitor for exit with kqueue on BSDs (Jeremy Rose)
|
||||
|
||||
* test: fix flaky uv_fs_lutime test (Momtchil Momtchev)
|
||||
|
||||
* build: fix cmake install locations (Jameson Nash)
|
||||
|
||||
* thread,win: fix C90 style nit (ssrlive)
|
||||
|
||||
* build: rename CFLAGS to AM_CFLAGS (Jameson Nash)
|
||||
|
||||
* doc/guide: update content and sample code (woclass)
|
||||
|
||||
* process,bsd: handle kevent NOTE_EXIT failure (Jameson Nash)
|
||||
|
||||
* test: remove flaky test ipc_closed_handle (Ben Noordhuis)
|
||||
|
||||
* darwin: bump minimum supported version to 10.15 (Ben Noordhuis)
|
||||
|
||||
* win: return fractional seconds in uv_uptime() (Luca Adrian L)
|
||||
|
||||
* build: export uv_a for cmake (WenTao Ou)
|
||||
|
||||
* loop: add pending work to loop-alive check (Jameson Nash)
|
||||
|
||||
* win: use GetTickCount64 for uptime again (Jameson Nash)
|
||||
|
||||
* win: restrict system DLL load paths (jonilaitinen)
|
||||
|
||||
* win,errors: remap ERROR_ACCESS_DENIED to UV_EACCES (Darshan Sen)
|
||||
|
||||
* bench: add `uv_queue_work` ping-pong measurement (Momtchil Momtchev)
|
||||
|
||||
* build: fix error C4146 on MSVC (UMU)
|
||||
|
||||
* test: fix benchmark-ping-udp (Ryan Liptak)
|
||||
|
||||
* win,fs: consider broken pipe error a normal EOF (Momtchil Momtchev)
|
||||
|
||||
* document the values of enum uv_stdio_flags (Paul Evans)
|
||||
|
||||
* win,loop: add missing uv_update_time (twosee)
|
||||
|
||||
* win,fs: avoid closing an invalid handle (Jameson Nash)
|
||||
|
||||
* fix oopsie from
|
||||
|
||||
* doc: clarify android api level (Ben Noordhuis)
|
||||
|
||||
* win: fix style nits [NFC] (Jameson Nash)
|
||||
|
||||
* test: fix flaky udp_mmsg test (Santiago Gimeno)
|
||||
|
||||
* test: fix ipc_send_recv_pipe flakiness (Ben Noordhuis)
|
||||
|
||||
* doc: checkout -> check out (wyckster)
|
||||
|
||||
* core: change uv_get_password uid/gid to unsigned (Jameson Nash)
|
||||
|
||||
* hurd: unbreak build on GNU/Hurd (Vittore F. Scolari)
|
||||
|
||||
* freebsd: use copy_file_range() in uv_fs_sendfile() (David Carlier)
|
||||
|
||||
* test: use closefd in runner-unix.c (Guilherme Íscaro)
|
||||
|
||||
* Reland "macos: use posix_spawn instead of fork" (Jameson Nash)
|
||||
|
||||
* android: fix build error when no ifaddrs.h (ssrlive)
|
||||
|
||||
* unix,win: add uv_available_parallelism() (Ben Noordhuis)
|
||||
|
||||
* process: remove OpenBSD from kevent list (Jameson Nash)
|
||||
|
||||
* zos: fix build breakage (Ben Noordhuis)
|
||||
|
||||
* process: only use F_DUPFD_CLOEXEC if it is defined (Jameson Nash)
|
||||
|
||||
* win,poll: add the MSAFD GUID for AF_UNIX (roflcopter4)
|
||||
|
||||
* unix: simplify uv__cloexec_fcntl() (Ben Noordhuis)
|
||||
|
||||
* doc: add secondary GPG ID for vtjnash (Jameson Nash)
|
||||
|
||||
* unix: remove uv__cloexec_ioctl() (Jameson Nash)
|
||||
|
||||
|
||||
2022.01.05, Version 1.43.0 (Stable), 988f2bfc4defb9a85a536a3e645834c161143ee0
|
||||
|
||||
Changes since version 1.42.0:
|
||||
|
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.43.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.44.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
m4_include([m4/libuv-extra-automake-flags.m4])
|
||||
m4_include([m4/as_case.m4])
|
||||
|
@ -31,10 +31,10 @@
|
||||
*/
|
||||
|
||||
#define UV_VERSION_MAJOR 1
|
||||
#define UV_VERSION_MINOR 43
|
||||
#define UV_VERSION_PATCH 1
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_SUFFIX "dev"
|
||||
#define UV_VERSION_MINOR 44
|
||||
#define UV_VERSION_PATCH 0
|
||||
#define UV_VERSION_IS_RELEASE 1
|
||||
#define UV_VERSION_SUFFIX ""
|
||||
|
||||
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
|
||||
(UV_VERSION_MINOR << 8) | \
|
||||
|
Loading…
x
Reference in New Issue
Block a user