aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Gimeno <santiago.gimeno@gmail.com>2025-04-25 11:50:27 +0200
committerSantiago Gimeno <santiago.gimeno@gmail.com>2025-04-25 11:50:27 +0200
commit5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b (patch)
tree048a967ccac12c3d6b7f7fa07d8a747f9832e4a0
parenteacd6e3c450eec9747432c3024d2d43c027cfb11 (diff)
downloadlibuv-5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b.tar.gz
libuv-5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b.zip
2025.04.25, Version 1.51.0 (Stable)
Changes since version 1.50.0: * win: fix leak in uv_os_tmpdir (Saúl Ibarra Corretgé) * docs: fix RTD build (Saúl Ibarra Corretgé) * win: lazy-load [GS]etThreadDescription symbols (Ben Noordhuis) * linux: try preadv64/pwritev64 before preadv/pwritev (Ben Noordhuis) * win: check cwd length before spawning a child process (Morten Engelhardt Olsen) * macos,bsd: handle missing /dev/null in chroot env (Andrey) * doc: fix README link text (Julio Jordán) * win: fix order of FILE_STAT_BASIC_INFORMATION struct fields (Hüseyin Açacak) * macos: increase child process stdio buffer size (Jinho Jang) * doc: add C3 bindings to LINKS.md (Velikiy Kirill) * unix: remove unnecessary errno.h include in poll.c (Juan José Arboleda) * win: fix the inconsistency in volume serial number (Hüseyin Açacak) * unix: add thread affinity support on openharmony (rainlow) * unix: enable getrusage for SunOS (Paolo Insogna) * unix,win: accept NAN/INFINITY as file timestamps (Ben Noordhuis) * win: add ENABLE_VIRTUAL_TERMINAL_INPUT raw tty mode (Anna Henningsen) * test: handle UV_ENOTSUP in platform_output (cjihrig) * doc: fix rendering of threading.html (Tobias Nießen) * unix,sunos: enable use of sendmmsg on Solaris and Illumos (Stacey Marshall) * unix: handle out of memory in iface name copy (Ben Noordhuis) * openbsd: do not error out if cpuspeed is not available (Robert Nagy) * test: skip thread_name_threadpool on AIX/IBMi (Abdirahim Musse) * aix,ibmi: fix undeclared identifiers (Richard Lau) * unix,sunos: prefer SO_REUSEPORT for load balancing (Stacey Marshall) * doc: free lib pointer before function return (mugitya03) * test: link with libm (Juan José Arboleda) * style: rename parameter to match definition (Mohammed Keyvanzadeh) * test: support partial output lines in test runner (cjihrig) * build: switch from c90 to c11 (Ben Noordhuis) * linux: allow nul bytes in abstract socket address (Itay Bookstein) * sunos: use pipe2 on solaris and illumos (Andy Pan) * unix: remove TOCTOU issues from uv_pipe_chmod (Ben Noordhuis) * unix: use pipe_fname if getsockname returns nothing (crupest) * haiku: use uint32 instead of uint32_t (AE1020) * doc: update thread pool stack size comment (Ben Noordhuis) * unix: improve uv_loop_init OOM handling (Ben Noordhuis) * test: merge uv_tcp_connect callbacks (Juan José Arboleda) * test: skip multievent tests on macOS with TSAN enabled (Juan José Arboleda) * linux: align CPU quota calculation with Rust (Juan José Arboleda) * kqueue: improve fs event watcher OOM handling (Juan José Arboleda) * sunos: improve fs event watcher OOM handling (Juan José Arboleda) * build: shorten instructions for cmake build (Juan José Arboleda)
-rw-r--r--AUTHORS12
-rw-r--r--ChangeLog90
-rw-r--r--configure.ac2
-rw-r--r--include/uv/version.h8
4 files changed, 107 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 39550bbc..89a3d9db 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -592,3 +592,15 @@ Thad House <ThadHouse@users.noreply.github.com>
Julian A Avar C <28635807+julian-a-avar-c@users.noreply.github.com>
amcgoogan <105525867+amcgoogan@users.noreply.github.com>
Rafael Gonzaga <rafael.nunu@hotmail.com>
+Morten Engelhardt Olsen <moro.engelhardt@gmail.com>
+Andrey <bag@zurbagan.org>
+Julio Jordán <juliojjordanp@outlook.com>
+Jinho Jang <verycosy@kakao.com>
+Velikiy Kirill <kuklix@ya.ru>
+rainlow <37818892+rainlow@users.noreply.github.com>
+Paolo Insogna <paolo@cowtech.it>
+Robert Nagy <robert@openbsd.org>
+mugitya03 <mugitya233@outlook.com>
+Itay Bookstein <ibookstein@gmail.com>
+crupest <crupest@outlook.com>
+AE1020 <68134252+AE1020@users.noreply.github.com>
diff --git a/ChangeLog b/ChangeLog
index b2770e60..78796371 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,93 @@
+2025.04.25, Version 1.51.0 (Stable)
+
+Changes since version 1.50.0:
+
+* win: fix leak in uv_os_tmpdir (Saúl Ibarra Corretgé)
+
+* docs: fix RTD build (Saúl Ibarra Corretgé)
+
+* win: lazy-load [GS]etThreadDescription symbols (Ben Noordhuis)
+
+* linux: try preadv64/pwritev64 before preadv/pwritev (Ben Noordhuis)
+
+* win: check cwd length before spawning a child process (Morten Engelhardt
+ Olsen)
+
+* macos,bsd: handle missing /dev/null in chroot env (Andrey)
+
+* doc: fix README link text (Julio Jordán)
+
+* win: fix order of FILE_STAT_BASIC_INFORMATION struct fields (Hüseyin Açacak)
+
+* macos: increase child process stdio buffer size (Jinho Jang)
+
+* doc: add C3 bindings to LINKS.md (Velikiy Kirill)
+
+* unix: remove unnecessary errno.h include in poll.c (Juan José Arboleda)
+
+* win: fix the inconsistency in volume serial number (Hüseyin Açacak)
+
+* unix: add thread affinity support on openharmony (rainlow)
+
+* unix: enable getrusage for SunOS (Paolo Insogna)
+
+* unix,win: accept NAN/INFINITY as file timestamps (Ben Noordhuis)
+
+* win: add ENABLE_VIRTUAL_TERMINAL_INPUT raw tty mode (Anna Henningsen)
+
+* test: handle UV_ENOTSUP in platform_output (cjihrig)
+
+* doc: fix rendering of threading.html (Tobias Nießen)
+
+* unix,sunos: enable use of sendmmsg on Solaris and Illumos (Stacey Marshall)
+
+* unix: handle out of memory in iface name copy (Ben Noordhuis)
+
+* openbsd: do not error out if cpuspeed is not available (Robert Nagy)
+
+* test: skip thread_name_threadpool on AIX/IBMi (Abdirahim Musse)
+
+* aix,ibmi: fix undeclared identifiers (Richard Lau)
+
+* unix,sunos: prefer SO_REUSEPORT for load balancing (Stacey Marshall)
+
+* doc: free lib pointer before function return (mugitya03)
+
+* test: link with libm (Juan José Arboleda)
+
+* style: rename parameter to match definition (Mohammed Keyvanzadeh)
+
+* test: support partial output lines in test runner (cjihrig)
+
+* build: switch from c90 to c11 (Ben Noordhuis)
+
+* linux: allow nul bytes in abstract socket address (Itay Bookstein)
+
+* sunos: use pipe2 on solaris and illumos (Andy Pan)
+
+* unix: remove TOCTOU issues from uv_pipe_chmod (Ben Noordhuis)
+
+* unix: use pipe_fname if getsockname returns nothing (crupest)
+
+* haiku: use uint32 instead of uint32_t (AE1020)
+
+* doc: update thread pool stack size comment (Ben Noordhuis)
+
+* unix: improve uv_loop_init OOM handling (Ben Noordhuis)
+
+* test: merge uv_tcp_connect callbacks (Juan José Arboleda)
+
+* test: skip multievent tests on macOS with TSAN enabled (Juan José Arboleda)
+
+* linux: align CPU quota calculation with Rust (Juan José Arboleda)
+
+* kqueue: improve fs event watcher OOM handling (Juan José Arboleda)
+
+* sunos: improve fs event watcher OOM handling (Juan José Arboleda)
+
+* build: shorten instructions for cmake build (Juan José Arboleda)
+
+
2025.01.15, Version 1.50.0 (Stable), 8fb9cb919489a48880680a56efecff6a7dfb4504
Changes since version 1.49.2:
diff --git a/configure.ac b/configure.ac
index d0e263a3..a4b03b8f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,7 +13,7 @@
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
AC_PREREQ(2.57)
-AC_INIT([libuv], [1.50.1-dev], [https://github.com/libuv/libuv/issues])
+AC_INIT([libuv], [1.51.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])
diff --git a/include/uv/version.h b/include/uv/version.h
index 6356e1ee..77432f25 100644
--- a/include/uv/version.h
+++ b/include/uv/version.h
@@ -31,10 +31,10 @@
*/
#define UV_VERSION_MAJOR 1
-#define UV_VERSION_MINOR 50
-#define UV_VERSION_PATCH 1
-#define UV_VERSION_IS_RELEASE 0
-#define UV_VERSION_SUFFIX "dev"
+#define UV_VERSION_MINOR 51
+#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) | \