Version 0.71_02
[catagits/fcgi2.git] / perl / ChangeLog
index 6ddc642..80363c5 100644 (file)
@@ -1,3 +1,30 @@
+
+Version 0.71_02 --  28 Apr 2011 <bobtfish@bobtfish.net>
+   o Change the Request function to pass FAIL_ON_INTR into the XS
+     RequestX function. This prevents the fcgi C client code from
+     looping around their accept() call. This change means that
+     when using CGI::Fast, and the process recieves SIGTERM or
+     SIGHUP, the error statusis correctly passed back up, allowing process
+     managers (such as FCGI::ProcManager) to correctly handle cleanly exiting.
+
+Version 0.71_01 --   24 Aug 2010 <bobtfish@bobtfish.net>
+   o Restore old behavior when un-downgradeable uft8 is sent to FCGI.
+     The first time this happens, a warning will be issued, but subsequently
+     the bytes will be sent through raw (causing double encoding etc).
+     If the character string can be downgraded safely, then it will still be.
+     use warnings FATAL => 'utf8'; can be used to make undowngradeable strings
+     throw an exception.
+   o Fix PRINT retval (Closes: RT#57697).
+
+Version 0.71 --      1 Apr 2010  <rafl@debian.org> Florian Ragwitz
+    o Fix some more defined(%hash) warnings on perl 5.12.
+
+Version 0.70 --     22 Mar 2010  <bobtfish@bobtfish.net> Tomas Doran
+    o Fix use of defined %hash which becomes deprecated in perl 5.12
+
+Version 0.69 --     15 Feb 2010  <mst@shadowcat.co.uk> Matt S Trout
+    o No changes since the previous development release.
+
 Version 0.68_02 --   13 Jan 2010  <mst@shadowcat.co.uk> Matt S Trout
     o Make the PRINT method return a boolean value rather than the
          number of bytes written, previous patch was incorrect.