X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=Changes;h=d2d16d6816b2bc421340959c8559d64ec8f39274;hp=12cc5f216f1d53b5511fdb6106888c82dc50b7b8;hb=2689f8a4d4914dc316857f50eea2cf03788b7030;hpb=4113e1bb097c3c37f31a3ea766935aaafe93db28 diff --git a/Changes b/Changes index 12cc5f2..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. @@ -12,6 +24,7 @@ Documentation: - Clarify that uri_for_action works on private paths, with example. + - Clarify documentation about debug Deprecations: - Saying use Catalyst::Test; (without an application name or () to stop