Projekt

Obecné

Profil

Stáhnout (1.06 KB) Statistiky
| Větev: | Revize:
1 cb15593b Cajova-Houba
CHANGELOG
2
=========
3
4
2.5.0
5
-----
6
7
 * added support for PTY mode
8
 * added the convenience method "mustRun"
9
 * deprecation: Process::setStdin() is deprecated in favor of Process::setInput()
10
 * deprecation: Process::getStdin() is deprecated in favor of Process::getInput()
11
 * deprecation: Process::setInput() and ProcessBuilder::setInput() do not accept non-scalar types
12
13
2.4.0
14
-----
15
16
 * added the ability to define an idle timeout
17
18
2.3.0
19
-----
20
21
 * added ProcessUtils::escapeArgument() to fix the bug in escapeshellarg() function on Windows
22
 * added Process::signal()
23
 * added Process::getPid()
24
 * added support for a TTY mode
25
26
2.2.0
27
-----
28
29
 * added ProcessBuilder::setArguments() to reset the arguments on a builder
30
 * added a way to retrieve the standard and error output incrementally
31
 * added Process:restart()
32
33
2.1.0
34
-----
35
36
 * added support for non-blocking processes (start(), wait(), isRunning(), stop())
37
 * enhanced Windows compatibility
38
 * added Process::getExitCodeText() that returns a string representation for
39
   the exit code returned by the process
40
 * added ProcessBuilder