Skip to content

Commit

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

diff --git a/Changes b/Changes
index 78fefe0..4736441 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,15 @@ 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.9956  Thu Dec  9 19:32:46 PST 2010
+        - FastCGI: Fixed an empty PATH_INFO with mod_fastcgi (and possibly others)
+        - FastCGI: Improved the automatic detection of the case when invoked from web server. plack#141
+          (reported by LeoNerd)
+        - plackup: Document that -e 'enable ...' doesn't assume app.psgi when there's no argument. plack#106 (clkao)
+        - Plack::App::FCGIDispatcher: Remove the Status: header plack#123 (reported by Htbaa)
+        - Apache2: Work around issues where SCRIPT_NAME gets wrong when LocationMatch is used. plack#136
+          (reported by atiking)
+
 0.9955  Thu Dec  9 18:02:50 PST 2010
         - More fixes to a possible directory traversal
  • Loading branch information
miyagawa committed Dec 10, 2010
1 parent e7daf54 commit 8fff53e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,15 @@ 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.9956 Thu Dec 9 19:32:46 PST 2010
- FastCGI: Fixed an empty PATH_INFO with mod_fastcgi (and possibly others)
- FastCGI: Improved the automatic detection of the case when invoked from web server. #141
(reported by LeoNerd)
- plackup: Document that -e 'enable ...' doesn't assume app.psgi when there's no argument. #106 (clkao)
- Plack::App::FCGIDispatcher: Remove the Status: header #123 (reported by Htbaa)
- Apache2: Work around issues where SCRIPT_NAME gets wrong when LocationMatch is used. #136
(reported by atiking)

0.9955 Thu Dec 9 18:02:50 PST 2010
- More fixes to a possible directory traversal

Expand Down
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.9955';
our $VERSION = '0.9956';
$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.9955';
our $VERSION = '0.9956';
$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.9955';
our $VERSION = '0.9956';
$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.9955';
our $VERSION = '0.9956';
$VERSION = eval $VERSION;

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

0 comments on commit 8fff53e

Please sign in to comment.