Releases: sarugaku/shellingham
Releases · sarugaku/shellingham
Version 1.2.3
- Check a process’s argument list is valid before peeking into it. This works around a Heisenbug in VS Code, where a process read from
/proc
may contain an empty argument list.
Version 1.2.2
- Support BSD-style
/proc
format.
Version 1.2.1
- Fix login shell detection if it is
chsh
-ed to point to an absolute path.
Version 1.2.0
- Prefer the
/proc
-based approach on POSIX whenever it is likely to work.
Version 1.1.0
- Use
/proc
on Linux to build process tree. This is more reliable thanps
, which may not be available on a bare installation.
Version 1.0.1
Bug Fixes
- Fix POSIX usage on Python 2 by providing more compatible arguments to parse
ps
results. Thanks to @glehmann for the patch.