From: John Napiorkowski Date: Tue, 24 Dec 2013 14:01:35 +0000 (-0600) Subject: fixed regression in previous release X-Git-Tag: 5.90060~36 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=7af15a33a6d54bdd91fe1635612c54fe026694bc fixed regression in previous release --- diff --git a/Changes b/Changes index bc44660..8d2100a 100644 --- a/Changes +++ b/Changes @@ -3,8 +3,10 @@ - Announcing the repo is not open for development of Perl Catalyst 'Runner' - http://questhub.io/realm/perl/explore/latest/tag/runner -5.90059_003 - TBA +5.90059_003 - 2013-12-24 - More documentation about alternative ways to setup middleware. + - removed unneeded use of Devel::Dwarn in test case that was causing + fails to install (sorry). 5.90059_002 - 2013-12-21 - We now pass a scalar or filehandle directly to you Plack handler, rather diff --git a/t/body_fh.t b/t/body_fh.t index cc00020..447794a 100644 --- a/t/body_fh.t +++ b/t/body_fh.t @@ -4,7 +4,10 @@ use Test::More; use HTTP::Request::Common; use HTTP::Message::PSGI; use Plack::Util; -use Devel::Dwarn; + +# Test case to check that we now send scalar and filehandle like +# bodys directly to the PSGI engine, rather than call $writer->write +# or unroll the filehandle ourselves. { package MyApp::Controller::Root;