From: John Napiorkowski Date: Thu, 15 Dec 2016 19:21:00 +0000 (-0600) Subject: documented changes X-Git-Tag: 5.90113~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=ffe72ea67cb3a51d2e0e515079ede64e88699f12;hp=14b0dab3b4ba38d8de513a46d902a0eca4068841 documented changes --- diff --git a/Changes b/Changes index 5a70eef..2ca9417 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ # This file documents the revision history for Perl extension Catalyst. +5.90113 - 2016-12-15 + - Fixed issue with $controller->action_for when targeting an action in + a namespace nested inside the current controller and the current controller + is a 'root' controller. + - Enhanced $controller->action_for so that you can reference the 'parent' + controller via relative path (eg ->action_for('../foo')). + - Backcompat fix for people that made the mistake of doing $c->{stash} - Sort controllers in setup_actions so cross-controller precedence is consistent. diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index a71f655..503d2ec 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -204,7 +204,7 @@ sub composed_stats_class { __PACKAGE__->_encode_check(Encode::FB_CROAK | Encode::LEAVE_SRC); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90112'; +our $VERSION = '5.90113'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases sub import { diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 75796db..4ef1fbe 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008003; } # Remember to update this in Catalyst as well! -our $VERSION = '5.90112'; +our $VERSION = '5.90113'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases =head1 NAME