X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDelta.pod;h=045767cf868983b9cbd7bd58040aff65c81443b6;hb=5b4973aa317bc6bcb27f2c3d37c1309e508b3ce1;hp=32a4fe92ca6bf40986c2aef57fd4895d0a6bae83;hpb=03eb666ac5845c0290b83e294bf6f2b7fd4dd728;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Delta.pod b/lib/Catalyst/Delta.pod index 32a4fe9..045767c 100755 --- a/lib/Catalyst/Delta.pod +++ b/lib/Catalyst/Delta.pod @@ -7,6 +7,23 @@ Catalyst::Delta - Overview of changes between versions of Catalyst This is an overview of the user-visible changes to Catalyst between major Catalyst releases. +=head2 VERSION 5.90105 + +This version primarily fixed a regression in the way we preserved $c->state +which the previous version introduced. Now in the case when you forward to +an action, should that action throw an exception it sets state to 0 and is +sure that the return value is false. This is to meet expected behavior based +on the documentation. If you relied on the last update behavior you may not have +regressions but it was thought that we should make the code behave as documented +for more than 10 years. + +We also changed how we compose the request, response and stats base class. We +now compose the base class with any configured traits once at the end of the +application setup, rather than for each request. This reduced request overhead +when you are composing lots of traits. It possible this may break some code that +was adding traits after the application setup was finalized. Please shout out if +this actually causes you trouble and we'll do the best to accommodate. + =head2 VERSION 5.90102 - 5.90103 A significant change is that we now preserve the value of $c->state from action