X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=Changes;h=1c8e5a0cd74bf77f293929eec31254babcb58b47;hp=7987fda17c1a6e2c070ab0e1021d7b35ec65b4da;hb=ancona-trace;hpb=59c1748aaf405246a97630e316a03603f933c393 diff --git a/Changes b/Changes index 7987fda..1c8e5a0 100644 --- a/Changes +++ b/Changes @@ -1,12 +1,47 @@ # This file documents the revision history for Perl extension Catalyst. -5.90063 - 2013-05-01 +5.90069_002 + - Catalyst stash functionality has been moved to Middleware. It should + work entirely the same when used as a context method, please report + questions or problems! + - Removed code related to supporting the long deprecated stand alone + PSGI Engine. If you are still using this you code is now broken. + Luckily you can just stop using it and likely everything will work + under the new PSGI support built into Catalyst for several years. + - 'abort_chain_on_error_fix' now defaults to true. If this behavior + causes you issues, you can explicitly turn it off by setting it to a + non true defined value (0 is a good option here). + - When throwing an http style exception, make sure we properly flush the + existing log and report other errors in the error stack. + +5.90069_001 + - Set encoding on STDERR when encoding is set in config + - documentation and test fixes + +5.90065 - 2014-06-04 + - The Catalyst::Log object now has 'autoflush' (which defaults to true) and + causes log messages to be written out in real-time. This is helpful for the + test/dev server to be able to see messages during startup as well as before + the end of the request when the log is flushed. + - Fix spelling, grammar and structural errors in POD + - Remove redundant ->setup call in t/head_middleware.t RT#95361 + - Fix test failures when running under CATALYST_DEBUG. RT#95358 + +5.90064 - 2014-05-05 + - Fix for mindless broken tests on Win32 (Haarg++). + - Happy Cinco de Mayo! + +5.90063 - 2014-05-01 - 'end' and other special actions won't catch HTTP style exceptions anymore. - Fix bug where Catalyst did not properly detect the terminal width when in debug mode and thus making the debug output narrow and hard to read. - Documentation corrections for Util methods around localized PSGI $env. - Improvements to auto detection of terminal width. - Updating deprecation list to include Class::Load and ensure_class_loaded + - Added a few docs around middleware and corrected the order that middleware + is loaded when registering it via ->setup_middleware instead of via + configuration. + - Added a test case to make sure default middleware order is correct. s 5.90062 - 2014-04-14 - HTTP::Exception objects were not properly bubbled up to middleware since