File perl-FCGI.changes of Package perl-FCGI
1
-------------------------------------------------------------------
2
Wed Jun 8 12:47:24 UTC 2011 - coolo@novell.com
3
4
- updated to 0.73
5
o Stop claiming we ship a file called -e in the MANIFEST.
6
7
o Clean up Makefile.PL and restore compatibility with recent
8
ExtUtils::MakeMaker versions.
9
o Remove support for sfio which is an optional (and not enabled by default)
10
compile option to perl that is never used.
11
o Fix FCGI::Stream::READ() to warn() instead of croak() incase of
12
wide characters which cannot be gracefully downgraded.
13
o Fix warnings due to wide characters being mangled to note that accepting
14
them is deprecated and will stop working at some point.
15
o Various fixes to FCGI::Stream::READ() to improve handling of error and
16
edge cases.
17
- croak if called with invalid number of arguments
18
- croak if length is negative
19
- croak if offset is outside string
20
- pad scalar if offset is greater than length
21
o Fix in FCGX_Finish_r to discard any remaining data in input stream
22
which otherwise ends up in next request. This fixes multiple requests
23
being broken if something goes wrong whilst reading the initial request.
24
This discarding is done silently, as RFC 3875 says a script is not
25
obliged to read any of the data.
26
o Fixed indent style and braces to be consistent, swapped tabs for spaces
27
in indenting.
28
29
o Change the Request function to pass FAIL_ON_INTR into the XS
30
RequestX function. This prevents the fcgi C client code from
31
looping around their accept() call. This change means that
32
when using CGI::Fast, and the process recieves SIGTERM or
33
SIGHUP, the error statusis correctly passed back up, allowing process
34
managers (such as FCGI::ProcManager) to correctly handle cleanly exiting.
35
36
o Restore old behavior when un-downgradeable uft8 is sent to FCGI.
37
The first time this happens, a warning will be issued, but subsequently
38
the bytes will be sent through raw (causing double encoding etc).
39
If the character string can be downgraded safely, then it will still be.
40
use warnings FATAL => 'utf8'; can be used to make undowngradeable strings
41
throw an exception.
42
o Fix PRINT retval (Closes: RT#57697).
43
44
-------------------------------------------------------------------
45
Wed Dec 1 13:32:19 UTC 2010 - coolo@novell.com
46
47
- switch to perl_requires macro
48
49
-------------------------------------------------------------------
50
Tue Sep 14 22:50:34 UTC 2010 - chris@computersalat.de
51
52
- update to 0.71
53
o Fix some more defined(%hash) warnings on perl 5.12.
54
- Version 0.70 -- 22 Mar 2010 <bobtfish@bobtfish.net> Tomas Doran
55
o Fix use of defined %hash which becomes deprecated in perl 5.12
56
- Version 0.69 -- 15 Feb 2010 <mst@shadowcat.co.uk> Matt S Trout
57
o No changes since the previous development release.
58
- Version 0.68_02 -- 13 Jan 2010 <mst@shadowcat.co.uk> Matt S Trout
59
o Make the PRINT method return a boolean value rather than the
60
number of bytes written, previous patch was incorrect.
61
- Version 0.68_01 -- 10 Jan 2010 <mst@shadowcat.co.uk> Matt S Trout
62
o Force signal handler installation so that we correctly install handlers
63
for SIGPIPE. Fixes RT#5100 <bobtfish@bobtfish.net>
64
o Make the PRINT method return the number of bytes written rather than
65
undef to be consistent with the IO:: interface. Fixes RT#24347
66
<David Dick>
67
o Fix UTF-8 double encoding when FCGI is passed octets by downgrading
68
them into bytes correctly. Fixes RT#52400 <chansen@cpan.org>
69
- Version 0.68 -- 31 Dec 2009 <mst@shadowcat.co.uk> Matt S Trout
70
o No changes since the previous development release.
71
- Version 0.67_01 -- 20 Dec 2009 <mst@shadowcat.co.uk> Matt S Trout
72
o Add FILENO method which returns a defined but invalid value to
73
placate things such as IPC::Run which call fileno to check if a
74
filehandle is open.
75
Closes bugs:
76
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=544540
77
http://rt.cpan.org/Public/Bug/Display.html?id=50972
78
Removes need for upstream patch in OpenBSD <bobtfish@bobtfish.net>
79
o Call the fcgi lib's attach/detach <robs@fastcgi.com>
80
- recreated by cpanspec 1.78
81
82
-------------------------------------------------------------------
83
Wed Dec 9 13:31:47 UTC 2009 - bitshuffler #suse@irc.freenode.org
84
85
- Initial RPM
86
87