-
Notifications
You must be signed in to change notification settings - Fork 3
/
Changes
144 lines (103 loc) · 4.35 KB
/
Changes
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
Revision history for {{$dist->name}}
{{$NEXT}}
0.90 2023-08-28 07:54:42 -0600
- Documentation improvements (gh#22)
0.89 2023-08-27 10:47:27 -0600
- Fix bug that caused test failure in recent bleadperl (gh#20, gh#21)
0.88 2022-10-26 09:01:38 -0600
- Documentation improvements (gh#19)
0.87 2019-04-16 17:32:23 -0400
- Require Test::More 0.98 for test fixes (gh#12)
0.86 2016-01-14 09:41:20 -0500
- Experimental support for Mojolicious without EV (use 'mojo' as implementation)
- Use IO::Select for actual non-blocking on windows (fixes bug introduced in 0.85)
0.85 2016-01-13 14:59:03 -0500
- MSWin32 supports EV again.
- MSWin32 supports AnyEvent::Impl::Perl for the first time.
- Switched to EUMM for installer
0.84 2015-06-11 10:39:56 -0400
- Fix accidental breakage in 5.8.8
0.83 2015-05-15 07:16:25 -0400
- Remove deprecated stdin argument passed into new
- Remove experimental "raw" support
0.82 2015-03-03 23:37:46 -0500
- Explicitly require Perl 5.6.0 or better
- Clean up prereqs
0.81 2014-10-08 11:11:53 -0400
- use Event instead of EV in testing for Strawberry Perl 5.20 or better
fixes test failures on Strawberry 5.20.*
0.80 2014-07-22 06:50:13 -0400
- promote to production
0.79_02 2014-07-19 11:44:10 -0400
- identical release new version
0.79_01 2014-07-18 11:05:26 -0400
- added optional callback to run method to allow per-execute callback to
be called just before on_start.
0.79 2014-04-19 08:25:02 -0400
- migrate from MakeMaker to Module::Build
- documentation tweaks
0.78 2014-03-20 18:15:47 -0400
- on_start event now gets program and arguments passed to the run method
0.77 2014-03-20 17:55:47 -0400
- on_error event now gets program and arguments passed to the run method
- add user attribute on AnyEvent::Open3::Simple::Process
0.76 2014-03-18 12:04:18 -0400
- deprecate stdin attribute for AnyEvent::Open3::Simple
- optionally pass whole content stdin to run method instead
0.75 2013-09-17 07:54:01 -0400
- add stdin attribute for AnyEvent::Open3::Simple
0.74 2013-09-12 06:10:50 -0400
- skip raw support testing on all platforms
0.73 2013-09-10 14:08:24 -0400
- perl 5.8 support fixes
0.72 2013-09-09 08:20:35 -0400
- marking raw support as experiemental
https://github.com/plicease/AnyEvent-Open3-Simple/issues/6
- undocumented (and experimental): on_stderr and on_stdout can be list ref
0.71 2013-09-03 15:19:59 -0400
- fixed raw support
0.70 2013-09-03 12:39:38 -0400
- promote to production
0.69_02 2013-09-01 14:25:50 -0400
- add prereq EV on MSWin32
0.69_01 2013-08-31 20:28:03 -0400
- experimental perl 5.8 support
- added optional raw attribute to constructor
0.69 2013-08-29 21:58:23 -0400
- added an alternate idle watcher implementation
- added MSWin32 support (via idle watcher)
- change end line processing
in the past we used chomp() which removed trailing $/
but this didn't work nicely with MSWin32, instead we
use a regex that removes \r\n, \n or \r
0.68 2013-08-23 08:38:40 -0400
- documentation tweaks
0.67 2013-03-21 11:01:47 America/New_York
- fix META.json,yml
0.66 2013-03-07 08:39:25 America/New_York
- added on_success callback
0.65 2013-02-09 17:10:56 America/New_York
- documentation updates
0.64 2013-02-05 08:54:37 America/New_York
- added timeout to proc.t
0.63 2013-02-04 08:27:08 America/New_York
- adjust timout detection and failure in test to be more aggressive
0.62 2012-12-29 09:31:07 America/New_York
- unstuck tests on MSWin32. Platform is still unsupported as per the docs.
0.61 2012-11-29 12:19:35 America/New_York
- Documentation clarification
- Don't include core prereqs
0.6 2012-10-04 04:48:11 EST5EDT
- Use Core::close instead of IO::Handle->close
- Use Core::print instead of IO::Handle->print
0.5 2012-10-02 15:53:35 America/New_York
- Fix glaring error in the documentation SYNOPSIS
0.4 2012-10-02 15:26:59 America/New_York
- Fix typeo which broke when passing in hashref to constructor (GH#1)
0.3 2012-10-02 13:42:28 America/New_York
- documentation fixes
- re-enable on_error.t for newer perl
0.2 2012-10-02 09:16:57 EST5EDT
- disabled unreliable test
0.1 2012-10-02 01:20:45 EST5EDT
- initial version