libcapsule 0.20221006.0
* capture-libs: Add exact-soname option.
This is a stricter version of `soname:`, where a library is considered
to be a match only if its DT_SONAME is exactly what capture-libs was
asked to look for.
This can be used as a protection against misconfigured systems
where two incompatible libraries have been symlinked. For example,
if there is an unexpected symlink `libudev.so.0 -> libudev.so.1`,
with `soname:libudev.so.0` we would import `libudev.so.0` inside the
container even if its DT_SONAME is `libudev.so.1`, but with
`exact-soname:libudev.so.0` we will not.