-
Checking in changes prior to tagging of version 0.9948.
miyagawa committedSep 9, 2010 Changelog diff is: diff --git a/Changes b/Changes index 7394470..8429fc7 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,12 @@ 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.9948 Thu Sep 9 16:01:53 PDT 2010 + - Fixed a bug introduced in 0.9947 where $req->upload loses the temporary files when + Plack::Request object is instantiated multiple times. It could happen if one of the + pre-processing middleware uses Plack::Request and then again in the application or + frameworks. + 0.9947 Thu Sep 9 02:26:14 PDT 2010 - Plack::Loader: Fixed a typo in ENV that prevents warnings messages in development - Added flymake temporary file in Restarter (hirose31)
-
Save HTTP::Body object in the other $env key rather than in $req
miyagawa committedSep 9, 2010 This ensures the cleanup happens in the $env cleanup rather than $req destroy which might be too early if we instnatiate Plack::Request multiple times, once in middleware and the other in the app.
-
Checking in changes prior to tagging of version 0.9947.
miyagawa committedSep 9, 2010 Changelog diff is: diff --git a/Changes b/Changes index 17a4ee6..7394470 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,12 @@ 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.9947 Thu Sep 9 02:26:14 PDT 2010 + - Plack::Loader: Fixed a typo in ENV that prevents warnings messages in development + - Added flymake temporary file in Restarter (hirose31) + - Plack::Request: Fixed a bug that HTTP::Body temporary files were not cleaned up (plu) + - Middleware::AccessLog: Fixed a bug where %{key}i ignores the value '0' (nekoya) + 0.9946 Sat Aug 28 22:32:16 PDT 2010 - Fixes UUV warnings in Apache2 handler RT:60472 - Fixed various test failures due to dependencies
-
-
-
fixed the typo in PLACK_ENV warnings
miyagawa committedSep 9, 2010
-
Checking in changes prior to tagging of version 0.9946.
miyagawa committedAug 29, 2010 Changelog diff is: diff --git a/Changes b/Changes index cb09abe..17a4ee6 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,10 @@ 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.9946 Sat Aug 28 22:32:16 PDT 2010 + - Fixes UUV warnings in Apache2 handler RT:60472 + - Fixed various test failures due to dependencies + 0.9945 Thu Aug 19 16:24:30 PDT 2010 - Support executing (non-perl) CGI scripts in CGIBin and WrapCGI - Fixed tests for win32
-
miyagawa committed
Aug 29, 2010 -
Requries newer CGI::Emulate::PSGI.
miyagawa committedAug 29, 2010 -
miyagawa committed
Aug 29, 2010
-
don't generate broken urls in Plack::App::Directory
doy committedAug 26, 2010 if you navigate to http://example.com/foo where / is a Plack::App::Directory, the links on the page will be pointing to locations like http://example.com/foo../ which isn't correct
-
miyagawa committed
Aug 19, 2010 -
Checking in changes prior to tagging of version 0.9945.
miyagawa committedAug 19, 2010 Changelog diff is: diff --git a/Changes b/Changes index 6fcb3b0..cb09abe 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,10 @@ 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.9945 Thu Aug 19 16:24:30 PDT 2010 + - Support executing (non-perl) CGI scripts in CGIBin and WrapCGI + - Fixed tests for win32 + 0.9944 Sun Aug 8 23:35:52 PDT 2010 - Fixed Restarter for Starlet where SIGTERM doesn't quit the process (chiba)
-
miyagawa committed
Aug 19, 2010 -
App::CGIBin can now run non-perl CGI scripts, or force execute perl s…
miyagawa committedAug 19, 2010 …cripts as a non-persisten app. The default behavior to see the given file is perl is to check filename as well as its shebang. You can change it with exec_cb callback.
-
-
skip the runtime hires test on win32
miyagawa committedAug 19, 2010
-
leedo committed
Aug 9, 2010 -
clarified the doc a little bit
miyagawa committedAug 9, 2010 -
Checking in changes prior to tagging of version 0.9944.
miyagawa committedAug 9, 2010 Changelog diff is: diff --git a/Changes b/Changes index 3117e09..6fcb3b0 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,9 @@ 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.9944 Sun Aug 8 23:35:52 PDT 2010 + - Fixed Restarter for Starlet where SIGTERM doesn't quit the process (chiba) + 0.9943 Fri Jul 30 13:24:15 PDT 2010 - Updated Apache* handler so it could duck type on Loader (jnap) - Added --access-log to plackup (grantm)
-
Fixed a bug where restarted children could run in the while() loop wh…
miyagawa committedAug 7, 2010 …en the server's run() doesn't exit. Fixes gh-124
-
Checking in changes prior to tagging of version 0.9943.
miyagawa committedJul 30, 2010 Changelog diff is: diff --git a/Changes b/Changes index 658e361..3117e09 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,11 @@ 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.9943 Fri Jul 30 13:24:15 PDT 2010 + - Updated Apache* handler so it could duck type on Loader (jnap) + - Added --access-log to plackup (grantm) + - Added support for streaming stdio in Net::FastCGI handler (chansen) + 0.9942 Fri Jul 23 23:42:43 PDT 2010 - Allow passing FCGI manager object to Handler::FCGI (confound) - Call FCGI::Request::Finish() before pm_post_dispatch (confound)
-
-
-
-
removed new from apache registry handler since we inherit from the ba…
…se apache2 handler and it already has one
-
Checking in changes prior to tagging of version 0.9942.
miyagawa committedJul 24, 2010 Changelog diff is: diff --git a/Changes b/Changes index c30dcb2..658e361 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,12 @@ 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.9942 Fri Jul 23 23:42:43 PDT 2010 + - Allow passing FCGI manager object to Handler::FCGI (confound) + - Call FCGI::Request::Finish() before pm_post_dispatch (confound) + - Moved response_cb() to Plack::Util (confound) + - re-enable WithLexicals now that PadWalker segfaults with 5.12 is fixed #98 + 0.9941 Thu Jul 8 18:17:30 PDT 2010 - Makes Lint not warn about ASCII-only strings with UTF8 flag because they're safe
-
re-enable WithLexicals. fixes gh-98
miyagawa committedJul 19, 2010
-
Moved response_cb() to Plack::Util as a function so the inlined
miyagawa committedJul 14, 2010 middleware components, either with enable sub {} or with the plain perl code ref can make use of it.
-
put FCGI::Request::Finish before pm_post_dispatch
Hans Dieter Pearcey committedJul 13, 2010
-
allow passing in a manager object, not just a class
Hans Dieter Pearcey committedJul 12, 2010