X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=Changes;h=d2d16d6816b2bc421340959c8559d64ec8f39274;hp=f68cba7639448d84930aa4982f3ce39f7395547a;hb=2689f8a4d4914dc316857f50eea2cf03788b7030;hpb=62b6471146edafe1192f6f8d162b9dc7c3b5a6e7 diff --git a/Changes b/Changes index f68cba7..d2d16d6 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,17 @@ # This file documents the revision history for Perl extension Catalyst. + Bug fixed: + - Calls to $c->uri_for with private paths as strings (e.g. + $c->uri_for('controller/action', 'arg1', 'arg2') ) no longer have + / encoded to %2F. This is due to $c->uri_for('static', 'css/foo', $bar) + which should not be encoded. + Calls with an action object (rather than a string), or uri_for action + will still encode / in args and captures to %2F + + - The above noted / => %2F encoding in uri_for_action or uri_for with + an action object has been fixed to not just encode the first slash in + any set of args/captures. + New features: - Allow passing additional arguments to action constructors.