summaryrefslogtreecommitdiffstats
path: root/Changes
blob: 7efcecef198002cc3f447a990b29bc61bf6cc249 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Revision history for IO-Pty-Easy

0.07    07/07/2009
    - Add a constructor option 'raw' (default true) to configure whether the
      pty should be set to raw mode on spawn.
    - Don't ever automatically set the master side of the pty to raw, since
      it's controlled by the parent process (I don't think this should break
      anything?)
    - Build system changed to Dist::Zilla

0.06    07/06/2009
    - Localize $@ and $? in the destructor
    - Convert the module to use the actual pty object as the class instance,
      rather than hiding it away in the hashref - now things like fileno($pty)
      will do what you expect. This is potentially backwards-incompatible if
      you have been digging around in the hash prior to this.
    - Add a few accessors for the object state

0.05    02/04/2009
    - Fix read() returning undef on timeout

0.04    02/03/2009
    - Don't mess with SIGCHLD, it breaks system() and ``
    - Don't die if $pty->close is called multiple times (and close on DESTROY)
    - Don't mess with SIGWINCH if we weren't the ones that set it up
    - Sleep while waiting for a process to die, rather than spinning
    - FreeBSD should pass all tests now (sorear)

0.03    08/20/2007
    - Make sure stdin/out are connected to a tty before trying to clone winsize
      from them
    - Fix the subprocess test so that it waits for the read before the
      subprocess dies

0.02    08/17/2007
    - Made calls which could possibly terminate the subprocess blocking by
      default
    - A few other minor bug fixes, doc fixes, and general cleanups

0.01    08/17/2007
    - Initial release