From: Tomas Doran Date: Wed, 7 Apr 2010 03:09:15 +0000 (+0000) Subject: Changelog X-Git-Tag: v0.34^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-View-TT.git;a=commitdiff_plain;h=5c2affa4d8d2a44339637b768b2dddcc1e8c5ff7 Changelog --- diff --git a/Changes b/Changes index 2f6c7ad..a0814f6 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,15 @@ Revision history for Perl extension Catalyst::View::TT. +0.34 2010-04-07 04:14:50 + - Fix the process method to have the previous behaviour of reporting + an error to Catalyst if a Template::Exception object is returned by + the render method (i.e. when render_die is unset or set to 0). + - Fix the warning issued about missing the render_die config option to + log using the standard Catalyst logging system (rather than Carping + directly), and to only issue the warning at debug level / when + in debug mode. The severity of this warning will be increased in + a later release. + 0.33 2010-03-10 20:08:00 - The "render()" method now throws a warning on exception before returning the exception. To silence the warning, pass 'render_die => diff --git a/lib/Catalyst/View/TT.pm b/lib/Catalyst/View/TT.pm index 4226d9b..861d047 100644 --- a/lib/Catalyst/View/TT.pm +++ b/lib/Catalyst/View/TT.pm @@ -10,7 +10,7 @@ use Template::Timer; use MRO::Compat; use Scalar::Util qw/blessed/; -our $VERSION = '0.33'; +our $VERSION = '0.34'; __PACKAGE__->mk_accessors('template'); __PACKAGE__->mk_accessors('include_path');