From: Mark W. <ma...@so...> - 2025-04-25 12:48:07
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=0b557127300197e0c779369d2e173eb85121fd66 commit 0b557127300197e0c779369d2e173eb85121fd66 Author: Mark Wielaard <ma...@kl...> Date: Fri Apr 25 14:38:05 2025 +0200 -> 3.25.0 final Diff: --- NEWS | 13 ++++++++++++- configure.ac | 4 ++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 3cc13344a5..cd4670aca6 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -Release 3.25.0.RC2 (23 Apr 2025) +Release 3.25.0 (25 Apr 2025) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This release supports X86/Linux, AMD64/Linux, ARM32/Linux, ARM64/Linux, @@ -14,6 +14,12 @@ X86/macOS 10.13, AMD64/macOS 10.13 and nanoMIPS/Linux. 'x addr,len' (available in GDB release >= 16). The x packet can reduce the time taken by GDB to read memory from valgrind. +* Valgrind now supports zstd compressed debug sections. + +* The Linux Test Project (ltp) is integrated in the testsuite try + 'make ltpchecks' (this will take a while and will point out various + missing syscalls and valgrind crashes!) + * ================== PLATFORM CHANGES ================= * Added RISCV64 support for Linux. Specifically for the RV64GC @@ -28,6 +34,11 @@ X86/macOS 10.13, AMD64/macOS 10.13 and nanoMIPS/Linux. The extra error is now filtered out. A syscall wrapper had been added for getrlimitusage. +* On Linux various new syscalls are supported (landlock*, io_pgetevents, + open_tree, move_mount, fsopen, fsconfig, fsmount, fspick, userfaultfd). + +* s390x has support for various new instructions (BPP, BPRP, PPA and NIAI). + * ==================== TOOL CHANGES =================== * The --track-fds=yes and --track-fds=all options now treat all diff --git a/configure.ac b/configure.ac index 6a7c32993d..2dfbd1c1af 100755 --- a/configure.ac +++ b/configure.ac @@ -18,8 +18,8 @@ AC_PREREQ(2.69) m4_define([v_major_ver], [3]) m4_define([v_minor_ver], [25]) m4_define([v_micro_ver], [0]) -m4_define([v_suffix_ver], [RC2]) -m4_define([v_rel_date], ["23 Apr 2025"]) +m4_define([v_suffix_ver], []) +m4_define([v_rel_date], ["25 Apr 2025"]) m4_define([v_version], m4_if(v_suffix_ver, [], [v_major_ver.v_minor_ver.v_micro_ver], |