Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.9981.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 6ed82dd..f57496c 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,29 @@ Revision history for Perl extension Plack

 Take a look at http://github.com/miyagawa/Plack/issues for the planned changes before 1.0 release.

+0.9981  Mon Jul 18 17:24:11 PDT 2011
+    [BUG FIXES]
+        - Plack::Request: Added a sanity check to remove newlines from headers to follow
+          the PSGI specification #224
+        - HTTPParser::PP: Fixed warnings #225
+        - plackup now prints errors to psgi.errors rather than STDERR
+        - Fixes issues with undef returned from streaming handler in middleware #231
+        - ContentLength: Do not auto-add Content-Length from block devices, pipes and
+          character files
+
+    [NEW FEATURES]
+        - HTTPExceptions: Support ->as_psgi method on exceptions (doy)
+        - FastCGI: Support psgix.harakiri
+
+    [IMPROVEMENTS]
+        - Lint: Added more checks to validate header values
+        - StackTrace: Strip caller information since it is not useful anyway
+        - HTTPExceptions: Added rethrow option (doy)
+        - Misc. doc fixes on plackup (chromatic)
+        - binmode STDIN for CGI handler for Win32 #218
+        - Remove the test that tests Server specific handling of Transfer-Encoding
+        - Fixed POD link (audreyt)
+
 0.9980  Mon Jun  6 20:24:25 PDT 2011
     [BUG FIXES]
         - Fixed a bug where restarting loader doesn't terminate children (#209)
  • Loading branch information
miyagawa committed Jul 19, 2011
1 parent 2fc7b9e commit 69b063b
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 4 deletions.
23 changes: 23 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,29 @@ Revision history for Perl extension Plack

Take a look at http://github.com/miyagawa/Plack/issues for the planned changes before 1.0 release.

0.9981 Mon Jul 18 17:24:11 PDT 2011
[BUG FIXES]
- Plack::Request: Added a sanity check to remove newlines from headers to follow
the PSGI specification #224
- HTTPParser::PP: Fixed warnings #225
- plackup now prints errors to psgi.errors rather than STDERR
- Fixes issues with undef returned from streaming handler in middleware #231
- ContentLength: Do not auto-add Content-Length from block devices, pipes and
character files

[NEW FEATURES]
- HTTPExceptions: Support ->as_psgi method on exceptions (doy)
- FastCGI: Support psgix.harakiri

[IMPROVEMENTS]
- Lint: Added more checks to validate header values
- StackTrace: Strip caller information since it is not useful anyway
- HTTPExceptions: Added rethrow option (doy)
- Misc. doc fixes on plackup (chromatic)
- binmode STDIN for CGI handler for Win32 #218
- Remove the test that tests Server specific handling of Transfer-Encoding
- Fixed POD link (audreyt)

0.9980 Mon Jun 6 20:24:25 PDT 2011
[BUG FIXES]
- Fixed a bug where restarting loader doesn't terminate children (#209)
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST
Expand Up @@ -251,6 +251,7 @@ t/Plack-Request/upload.t
t/Plack-Request/uri.t
t/Plack-Request/uri_utf8.t
t/Plack-Response/body.t
t/Plack-Response/compatible.t
t/Plack-Response/cookie.t
t/Plack-Response/new.t
t/Plack-Response/redirect.t
Expand All @@ -276,6 +277,7 @@ t/Plack-Util/inline_object.t
t/Plack-Util/io_with_path.t
t/Plack-Util/is_real_fh.t
t/Plack-Util/load.t
t/Plack-Util/response_cb.t
xt/perlcriticrc
xt/pod.t
xt/podspell.t
2 changes: 1 addition & 1 deletion lib/Plack.pm
Expand Up @@ -3,7 +3,7 @@ package Plack;
use strict;
use warnings;
use 5.008_001;
our $VERSION = '0.9980';
our $VERSION = '0.9981';
$VERSION = eval $VERSION;

1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Request.pm
Expand Up @@ -2,7 +2,7 @@ package Plack::Request;
use strict;
use warnings;
use 5.008_001;
our $VERSION = '0.9980';
our $VERSION = '0.9981';
$VERSION = eval $VERSION;

use HTTP::Headers;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Response.pm
@@ -1,7 +1,7 @@
package Plack::Response;
use strict;
use warnings;
our $VERSION = '0.9980';
our $VERSION = '0.9981';
$VERSION = eval $VERSION;

use Plack::Util::Accessor qw(body status);
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Server/ServerSimple.pm
@@ -1,6 +1,6 @@
package Plack::Server::ServerSimple;
use strict;
our $VERSION = '0.9980';
our $VERSION = '0.9981';
$VERSION = eval $VERSION;

use parent qw(Plack::Handler::HTTP::Server::Simple);
Expand Down

0 comments on commit 69b063b

Please sign in to comment.