Skip to content

Releases: ofbeaton/command-running

Production Ready

10 Aug 15:58
Compare
Choose a tag to compare

Bumping version to 1.0.0 to indicate it's current use in production.

Kill Group

17 Aug 05:09
Compare
Choose a tag to compare

Another attempt at implementing a Kill Group, and somehow the travis phpunit test was broken through autoloading and I can't seem to correct it. Passes locally.

Linux group pid

14 Aug 21:23
Compare
Choose a tag to compare

Turns out the kill -9 -pid command wasn't working how I thought, so I'll have to do something more complex to support the 0.3.0, consider this a revert.

Linux Group Kill

14 Aug 15:32
Compare
Choose a tag to compare

Kill on linux now kills the process group, so if you forked()'d stuff it will also kill that and not leave zombies around. (thanks Michael Erdmann)

Linux Kill Output

14 Aug 03:09
Compare
Choose a tag to compare

The kill command on linux had unintended stderr text leaking out. We've eliminated it using stderr redirection. In the future, use of the posix_kill method will likely skirt this issue. (thanks Michael Erdmann)

Default Mods

13 Aug 19:53
Compare
Choose a tag to compare

Fixed a problem where default mod was not set in filters properly. (thanks Michael Erdmann)

Ignore Files

13 Aug 05:00
Compare
Choose a tag to compare

Some dist files copies were not ignored properly and sneaked into the last release. Fixed.

Simplified API

13 Aug 04:55
Compare
Choose a tag to compare

Simplified the API, and added a few new methods. The next release will look at shortcuts to do things without using exec, posix methods on linux, and WMI on windows.

Initial Release

07 Aug 03:05
Compare
Choose a tag to compare

Some basic functionality for detecting processes running on windows and linux. Also has light support for PID files.