diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e0a9131..6ba42ac9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v0.6.1-beta.2 +## v0.6.1-rc.1 - Docs: document dependencies for building in INSTALL.md. - CI: Bump ubuntu to 24.04, with clang 18 as default clang. @@ -10,6 +10,8 @@ This release fixes it. - Fix the help entry of breakpoint manager. - Fix: eBPF: only remove pgid from closure if follow-forks - Fix: eBPF: simplify program to make it load on kernel >= 6.8 +- Fix: eBPF: add a temporary workaround(d7f23b4b66f9846cb3ae4d73ee60b30741092516) to make it load in release mode on new kernels. +A side effect is some empty printk output in `/sys/kernel/debug/tracing/trace_pipe`. See the commit for more details. ## v0.6.0 diff --git a/Cargo.lock b/Cargo.lock index 978a9528..2a9a1b2f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1995,7 +1995,7 @@ dependencies = [ [[package]] name = "tracexec" -version = "0.6.1-beta.2" +version = "0.6.1-rc.1" dependencies = [ "arboard", "arcstr", diff --git a/Cargo.toml b/Cargo.toml index 911760e5..0ec8bb15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracexec" -version = "0.6.1-beta.2" +version = "0.6.1-rc.1" edition = "2021" authors = ["Levi Zim "] description = "Tracer for execve{,at} and pre-exec behavior, launcher for debuggers."