This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Process/CHANGELOG.md

40 lines
987 B
Markdown
Raw Normal View History

2012-04-26 20:35:39 +01:00
CHANGELOG
=========
2.5.0
2013-08-03 07:07:42 +01:00
-----
2013-08-03 08:10:03 +01:00
* added support for PTY mode
2013-08-03 08:24:32 +01:00
* added the convenience method "mustRun"
* deprecation: Process::setStdin() is deprecated in favor of Process::setInput()
* deprecation: Process::getStdin() is deprecated in favor of Process::getInput()
2013-08-03 07:07:42 +01:00
2.4.0
-----
* added the ability to define an idle timeout
2.3.0
-----
* added ProcessUtils::escapeArgument() to fix the bug in escapeshellarg() function on Windows
* added Process::signal()
* added Process::getPid()
* added support for a TTY mode
2012-10-04 15:21:40 +01:00
2.2.0
-----
* added ProcessBuilder::setArguments() to reset the arguments on a builder
2012-10-27 14:46:00 +01:00
* added a way to retrieve the standard and error output incrementally
2012-10-04 15:21:40 +01:00
* added Process:restart()
2012-04-26 20:35:39 +01:00
2.1.0
-----
* added support for non-blocking processes (start(), wait(), isRunning(), stop())
* enhanced Windows compatibility
* added Process::getExitCodeText() that returns a string representation for
the exit code returned by the process
* added ProcessBuilder