Skip to content

Commit

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

diff --git a/Changes b/Changes
index 084f1fd..db54eea 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,15 @@
 Go to http://github.com/plack/Plack/issues for the roadmap and known issues.

+1.0017 Thu Feb  7 19:21:24 PST 2013
+    [INCOMPATIBLE CHANGES]
+        - Gives you warnings when you use one of Plack::App objects in `plackup -e` or
+          in .psgi files but forgot to call ->to_app to make it a PSGI application (plack#369)
+          Still automatically converts them for backward compatibility, but in the
+          loading time inside Plack::Builder.
+
+    [BUG FIXES]
+        - chdir to the CGI path when executing CGIBin (plack#338, plack#368)
+
 1.0016 Thu Jan 31 13:21:14 PST 2013
     [SECURITY]
         - Fixed directory traversal bug in Plack::App::File on win32 environments
  • Loading branch information
miyagawa authored and karenetheridge committed Feb 14, 2013
1 parent 1bb09c2 commit 35805bf
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions Changes
@@ -1,5 +1,15 @@
Go to http://github.com/plack/Plack/issues for the roadmap and known issues.

1.0017 Thu Feb 7 19:21:24 PST 2013
[INCOMPATIBLE CHANGES]
- Gives you warnings when you use one of Plack::App objects in `plackup -e` or
in .psgi files but forgot to call ->to_app to make it a PSGI application (#369)
Still automatically converts them for backward compatibility, but in the
loading time inside Plack::Builder.

[BUG FIXES]
- chdir to the CGI path when executing CGIBin (#338, #368)

1.0016 Thu Jan 31 13:21:14 PST 2013
[SECURITY]
- Fixed directory traversal bug in Plack::App::File on win32 environments
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Expand Up @@ -149,6 +149,7 @@ t/Plack-Middleware/auth_basic_simple.t
t/Plack-Middleware/bufferedstreaming.t
t/Plack-Middleware/cascade/basic.t
t/Plack-Middleware/cascade/streaming.t
t/Plack-Middleware/cgi-bin/cgi_dir.cgi
t/Plack-Middleware/cgi-bin/hello.cgi
t/Plack-Middleware/cgi-bin/hello.py
t/Plack-Middleware/cgi-bin/hello2.cgi
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 = '1.0016';
our $VERSION = '1.0017';
$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 = '1.0016';
our $VERSION = '1.0017';
$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 = '1.0016';
our $VERSION = '1.0017';
$VERSION = eval $VERSION;

use Plack::Util::Accessor qw(body status);
Expand Down

0 comments on commit 35805bf

Please sign in to comment.