diff --git a/debian/changelog b/debian/changelog index 5d1814e..8679e1b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +vuinputd (0.3.2-1) unstable; urgency=medium + + * Improve debugging support for container execution: + - Add documentation describing how to debug actions triggered by + vuinputd inside containers. + - Make it easier to use strace to debug child processes. + - Log action descriptions as base64-encoded JSON when executing + container actions (e.g. mknod), simplifying shell-based debugging. + + -- Johannes Leupolz Sat, 21 Dec 2025 10:30:00 +0000 + + vuinputd (0.3.1-1) unstable; urgency=medium * Improve Debian packaging and release process: diff --git a/debian/control b/debian/control index 6b594ae..0a52053 100644 --- a/debian/control +++ b/debian/control @@ -25,6 +25,7 @@ Build-Depends: debhelper (>= 12), librust-async-io-dev, librust-anyhow-dev, librust-clap-dev, + librust-base64-dev, pkg-config, build-essential Standards-Version: 4.6.0 diff --git a/vuinputd/Cargo.toml b/vuinputd/Cargo.toml index 95e917c..69852aa 100644 --- a/vuinputd/Cargo.toml +++ b/vuinputd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vuinputd" -version = "0.3.1" +version = "0.3.2" edition = "2021" authors = ["Johannes Leupolz "] license = "MIT"