X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FDelta.pod;h=7959a6e9a5df29495bca03825874fb6083e0db2a;hp=8ae07c71c1c5ab69b1d0b723286aeadd98f980bf;hb=5e7e6b272a9e1b8bf1c401dd3a607fc851c43cc7;hpb=02336198551ec2d7edfa74911919b8804bfc69c8 diff --git a/lib/Catalyst/Delta.pod b/lib/Catalyst/Delta.pod index 8ae07c7..7959a6e 100755 --- a/lib/Catalyst/Delta.pod +++ b/lib/Catalyst/Delta.pod @@ -7,6 +7,24 @@ 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.90100 + +Support for type constraints in Args and CaptureArgs has been improved. You may +now inherit from a base controller that declares type constraints and use roles +that declare type constraints. See L for more. + +You may now. also use a full type constraint namespace instead of inporting type +constraints into your package namespace. + +We changed the way the middleware stash works so that it no longer localizes +the PSGI env hashref. This was done to fix bugs where people set PSGI ENV hash +keys and found them to dissappear in certain cases. It also means that now if +a sub applications sets stash variables, that stash will now bubble up to the +parent application. This may be a breaking change for you since previous +versions of this code did not allow that. A workaround is to explicitly delete +stash keys in your sub application before returning control to the parent +application. + =head2 VERSION 5.90097 =head3 Defined how $c->uri_for adds a URI fragment.