Bump versions, expand somewhat on the changelog
[catagits/Catalyst-Runtime.git] / Changes
1 # This file documents the revision history for Perl extension Catalyst.
2
3 5.80021 2010-03-03 23:02:01
4
5   Bug fixed:
6    - $c->uri_for will now escape unsafe characterss in captures
7      ($c->request->captures) and correctly encode utf8 charracters.
8
9 5.80020 2010-02-04 06:51:18
10
11   New features:
12     - Allow components to specify additional components to be set up by
13       overriding the expand_modules method. (Oliver Charles)
14
15 5.80019 2010-01-29 01:04:09
16
17   Bug fixed:
18    - Calls to $c->uri_for with private paths as strings (e.g.
19      $c->uri_for('controller/action', 'arg1', 'arg2') ) no longer have
20      / encoded to %2F. This is due to $c->uri_for('static', 'css/foo', $bar)
21      which should not be encoded.
22      Calls with an action object (rather than a string), or uri_for action
23      will still encode / in args and captures to %2F
24
25    - The above noted / => %2F encoding in uri_for_action or uri_for with
26      an action object has been fixed to not just encode the first slash in
27      any set of args/captures.
28
29    - nginx and lighttpd FCGI requests with URI encoded sections as the first
30      path part have been fixed to operate correctly.
31
32    - A source of bogus warnings in Catalyst::Component::BUILDARGS has been
33      removed.
34
35   Documentation:
36    - Improve the documentation about -Home and how Catalyst finds the home path
37      for applications.
38    - Various minor typo fixes.
39
40   New features:
41    - Allow passing additional arguments to action constructors.
42
43 5.80018 2010-01-12 22:24:20
44
45   Bug fixed:
46    - Call ->canonical on URI derived from $ENV{REQUEST_URI} to get
47      paths correctly decoded. This bug was previously hidden by a bug
48      in HTTP::Request::AsCGI.
49
50   Documentation:
51    - Clarify that uri_for_action works on private paths, with example.
52    - Clarify documentation about debug
53
54   Deprecations:
55    - Saying use Catalyst::Test; (without an application name or () to stop
56      the importer running is now deprecated and will issue a warning.
57      You should be saying use Catalyst::Test ();
58
59 5.80017 2010-01-10 02:27:29
60
61   Documentation:
62    - Fix docs for ->forward method when passed a class name - this should
63      be a component name (e.g. View::HTML, not a full class name, like
64      MyApp::View::HTML).
65
66   Bug fixes:
67    - --daemon and -d options to Catalyst::Script::FastCGI are fixed.
68    - Fix the debug dump for applications which use Catalyst::Plugin::Session
69      (RT#52898)
70    - Fix regression in the case where mod_rewrite is being used to rewrite
71      requests into a path below your application base introduced with the
72      %2F related fixes in 5.80014_02.
73    - Do not crash on SIGHUP if Catalyst::Engine::HTTP->run is not passed the
74      argv key in the options hash.
75    - Correctly pass the arguments to Catalyst::Script::Server through to
76      Catalyst::Engine::HTTP->run so that the server can restart itself
77      with the correct options on SIGHUP.
78    - Require new MooseX::MethodAttributes to be compatible with Moose
79      versions >= 0.93_01
80    - Require new MooseX::Role::WithOverloading to be compatible with Moose
81      versions >= 0.93_01
82
83   Cleanups:
84     - Stop suppressing warnings from Class::C3::Adopt::NEXT now that most plugins
85       have been updated to not use NEXT. If you get warnings then please upgrade
86       your components or log a bug with the component author if an upgrade is
87       not available. The Class::C3::Adopt::NEXT documentation contains information
88       about how to suppress the warnings in your application if you need to.
89
90 5.80016 2009-12-11 23:23:33
91
92   Bug fixes:
93
94    - Fix slurping a file to work correctly with binary on Win32 in the
95      encoding test controller.
96
97   Bug fixes in the new scripts (for applications which have been upgraded):
98
99    - Allow --restartdirectory as an option for the Server script, for
100      backwards compatibility. (Dave Rolsky)
101    - The --host option for the server script defaulted to localhost, rather
102      than listening on all interfaces, which was the previous default. (Dave
103      Rolsky)
104    - Restore -p option for pid file in the FastCGI server script.
105    - Fix the script environment variables MYAPP_PORT and MYAPP_RELOAD RT#52604
106    - Fix aliasing applications under non-root paths with mod_rewrite in
107      some apache versions where %ENV{SCRIPT_NAME} is set to the real name of
108      the script, by using $ENV{REDIRECT_URL} which contains the non-rewritten
109      URI.
110    - Fix usage display when myapp_create.pl is run with no arguments. RT#52630
111
112   New features:
113
114    - The __MOP__ hash element is suppressed from being dumped fully
115      (and instead stringified) when dumping the error screen to be
116      less packed with information of no use.
117
118   Documentation:
119
120    - Fix Pod nits (RT#52370)
121
122 5.80015 2009-12-02 15:13:54
123   Bug fixes:
124    - Fix bug in Catalyst::Engine which would cause a request parsing to end
125      prematurely in the hypothetical case where calling $engine->read returned
126      the single character '0'.
127    - Fix failing tests when combined with new HTTP::Request::AsCGI
128
129   Documentation:
130    - Improved documentation on read and read_chunk methods in Catalyst::Engine.
131    - Fix reversal of SCRIPT_NAME and PATH_INFO in previously correct nginx
132      FastCGI documentation introduced in _02.
133
134 5.80014_02 2009-12-01 00:55:23
135   Bug fixes:
136    - Fix reporting the wrong Content-Length if the response body is an
137      upgraded string. Strings mean the same thing whether or not they are
138      upgraded, may get upgraded even after they are encoded, and will
139      produce the same output either way, but bytes::length returns too big
140      values for upgraded strings containing characters >127
141    - Fix t/live_fork.t with bleadperl (RT#52100)
142    - Set $ENV{PATH_INFO} from $ENV{REQUEST_URI} combined with
143      $ENV{SCRIPT_NAME} if possible. This is many web servers always fully
144      decode PATH_INFO including URI reserved characters. This allows us to
145      tell foo%2cbar from foo%252cbar, and fixes issues with %2F in paths
146      being incorrectly decoded, resulting in too many path parts (rather
147      than 1 path part containing a /, on some web servers (at least nginx).
148      (RT#50082)
149    - Require new HTTP::Request::AsCGI so that it fully decodes $ENV{PATH_INFO}
150      in non CGI contexts. (RT#50082)
151
152   Refactoring / cleanups:
153    - NoTabs and Pod tests moved to t/author so that they're not run
154      (and then skipped) normally.
155
156   Documentation:
157     - Fix Pod nits in Catalyst::Response (RT#51818)
158
159 5.80014_01 2009-11-22 20:01:23
160
161   Bug fixes:
162    - Filehandle now forced to binmode in CGI and FastCGI engines. This appears
163      to correct some UTF-8 issues, but may break people's code which relies
164      on the old behaviour.
165
166   Refactoring / cleanups:
167    - Plugins which inherit from Catalyst::Controller or Catalyst::Component
168      are deprecated and now issue warnings.
169
170 5.80014 2009-11-21 02:51:14
171
172    Bug fixes:
173     - Require MooseX::MethodAttributes 0.17. This in turn requires new
174       MooseX::Types to stop warnings in Moose 0.91, and correctly supports
175       role combination of roles containing attributed methods.
176     - Catalyst::Dispatcher::dispatch_types no longer throws deprecated warnings
177       as there is no recommended alternative.
178     - Improved the suggested fix warning when component resolution uses regex
179       fallback for fully qualified component names.
180     - Catalyst::Test::local_request sets ->request on the response.
181     - Log flush moved to the end of setup so that roles and plugins which
182       hook setup_finalize can log things and have them appear in application
183       startup, rather than with the first hit.
184     - Require a newer version of LWP to avoid failing tests.
185     - Stop warnings when actions are forwarded to during dispatch.
186     - Remove warnings for using Catalyst::Dispatcher->dispatch_types as this is a
187       valid method to publicly call on the dispatcher.
188     - Args ($c->request->args) and CaptureArgs ($c->request->captrues)
189       passed to $c->uri_for with an action object ($c->action) will now
190       correctly round-trip when args or captures contain / as it is now
191       correctly uri encoded to %2F.
192
193   Documentation:
194     - Document no-args call to $c->uri_for.
195     - Document all top level application configuration parameters.
196     - Clarify how to fix actions in your application class (which is
197       deprecated and causes warnings).
198     - Pod fixes for ContextClosure.
199     - Fix documentation for go/visit to reference captures and arguments
200       in the correct order.
201     - Update $c->forward and $c->state documentation to address scalar
202       context.
203     - Pod fix in Catalyst::Request (RT#51490)
204     - Pod fixes to refer to ::Controller:: rather than ::C:: as the latter
205       is deprecated (RT#51489)
206
207   New features:
208     - Added disable_component_resolution_regex_fallback config option to
209       switch off (deprecated) regex fallback for component resolution.
210     - Added an nginx-specific behavior to the FastCGI engine to allow
211       proper PATH_INFO and SCRIPT_NAME processing for non-root applications
212     - Enable Catalyst::Utils::home() to find home within Dist::Zilla built
213       distributions
214     - Added the Catalyst::Exception::Interface role defining the interface
215       exception classes need to implement.
216     - Added Catalyst::Exception::Basic as a basic implementation of
217       Catalyst::Exception::Interface and made the existing exception classes
218       use it.
219
220   Refactoring / cleanups:
221     - Remove documentation for the case_sensitive setting
222     - Warning is now emitted at application startup if the case_sensitive
223       setting is turned on. This setting is not used by anyone, not
224       believed to be useful and adds unnecessary complexity to controllers
225       and the dispatcher. If you are using this setting and have good reasons
226       why it should stay then you need to be shouting, now.
227     - Writing to $c->req->body now fails as doing this never makes sense.
228
229 5.80013 2009-09-17 11:07:04
230
231    Bug fixes:
232      - Preserve immutable_options when temporarily making a class mutable in
233        Catalyst::ClassData as this is needed by new Class::MOP.
234        This could have potentially caused issues when using the deprecated runtime
235        plugins feature in an application with plugins which define their own new
236        method.
237      - Require new Moose version and new versions of various dependencies
238        to avoid warnings from newest Moose release.
239      - Fix go / visit expecting captures and arguments in reverse order.
240
241   Documentation:
242      - Rework the $c->go documentation to make it more clear.
243      - Additional documentation in Catalyst::Upgrading covering more deprecation
244        warnings.
245
246   Refactoring / cleanups:
247      - Action methods in the application class are deprecated and applications
248        using them will now generate a warning at startup.
249      - The -short option has been removed from catalyst.pl, stopping new
250        applications from being generated using the ::[MVC]:: naming scheme as
251        this is deprecated and generates warnings. RT#49771
252
253 5.80012 2009-09-09 19:09:09
254
255   Bug fixes:
256      - Fix t/optional_http-server.t test.
257      - Fix t/optional_http-server-restart.t test.
258      - Fix duplicate components being loaded at setup time, each component is
259        now loaded at most once + tests.
260      - Fix backward compatibility - hash key configured actions are stored in
261        is returned to 'actions'.
262      - Fix get_action_methods returning duplicate methods when a method is both
263        decorated with method attributes and set as an action in config.
264
265   Refactoring / cleanups:
266      - Reduce minimum supported perl version from 5.8.6 to 5.8.4 as there are
267        many people still running/testing this version with no known issues.
268
269   Tests:
270      - Make the optional_http_server.t test an author only test which must be
271        run by authors to stop it being broken again.
272      - Fix recursion warnings in the test suites.
273
274 5.80011 2009-08-23 13:48:15
275
276   Bug fixes:
277       - Remove leftovers of the restarter engine. The removed code caused test
278         failures, which weren't apparent for anyone still having an old version
279         installed in @INC.
280
281 5.80010 2009-08-21 23:32:15
282
283   Bug fixes:
284       - Fix and add tests for a regression introduced by 5.80008.
285         Catalyst::Engine is now able to send out data from filehandles larger
286         than the default chunksize of 64k again.
287
288 5.80009 2009-08-21 22:21:08
289
290   Bug fixes:
291       - Fix and add tests for generating inner packages inside the COMPONENT
292         method, and those packages being correctly registered as components.
293         This fixes Catalyst::Model::DBIC among others.
294
295 5.80008 2009-08-21 17:47:30
296
297   Bug fixes:
298        - Fix replace_constructor warning to actually work if you make your
299          application class immutable without that option.
300        - Depend on Module::Pluggable 3.9 to prevent a bug wherein components
301          in inner packages might not be registered. This especially affected
302          tests.
303        - Catalyst::Engine::FastCGI - relax the check for versions of Microsoft
304          IIS. Provides compatibility with Windows 2008 R2 as well as
305          (hopefully) future versions.
306        - In tests which depend on the values of environment variables,
307          localise the environment, then delete only relevant environment
308          variables (RT#48555)
309        - Fix issue with Engine::HTTP not sending headers properly in some cases
310          (RT#48623)
311        - Make Catalyst::Engine write at least once when finalizing the response
312          body from a filehandle, even if the write is empty. This avoids fail
313          when trying to send out an empty response body from a filehandle.
314        - Catalyst::Engine::HTTP - Accept a fully qualified absolute URI in the
315          Request-URI of the Request-Line
316
317   Refactoring / cleanups:
318        - Deleted the Restarter engine and its Watcher code. Use the
319          new Catalyst::Restarter in a recent Catalyst::Devel instead.
320        - New unit test for Catalyst::Action 'unit_core_action.t'
321        - Bump minimum supported perl version from 5.8.1 to 5.8.6 as there are
322          known issues with 5.8.3.
323        - Debug output uses dynamic column sizing to create more readable output
324          when using a larger $ENV{COLUMNS} setting. (groditi)
325
326   New features:
327        - Added private_path method for Catalyst::Action
328        - Allow uri_for($controller_instance) which will produce a URI
329          for the controller namespace
330        - Break setup_components into two more parts: locate_components and
331          expand_component_module (rjbs)
332        - Allow Components to return anon classed from their COMPONENT method
333          correctly, and have action registration work on Controllers returned
334          as such by adding a catalyst_component_name accessor for all components
335          which returns the component instance's name to be used when building
336          actions etc.
337        - Adding X-Forwarded-Port to allow the frontend proxy to dictate the
338          frontend port (jshirley)
339        - Added Catalyst::Stats->created accessor for the time at the start of
340          the request.
341
342   Documentation:
343        - Fix POD to refer to ->config(key => $val), rather than
344          ->config->{key} = $val, as the latter form is deprecated.
345        - Clearer docs for the 'uri_for' method.
346        - Fix POD refering to CGI::Cookie. We're using CGI::Simple::Cookie.
347          (Forrest Cahoon)
348
349 5.80007 2009-06-30 23:54:34
350
351   Bug fixes:
352        - Don't mangle query parameters passed to uri_for
353          - Tests for this (Byron Young + Amir Sadoughi)
354        - Inherited controller methods can now be specified in
355          config->{action(s)}
356        - Assigning an undef response body no longer produces warnings
357        - Fix C3 incompatibility bug caused if you use Moose in MyApp.pm and
358          add Catalyst to the right hand side of this in @ISA.
359        - Make Catalyst.pm implement the Component::ApplicationAttribute
360          interface so defining actions in MyApp.pm works again, if the
361          actions have attributes that cause $self->_application to be used
362          (like ActionClass).
363
364   New features:
365        - Add optional second argument to uri_with which appends to existing
366          params rather than replacing them. (foo=1 becomes foo=1&foo=2 when
367          uri_with({ foo => 2 }, { mode => 'append' }) is called on a foo=1
368          URI.
369
370 5.80006 2009-06-29 23:37:47
371
372   Bug fixes:
373         - Revert change to URL encode things passed into $c->uri_for
374           Args and CaptureArgs as this causes breakage to pre-existing
375           applications.
376         - Remove use of Test::MockObject as it doesn't install from CPAN
377           in some environments.
378         - Remove use of dclone to deep copy configs and replace with
379           Catalyst::Utils::merge_hashes which has the same effect, of
380           ensuring child classes don't inherit their parent's config,
381           except works correctly with closures.
382         - Add Class::C3::reinitialize into Catalyst::Test to avoid weird
383           bugs in ctx_request (bokutin in RT#46459)
384         - Fix issues with _parse_PathPrefix_attr method in Catalyst::Controller
385           (jasonk in RT#42816)
386         - Fix bugs with action sorting:
387           - Path actions sorted so that the most specific wins.
388           - Action methods named default and index fixed.
389
390   New features:
391         - Use ~ as prefix for plugins or action classes which are located in
392           MyApp::Plugin / MyApp::Action (mo)
393         - Controller methods without attributes are now considered actions if
394           they are specified in config->{action(s)} (mo)
395         - Add Catalyst::Component::ContextClosure as an easy way to create code
396           references, that close over the context, without creating leaks.
397
398   Refactoring / cleanups:
399         - Clean namespaces in Catalyst::Exception*.
400         - Turn Catalyst::Exception into an actual class and make the throw
401           method create instances of it. They can still be used as normal
402           strings, as before, as they are overloaded to stringify to their
403           error message.
404         - Add a rethrow method to Catalyst::Exception.
405         - Add Catalyst::Exception::Detach and ::Go, and refactor detach() and
406           go() to use them instead of magic, global strings.
407           Fixes RT#47366
408         - Clean up getting metaclass instance and making app class immutable
409           again in Catalyst::Test
410
411 5.80005 2009-06-06 14:40:00
412
413   Behaviour changes:
414         - Arguments ($c->req->args) in Chained dispatch are now automatically
415           URL decoded to be consistent with Local/Path dispatch
416
417   Documentation:
418         - Clarify correct techniques for Moose controllers (domm)
419
420   Bug fixes:
421         - Further change pushing 'env' attribute down into Catalyst::Engine
422           to make $c->engine->env work in all cases (kmx)
423         - Also fix $c->engine->env in Catalyst::Test tests (kmx)
424           - Tests for this
425         - Fix Catalyst failing to start if any plugin changed $_ whilst
426           loading
427           - Tests for this
428         - Be stricter about arguments to Args attributes for Chained actions,
429           so that they blow up on load instead of causing undefined behavior
430           later on
431           - Tests for this
432         - Prefer Path actions with a smaller (or set) number of Args (caelum)
433           Bug reported here: http://stackoverflow.com/questions/931653/catalyst-action-that-matches-a-single-file-in-the-root-directory/933181#933181
434           - Tests for this
435
436    New features:
437         - Add $c->req->remote_user to disambiguate from $c->req->user (dwc)
438         - Require MooseX::MethodAttributes 0.12 so that action methods
439           (with attributes) can be used in / composed from Moose roles.
440         - Allow the generation of cookies with the HTTPOnly flag set
441           in Catalyst::Engine (kmx)
442
443 5.80004 2009-05-18 17:03:23
444         - Rename the actions attribute in Catalyt::Controller to
445           _controller_actions to avoid name clashes with application
446           controller naming. (random)
447         - Test for using Moose in components which have a non-Moose base class
448           Fixed by 349cda in Moose 0.78
449         - Fix deprecation message for Catalyst::Dispatcher to refer
450           to the class actually calling the deprecated method. RT#45741
451         - Clarify limitations of $request->base and $request->secure.
452           (Phil Mitchell)
453         - Add 'use Catalyst' to documentation for a Moose MyApp class as
454           noted by dmaki.
455         - Fix so that / (and other special characters) are URL encoded when
456           passed into $c->uri_for as Args/CaptureArgs
457         - Fix development server so that $c->engine->env returns the correct
458           environment
459         - Require Moose 0.78 to fix metaclass incompatibility issues
460         - Require MooseX::MethodAttributes 0.10 and use
461           Moose::Meta::Class->initialize rather than Moose->init_meta to fix
462           bugs related to having a 'meta' method in your controller
463         - Fix cases where your application failing to compile could cause perl
464           to report 'Unknown Error'
465         - Support adding Moose::Roles to the plugin list. These are applied to
466           MyApp after plugins have been pushed onto @ISA
467         - Fix calling $c->req->parameters as the first thing you do when
468           parse_on_demand is on
469
470 5.80003 2009-04-29 16:23:53
471         - Various POD tweaks. (hdp, dandv)
472         - Fix formatting error in the regex fallback warning.
473         - Convert the dispatcher's and restarter engine's BUILD method to
474           attribute builders to not override the BUILD method from
475           MooseX::Emulate::Class::Accessor::Fast.
476         - Fix classes without metaclasses restarting, when not using
477           B::Hooks::OP::Check::StashChange
478         - Fix the unattached chain debug table for endpoints with no
479           parents at all.
480         - Turn off test aggregation by default. Only aggregate if the
481           AGGREGATE_TESTS environment variable is set and a recent
482           Test::Aggregate is available.
483         - Bump to MooseX::MethodAttributes 0.09, to gain the
484           get_nearest_methods_with_attributes method allowing methods without
485           attributes in a subclass to override those with attributes in a
486           superclass. This fixes CatalystX::CRUD's method of overriding /
487           disabling functionality from base controllers.
488         - Bump HTTP::Request::AsCGI dependency to avoid broken version
489         - Bump Moose dependency to latest version to fix metaclass
490           incompatibility issues in some cases.
491         - Additional tests for setup_stats method.
492         - Fix log levels in Catalyst::Log to be properly additive.
493         - Fix RT#43375 by sorting results before testing them
494         - Fixes for uri_for_action when using Catalyst::DispatchType::Regex
495           + tests from RT#39369 (norbi)
496         - Partial rewrite and reoganisation of the C3 docs in
497           Catalyst::Upgrading based on feedback from kiffin
498         - If you make your application class immutable and turn off
499           constructor inlining, Catalyst will die and tell you pass
500           the (replace_constructor => 1) argument to
501           make_immutable. (Dave Rolsky)
502
503 5.80002 2009-04-22 01:28:36
504         - Fix CATALYST_DEBUG and MYAPP_DEBUG environment variables
505           turning debuging on if defined, rather than if set.
506           They now force debugging on or off, taking precedence over
507           configuration in your application.
508           - Tests for this
509         - pass replace_constructor to the immutable call to ensure
510           applications get a Moose constructor rather than a C::A one
511         - Fix issues with restarting the application class due to C3 failures
512           on perl 5.10
513         - Work around issues in Moose with initialization order of multiple
514           levels of non-Moose classes inheriting from a Moose class
515           - Test for this
516         - Add backwards compatibility method for Catalyst::Log->body, which
517           has been made private
518         - Fix so that calling $c->req->parameters(undef) does not flatten
519           the request parameters with undef + test
520         - Fix so that width of table of unattached actions for debugging
521           ::DispatchType::Chained varies according to your terminal width
522           (Oleg Kostyuk)
523         - Fix warning message about linearized @ISA in Catalyst::Component
524           (Emanuele Zeppieri)
525         - Require MX::MethodAttributes 0.06 to avoid issues with saying
526           use base 'Catalyst::Controller'; use Moose; losing actions
527         - Fix all of's typos in ::Upgrading and ::Delta (hobbs)
528
529 5.80001 2009-04-18 22:18
530         - Don't inline the constructor for Catalyst::Log to avoid a
531           warning on recent Moose versions.
532         - Add delta documentation
533         - Clean up recursion errors
534         - Extra cross links in dispatch types POD (Ian Wells)
535         - Test uri_with clears query params when they are set to undef
536           (Ian Wells)
537         - Complain about old Catalyst::Devel versions which generated
538           ->setup(qw/-Debug... etc. as this is not recommended
539
540 5.8000_07 2009-04-12 13:37
541         - Add the Catalyst::Dispatcher->dispatch_type method (ash)
542         - Throw an exception rather than loading an app if an action
543           tries to chain to itself
544           - Tests for this
545         - Change the $c->visit and $c->go methods to optionally take
546           CaptureArgs, making them useful to call ActionChains with
547           - Tests for this (radek)
548         - Fix _invoke_as_component method to find the proper action instance
549           for dispatchable actions so that ->visit or ->going to ActionChains
550           with qw/Class::Name method_name/ works correctly
551           - Tests for this (radek)
552         - Added Catalyst::Test::ctx_request to be able to inspect
553           the context object after a request is made (Jos Boumans)
554         - debug() POD rewrite (jhannah)
555         - Change the warning when you have conflicting components to
556           present a list
557         - Move NEXT use and testing deprecated features out to its own
558           test application so that the main TestApp isn't polluted with
559           spurious warnings
560         - Add a warning for the old ::[MVC]:: style naming scheme
561           - Test for this
562         - Kill Class::C3::Adopt::NEXT warnings for the Catalyst:: namespace
563           in production versions
564         - Tidy up Catalyst::ClassData to ensure that all components get
565           the correct metaclass
566         - Make MyApp.pm restartable by unsetting setup_finished in
567           the restarter process
568         - Non-naive implementation of making mutable on restart using
569           B::Hooks::OP::Check::StashChange if installed
570           - Tests for this
571         - Naive implementation of making all components mutable in the
572           forked restart watcher process so native Moose apps using
573           immutable restart correctly.
574           - Tests for this
575         - Bump Moose dependency to 0.70 so that we avoid nasty surprises
576           with is_class_loaded and perl 5.80 when you Moosify MyApp.pm
577         - Clarify that request arguments aren't unescaped automatically
578           (Simon Bertrang) (Closes RT#41153)
579         - Don't require C3 for the MRO test
580         - Bump MX::Emulate::CAF prereq to support list assignment
581         - Remove useless column in chained action debug table.
582         - namespace::clean related cleanups
583         - Import related cleanups and consistency fixes
584         - Fix test suite TestApp /dump/env action
585         - Add $res->code as alias for $res->status
586         - Make Catalyst::ClassData compatible with the latest Class::MOP::Class
587           changes. Also depend on the latest Class::MOP.
588         - Add $c->uri_for_action method.
589         - Don't stringify the meta method. Use its name instead.
590         - Use MooseX::MethodAttributes::Inheritable to contain action
591           attributes. This means that attributes are now represented in the MOP,
592           allowing method modifiers on actions to work as expected.
593         - Provide a reasonable API in Catalyst::Controller for working with
594           and registering actions, allowing a controller sub-class to replace
595           subroutine attributes for action declerations with an alternate
596           syntax.
597         - Instantiate correct sub-class of Moose::Meta::Class for non-Moose
598           components where Catalyst forces the creation of a metaclass instance.
599           This is more correct, and avoids metaclass incompatibility in complex
600           cases
601           - Tests for this
602         - Use of deprecated Catalyst::Base now warns.
603         - Add uri_with tests
604
605 5.8000_06 2009-02-04 21:00
606         - Disallow writing to config after setup
607         - Disallow calling setup more than once
608         - Documentation fix regarding overloading of Engine and Dispatcher
609           instances
610         - Several documentation typo fixes
611         - Stop Makefile.PL from warning about versions that fixed a conflict
612         - Improved upgrading documentation
613         - Seed the RNG in each FastCGI child process (Andrew Rodland)
614         - Properly report dynamic bind port for the development server
615           (Closes RT#38544)
616         - Use the way documented by IO::Socket::INET to get the error message
617           after trying to create a listening socket (Closes RT#41828)
618         - Don't ignore SIGCHLD while handling requests with the dev server
619           (Closes RT#42962)
620
621 5.8000_05 2008-29-01 00:00
622         - Text::SimpleTable's go as wide as $ENV{COLUMNS} (jhannah)
623           Patch written by Oleg Kostyuk <cub.uanic@gmail.com>
624         - Improve docs for visit (mateu)
625         - Add docs for finalize hook (dhoss)
626         - Added ru/ua translations to error page
627         - Improve the clarity and verbosity of the warning when component
628           resolution uses regex fallback. (jhannah)
629         - Handle leading CRLF in HTTP requests sometimes sent by IE6 in
630           keep-alive requests.
631         - Fixes for FastCGI with IIS 6.0 (janus)
632         - Passing request method exported by Catalyst::Test an extra
633           parameter used to be ignored, but started breaking if the parameter
634           was not a hash in 5.8000_04. Extra parameter is now ignored if
635           it isn't a hashref
636         - Fix request argumentss getting corrupted if you override the
637           dispatcher and call an action which detaches (for
638           Catalyst::Plugin::Authorization::ACL)
639         - Fix calling use Catalyst::Test 'MyApp' 'foo' which used to work,
640           but stopped as the 2nd parameter can be an options hash now
641         - Bump Moose dependency to fix make_immutable bug
642         - Use compile time extends in Catalyst::Controller
643         - Make Catalyst::Request::uploads attribute non-lazy, to fix
644           test for Catalyst-Engine-Apache
645         - Bump version of MooseX::Emulate::Class::Accessor::Fast
646         - Stop using MooseX::Adopt::Class::Accessor::Fast by default, to stop
647           breaking other packages which use Class::Accessor::Fast
648         - Remove unused action_container_class attribute from
649           Catalyst::Dispatcher
650         - Replace {_body} instance access with calls to _body accessors
651         - Add backwards compatibility alias methods for private attributes on
652           Catalyst::Dispatcher which used to be public. Needed by
653           Catalyst::Plugin::Server and  Catalyst::Plugin::Authorization::ACL
654         - Fix return value of $c->req->body, which delegates to the body
655           method on the requests HTTP::Body instance
656           - Test for this
657         - Fix calling $c->req->body from inside an overridden prepare_action
658           method in a plugin, as used by Catalyst::Plugin::Server
659           - Test for this
660         - Fix assignment to Catalyst::Dispatcher's preload_dispatch_types and
661           postload_dispatch_types attributes - assigning a list should later
662           return a listref. Fixes Catalyst::Plugin::Server.
663           - Tests for this
664         - Change streaming test to serve itself rather than 01use.t, making
665           test sync for engines easier
666         - Refactor capturing of $app from Catalyst::Controller into
667           Catalyst::Component::ApplicationAttribute for easier reuse in other
668           components
669         - Make the test suites YAML dependency optional
670         - Make debug output show class name for the engine and dispatcher
671           rather than the stringified ref.
672         - Make MyApp immutable at the end of the scope after the setup
673           method is called, fixing issues with plugins which have their
674           own new methods by inlining a constructor on MyApp
675           - Test for this and method modifiers in MyApp
676         - Fix bug causing Catalyst::Request::Upload's basename method
677           to return undef
678           - Test for this (Carl Franks)
679         - Fix loading of classes which do not define any symbols to not
680           die, as it didn't in 5.70
681           - Test for this
682         - Bump MooseX::Emulate::Class::Accessor::Fast dependency
683           to force new version which fixes a lot of plugins
684         - Make log levels additive, and add documentation and tests
685           for the setup_log method, which previously had none.
686           Sewn together by from two patches provided by David E. Wheeler
687         - Switch an around 'new' in Catalyst::Controller to a BUILDARGS
688           method as it's much neater and more obvious what is going on
689         - Add a clearer method on request and response _context
690           attributes, and use if from ::Engine rather than deleting
691           the key from the instance hash
692         - Use handles on tree attribute of Catalyst::Stats to replace
693           trivial delegation methods
694         - Change the following direct hash accesses into attributes:
695           Catalyst::Engine: _prepared_write
696           Catalyst::Engine::CGI: _header_buf
697           Catalyst::Engine::HTTP: options, _keepalive, _write_error
698           Catalyst::Request: _path
699           Catalyst::Stats: tree
700         - Fix issues in Catalyst::Controller::WrapCGI
701           and any other components which import (or define) their
702           own meta method by always explicitly calling
703           Class::MOP::Object->meta inside Catalyst
704           - Add test for this
705         - Add test case for the bug which is causing the
706           Catalyst::Plugin::Authentication tests to fail
707         - Fix a bug in uri_for which could cause it to generate paths
708           with multiple slashes in them.
709           - Add test for this
710         - Fix SKIP block name in t/optional_http-server-restart.t,
711           stopping 'Label not found for "last SKIP"' error from
712           Test::More
713         - Workaround max_redirect 0 bug in LWP
714         - Move live_engine_response_print into aggregate
715         - Fix dependency bug, s/parent/base/ in new test
716         - Fix optional tests to run the live tests in the aggregate
717           dir
718         - Fix Catalyst->go error in remote tests
719         - Fix upload test to work with remote servers, don't check for
720           deleted files
721         - Fix engine_request_uri tests to work on remote server with
722           different URI
723
724 5.8000_04  2008-12-05 12:15:00
725         - Silence Class::C3::Adopt::NEXT warnings in the test suite
726         - Fix loads of 'used once, possible typo' warnings
727         - Additional tests to ensure upload temp files are deleted
728         - Remove use of NEXT from the test suite, except for one case
729           which tests if Class::C3::Adopt::NEXT is working
730         - Use a predicate to avoid recursion in cases where the uri
731           method is overridden by a plugin, and calls the base method,
732           for example Catalyst::Plugin::SmartURI
733           - Test for this (caelum)
734         - Compose the MooseX::Emulate::Class::Accessor::Fast role to
735           Catalyst::Action, Catalyst::Request, and all other modules which
736           inherit from Class::Accessor::Fast in 5.70.
737           This fixes:
738             - Catalyst::Controller::HTML::FormFu (zamolxes)
739             - Catalyst::Request::REST
740           - Test for this
741         - Make hostname resolution lazy (Marc Mims)
742         - Support mocking virtualhosts in test suite (Jason Gottshall)
743         - Add README
744         - Fix TODO list
745         - Use Class::C3::Adopt::NEXT
746         - Ignore C3 warnings on 5.10 when testing ensure_class_loaded
747         - Add TODO test for chained bug (gbjk)
748         - Fix list address in documentation (zarquon)
749         - Fix ACCEPT_CONTEXT on MyApp, called as a class method
750            - Test for this
751         - Bump MooseX::Emulate::Class::Accessor::Fast version requirement to
752           get more back compatibility
753         - Improve documentation for $req->captures (caelum)
754         - Fix a bug in Catalyst::Stats, stopping garbage being inserted into
755           the stats if a user calls begin => but no end => (jhannah)
756            - Test for this (jhannah)
757         - Trim lines sooner in stats to avoid ugly Text::SimpleTable wrapping
758           (jhannah)
759         - Change Catalyst::ClassData to tweak the symbol table inline for
760           performance after profiling
761         - Fix POD typo in finalize_error (jhannah)
762         - Add tests to ensure that we delete the temp files created by
763           HTTP::Body's OctetStream parser
764
765 5.8000_03 2008-10-14 14:13:00
766         - Fix forwarding to Catalyst::Action objects.
767         - Fix links to the mailing lists (RT #39754 and Florian Ragwitz).
768         - Use Class::MOP instead of Class::Inspector.
769         - Change Catalyst::Test to use Sub::Exporter.
770         - Fixed typo in Engine::HTTP::Restarter::Watcher causing -r to complain.
771
772 5.8000_02 2008-10-14 07:59:00
773        - Fix manifest
774
775 5.8000_01 2008-10-13 22:52:00
776         - Port to Moose
777         - Added test for action stringify
778         - Added test for component instances getting $self->{value} from config.
779         - Add Catalyst::Response->print() method
780         - Optionally aggregate tests using Test::Aggregate.
781         - Additional docs for uri_for to mention how to use $c->action and
782           $c->req->captures (jhannah)
783         - List unattached chained actions in Debug mode.
784         - Pod formatting fix for Engine::FastCGI (Oleg Kostyuk).
785         - Add visit, a returning ->go
786
787 5.7XXXXXX XXXX
788         - Workaround change in LWP that broke a cookie test (RT #40037)
789         - Back out go() since that feature's been pushed to 5.80
790         - Fix some Win32 test failures
791         - Add pt translation of error message (wreis)
792         - Make :Chained('../action') work
793         - Add test actions
794         - Chained doc improvements (rev 8326-8328)
795
796 5.7099_03 2008-07-20 10:10:00
797         - Fix regressions for regexp fallback in model(), view() and controller()
798         - Added the supplied argument to the regexp fallback warning for easier
799           debugging
800         - Ensure ACCEPT_CONTEXT is called for results from component()
801
802 5.7099_02 2008-07-16 19:10:00
803         - Added PathPrefix attribute
804         - Removed Catalyst::Build; we've long since moved to Module::Install
805         - Updated Catalyst::Test docs to mention the use of HTTP::Request
806           objects
807
808 5.7099_01 2008-06-25 22:36:00
809         - Refactored component resolution (component(), models(), model(), et al). We now
810           throw warnings for two reasons:
811           1) model() or view() was called with no arguments, and two results are returned
812              -- set default_(model|view), current_(model|view) or current_(model|view)_instance
813              instead
814           2) you call a component resolution method with a string, and it resorts to a regexp
815              fallback wherein a result is returned -- if you really want to search, call the
816              method with a regex as the argument
817         - remove 0-length query string components so warnings aren't thrown (RT #36428)
818         - Update HTTP::Body dep so that the uploadtmp config value will work (RT #22540)
819         - Fix for LocalRegex when used in the Root controller
820         - Get some of the optional_* tests working from dirs with spaces (RT #26455)
821         - Fix Catalyst::Utils::home() when application .pm is in the current dir (RT #34437)
822         - Added the ability to remove parameters in req->uri_with() by passing in
823           an undef value (RT #34782)
824         - Added $c->go, to do an internal redispatch to another action, while retaining the
825           contents of the stash
826
827 5.7014  2008-05-25 15:26:00
828         - Addition of .conf in restart regex in Catalyst::Engine::HTTP::Restarter::Watcher
829         - Fix regression for relative uri_for arguments after a forward()
830           introduced in 5.7013 (Peter Karman)
831         - Fix regression for "sub foo : Path {}" in the root controller which
832           was introduced when attempting to allow "0" as a Path.
833
834 5.7013  2008-05-16 18:20:00
835         - Provide backwards compatability methods in Catalyst::Stats
836         - Fix subdirs for scripts that run in subdirs more than one level deep.
837         - Added test and updated docs for handling the Authorization header
838           under mod_fastcgi/mod_cgi.
839         - Fixed bug in HTTP engine where the connection was not closed properly if the
840           client disconnected before sending any headers. (Ton Voon)
841         - POD fix, IO::FileHandle => IO::Handle (RT #35690)
842         - Fix grammar on welcome page (RT #33236)
843         - Fix for Path('0') handling (RT #29334)
844         - Workaround for Win32 and c3_mro.t (RT #26452, tested by Kenichi Ishigaki)
845         - Fix for encoding query parameters
846         - Fix Chained multiple test
847
848 5.7012  2007-12-16 23:44:00
849         - Fix uri_for()'s and uri_with()'s handling of multibyte chars
850           (Daisuke Murase)
851         - Fix __PACKAGE__->config->{foo} = 'bar' case with subclassing
852         - Add Catalyst::Stats (Jon Schutz)
853         - Fixed a bug where ?q=bar=baz is decoded as q=>'bar', not 'bar=baz'.
854           (Tatsuhiko Miyagawa, Masahiro Nagano)
855         - Fixed a bug where -rr (restart regex) command line option could cause
856           shell errors. (Aristotle Pagaltzis, Chisel Wright)
857
858 5.7011  2007-10-18 20:40:00
859         - Allow multiple restart directories and added option to follow
860           symlinks in the HTTP::Restarter engine (Sebastian Willert)
861         - Fixed t/optional_http-server-restart.t so it actually tests
862           if the server restarted or notified of an error (Sebastian Willert)
863         - Return child PID from the HTTP engine when run with the 'background' option.
864           (Emanuele Zeppieri)
865         - Fixed bug in HTTP engine where writes could fail with
866           'Resource temporarily unavailable'.
867         - Fixed bug where %2b in query parameter is doubly decoded to ' ', instead of '+'
868           (RT #30087, Gavin Henry, Tatsuhiko Miyagawa, Oleg Pronin)
869         - Fixed bug where req->base and req->uri would include a port number when running
870           in SSL mode.
871         - Removed unnecessary sprintf in debug mode that caused warnings on locales where
872           commas are used for decimal markers.
873         - Improved error message for case when server picks up editor save
874           files as module names. (James Mastros)
875
876 5.7010  2007-08-22 07:41:00
877         - Resource forks in 5.7009
878
879 5.7009  2007-08-22 00:14:00
880         - Moved Manual.pod to Manual.pm and clarified status of
881           Catalyst-Manual dist
882         - Doc patches to Catalyst::Controller
883         - remove ignore_loaded from plugin load, commenting why
884         - document the ignore_loaded feature in Catalyst::Utils
885         - Add testing of inline plugins.
886
887 5.7008  2007-08-13 08:40:00
888         - Added $c->request->query_keywords for getting the keywords
889           (a query string with no parameters).
890         - Add undef warning for uri_for.
891         - Fix bug where a nested component would be setup twice.
892         - Make ensure_class_loaded behave better with malformed class name.
893         - Make _register_plugin use ensure_class_loaded.
894         - Remove 'Argument "??" isn't numeric in sprintf' warning.
895           (Emanuele Zeppieri)
896         - Fixed a bug where Content-Length could be set to 0 if a filehandle
897           object in $c->response->body did not report a size.
898         - Fixed issue where development server running in fork mode did not
899           properly exit after a write error.
900           (http://rt.cpan.org/Ticket/Display.html?id=27135)
901         - Remove warning for captures that are undef.
902         - Fixed $c->read and parse_on_demand mode.
903         - Fixed a bug with the HTTP engine where very large response bodies
904           would not be sent properly.
905
906 5.7007  2007-03-13 14:18:00
907         - Many performance improvements by not using URI.pm:
908           * $c->uri_for (approx. 8x faster)
909           * $c->engine->prepare_path (approx. 27x faster)
910           * $c->engine->prepare_query_parameters (approx. 5x faster)
911         - Updated HTTP::Body dependency to 0.9 which fixes the following issues:
912           * Handle when IE sometimes sends an extra CRLF after the POST body.
913           * Empty fields in multipart/form-data POSTs are no longer ignored.
914           * Uploaded files with the name "0" are no longer ignored.
915         - Sending SIGHUP to the dev server will now cause it to restart.
916         - Allow "0" for a path in uri_for.
917         - Performance and stability improvements to the built-in HTTP server.
918         - Don't ignore file uploads if form contains a text field with the same name.
919           (Carl Franks)
920         - Support restart_delay of 0 (for use in the POE engine).
921         - Skip body processing if we don't have a Content-Length header.
922           Results in about a 9% performance increase when handling GET/HEAD
923           requests.
924         - Add a default body to redirect responses.
925         - MyApp->model/view now looks at MyApp->config->{default_view/model}
926           (Bogdan Lucaciu)
927
928 5.7006   2006-11-15 14.18
929         - Updated manifest
930         - Fix Slurp dependency
931         - Updated HTTP::Body dependency to 0.6, 0.5 can break on large POST
932           requests.
933         - Skip utf8 fix for undef values in uri_with() and uri_for()
934
935 5.7005   2006-11-07 19:37:35
936         - Fixed lighttpd tests to be properly skipped.
937         - Moved IE workarounds to exist only in the HTTP engine.
938         - Added installation instructions (from Catalyst-Manual dist)
939
940 5.7004   2006-11-06 20:48:35
941         - Fix Engine::HTTP crash when using IE. (Jesper Krogh, Peter Edwards)
942         - clean up Catalyst::Utils to handle some edge cases
943         - Properly work around lighttpd PATH_INFO vs. SCRIPT_NAME bug
944           (Mark Blythe)
945         - add _application accessor to Catalyst::Base
946         - Support current_view
947         - Allow use of Catalyst::Test without app name (Ton Voon, Altinity)
948         - Catalyst::Manual moved to its own package
949         - Add option to FastCGI engine to send errors to stdout, not the web server
950         - Use Module::Install's auto_install to install prerequisite modules
951         - various documentation fixes and improvements
952
953 5.7003   2006-09-21 16:29:45
954         - Additions and updates to tutorial
955
956 5.7002   2006-09-17 19:35:32
957         - unescape captures to match args
958         - fix for relative Chained under namespace '' (root)
959         - fix for hashrefs in action attributes from config
960         - fix for Chained to require correct number of CaptureArgs
961
962 5.7001   2006-07-19 23:46:54
963         - fix for component loading
964         - uri_for and uri_with now behave as they used to with non-
965           array references
966
967 5.7000   2006-07-07 08:08:08
968         - fix FCGI.pm warning message with FastCGI engine
969         - bumped inc::Module::Install to 0.63 in Makefile.PL
970         - fixes to uri_for_action for DispatchType::Chained
971         - Further doc work.
972         - Minor code cleanups
973         - Changed catalyst.pl to depend on Catalyst::Devel
974
975 5.70_03  2006-06-28 16:42:00
976         - fixup to registered plugins debug at app startup
977         - refactored Catalyst::Utils::home
978
979 5.70_02  2006-06-27 11:51:00
980         - Updated tutorial.
981
982 5.70_01  2006-06-26 10:49:00
983
984         - fixed a Catalyst::Base bug causing duplicate action registrations
985         - modified DispatchTypes to support multiple registrations
986         - added Catalyst::Runtime module as dist marker
987         - added Catalyst::ActionChain and Chained DispatchType
988         - removed retarded registration requirement in dispatcher
989         - removed Module::Pluggable::Fast hack in favor of
990           Module::Pluggable::Object
991         - extended uri_for, added dispatcher->uri_for_action
992         - added Catalyst::Base->action_for('methodname')
993         - checked and tested :Args multimethod dispatch
994         - added ability to set action attributes from controller config
995         - added merge_config_hashes() as a convenience method
996         - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
997         - Removed test dependencies on Test::NoWarnings, Test::MockObject
998         - Removed dependency on UNIVERSAL::require
999         - Split out Catalyst::Helper into a new distribution
1000         - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
1001         - nuked each() out of core with prejudice (due to lurking buglets)
1002         - Added tests from phaylon for dispatcher precedence
1003         - Use Class::Inspector->loaded($class) instead of $class->can('can')
1004         - Added ActionClass attribute
1005         - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
1006         - Updated docs for Catalyst::Component
1007         - Separated execute and dispatch on Catalyst::Action
1008         - cleaned up logging and debug output
1009         - significant documentation revisions
1010         - Added warning for setup being called twice
1011         - Fix pod to use DBIC::Schema instead of DBIC model
1012         - Fix ->config failing to copy _config for subclassing
1013         - Updated log format
1014         - Updated debug dump
1015
1016 5.6902  2006-05-04 13:00:00
1017         - Remove tarballs and OSX metadata files.
1018
1019 5.6901  2006-05-03 11.17:00
1020         - Module::Install didn't overwrite META.yml.
1021
1022 5.6900  2006-05-03 11.17:00
1023         - Stupid pause indexer can't count.
1024         - Better fix for Catalyst::Test
1025         - more tests.
1026
1027 5.682   2006-04-27 13:51:00
1028         - Damn OSX attributes again :(
1029
1030 5.681   2006-04-27 08:47:00
1031         - Updated manifest.
1032         - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
1033
1034 5.68    2006-04-26 12:23:00
1035         - ConfigLoader: Updated to version 0.06
1036         - fixed undef warnings in uri_for() and uri_with()
1037         - Fixed Catalyst::Test to report errors on failed Class load
1038
1039 5.678   2006-04-24 12:30:00
1040         - Re-release of 5.67 without OSX metadata files.
1041
1042 5.67    2006-04-23 08:50:00
1043         - Added $c->req->uri_with() helper
1044         - ConfigLoader: Updated to version 0.05
1045         - Fix up Engine to avoid a new 5.8.8 warning
1046         - Added app name with :: support for PAR
1047         - Added $c->models/views/controllers
1048         - Static::Simple: Unescape the URI path before looking for the file.
1049           This fixes issues with files that have spaces.
1050         - Looping and recursion tests plus a fix
1051         - Added lots of API documentation. Refactored main pod.
1052         - Changed default behaviors for $c->model/$c->controller/$c->view
1053           to more sane settings.
1054         - added the clear_errors method - an alias for error(0)
1055         - Added tmpdir option for uploads (woremacx)
1056         - Applied patch from GEOFFR to allow normal filehandles.
1057         - Refactored Dispatcher internals for better readability and speedup
1058           (stress tests run 12% faster)
1059         - Allow $c->error to run as a class method
1060
1061 5.66    2006-03-10 17:48:00
1062         - Added Test::WWW::Mechanize::Catalyst support
1063         - Cleaned generated tests
1064         - Added Root controller concept
1065         - Updated ConfigLoader plugin to version 0.04
1066
1067 5.65    2006-02-21 10:34:00
1068         - Added plugin introspection.
1069         - Support optional hashref as last param for parameters in uri_for.
1070         - Updated tutorial to be more complete.
1071         - Applied args patch from antirice (Fixes Ticket #67)
1072
1073 5.64    2006-02-07 20:29:00
1074         - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
1075           was not run. (Eric Wong)
1076         - Cleaned up generated tests
1077         - Updated YAML support to use ConfigLoader
1078         - Fixed path dispatch to canonicalise correctly
1079             (see http://dev.catalyst.perl.org/ticket/62)
1080         - Added Catalyst::Manual::About
1081
1082 5.63    2006-01-22 00:00:00
1083         - Updated prereq versions
1084
1085 5.62    2006-01-17 16:30:00
1086         - Large update to the tutorial (castaway)
1087         - Added YAML config support
1088         - Added COMPONENT() and ACCEPT_CONTEXT() support
1089         - Action list in debug mode is now displayed as a tree in the
1090           correct execution order.
1091         - Fixed engine detection to allow custom mod_perl engines.
1092         - Static::Simple: Fixed bug in ignore_dirs under win32.
1093         - Display version numbers of loaded plugins. (Curtis Poe)
1094         - Added class and method for caught exception messages.
1095         - Updated PAR support to use "make catalyst_par",
1096           packages are no longer written by Makefile.PL.
1097         - Automatically determine Content-Length when serving a
1098           filehandle.
1099         - Exceptions now return status 500.
1100         - Updated for Module::Install 0.44.
1101         - Fixed additional file installation for multi level app names.
1102         - Added REDIRECT_URL support for applications running behind
1103           a RewriteRule in Apache. (Carl Franks)
1104         - Fixed FastCGI engine under win32. (Carl Franks)
1105         - FastCGI doc updates (Bill Moseley)
1106         - Bugfix for $c->model and friends (defined).
1107
1108 5.61    2005-12-02 00:00:00
1109         - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
1110
1111 5.60    2005-12-01 22:15:00
1112         - Fixed Path and index actions in the appclass,
1113           including those that attach to /
1114         - Index is now weighted higher than Path
1115         - Fixed restarter and -d debug switch in server.pl.
1116         - Added a warning if you attempt to retrieve a parameter
1117           using $c->req->params('foo').
1118         - Fixed the Module::Install::Catalyst @ISA bug
1119
1120 5.59    2005-11-30 13:25:00
1121         - Fixed shebang line for generated scripts
1122         - Fixed forward to classes ($c->forward(qw/MyApp foo/))
1123         - Wrap use block in begin to quelch C:C3 warnings
1124         - Removed scrollbar from debug output
1125         - Fixed catalyst_par_core() and catalyst_par_multiarch()
1126
1127 5.58    2005-11-24 10:51:00
1128         - Added ExtUtils::AutoInstall support
1129         - Allow overriding path in Catalyst::Helper.
1130         - Added -makefile to catalyst.pl to generate a new Makefile.PL.
1131         - Restored Catalyst::Build with a deprecation notice.
1132         - Improved PAR support
1133         - Replaced -short with auto-detection
1134         - Fixed prereqs, added File::Copy::Recursive
1135         - Static::Simple changes:
1136             - Made prepare_action play nice with other plugins by not short-
1137               circuiting.
1138             - Added tmpl to the ignored extensions.
1139             - Fixed security problem if req->path contained '..'.
1140
1141 5.57    2005-11-20 22:45:00
1142         - Updated uri_for to accept undef actions
1143         - Switched to Module::Install
1144         - Renamed tests for easier editing
1145         - Reformatted documentation
1146         - Renamed -nonew to -force
1147         - Added PAR support
1148         - Added keep-alive support and bug fixes to HTTP engine.
1149           (Sascha Kiefer)
1150         - Added daemonize option to FastCGI engine. (Sam Vilain)
1151
1152 5.56   2005-11-16 10:33:00
1153         - Fixed FastCGI engine to not clobber the global %ENV on each
1154           request. (Sam Vilain)
1155         - Updated benchmarking to work with detach
1156         - Fixed dispatcher, so $c->req->action(undef) works again
1157         - Updated Catalyst::Test to use HTTP::Request::AsCGI
1158         - Added -pidfile to external FastCGI server.
1159
1160 5.55    2005-11-15 12:55:00
1161         - Fixed multiple cookie handling
1162
1163 5.54    2005-11-14 22:55:00
1164         - Fixed a Module::Pluggable::Fast related bug
1165
1166 5.53    2005-11-14 15:55:00
1167         - Removed t/04prereq.t that was testing for non-required
1168           modules.
1169
1170 5.52    2005-11-14 10:57:00
1171         - Strip '..'s in static urls to fix security issue.
1172
1173 5.51    2005-11-14 00:45:00
1174         - Changed uri_for to use namespace instead of match.
1175
1176 5.50    2005-11-13 20:45:00
1177         - Fixed minor bugs.
1178         - Updated docs.
1179
1180 5.49_05 2005-11-12 20:45:00
1181         - Large update to the documentation. (David Kamholz)
1182         - Fixed args handling in forward()
1183         - Fixed forwarding to classes
1184         - Fixed catalyst.pl-generated Build.PL Makefile section.
1185         - Fixed relative forwarding
1186         - Fixed forward arrows in debug output
1187
1188 5.49_04 2005-11-09 23:00:00
1189         - Made context, dispatcher, engine, request and response classes
1190           configurable.
1191         - Added $c->stack.
1192         - Fixed dispatcher to ignore unknown attributes.
1193         - Improved format of startup debug log.
1194         - Updated built in server to restart on win32. (Will Hawes)
1195         - Fixed streaming write from a filehandle to stop writing
1196           if the browser is closed.
1197         - Added $c->controller, $c->model and $c->view shortcuts.
1198         - Switched to Text::SimpleTable.
1199
1200 5.49_03 2005-11-03 12:00:00
1201         - Fixed $c->req->{path} for backwards-compatibility.
1202         - Allow debug to be disabled via ENV as well as enabled.
1203         - Added -scripts option to catalyst.pl for script updating
1204         - Changed helpers to default to long types, Controller instead of C
1205         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
1206           base classes
1207         - Added JavaScript to debug screen to show and hide specific dumps
1208         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
1209         - Added multi process external FastCGI support
1210           (see myapp_fastcgi.pl -help) (Sam Vilain)
1211         - Restarter process in HTTP engine now properly exits when the
1212           parent app is shut down.
1213         - Improved performance of restarter loop while watching for
1214           changed files.
1215         - Restarter will now detect new files added to an app on systems
1216           that change directory mtimes when new files are created.
1217         - Restarter now properly handles modules that are deleted from an
1218           application.
1219         - Fixed memory leak in TestApp.
1220
1221 5.49_02 2005-10-26 12:39:00
1222         - Whole new dispatcher!
1223         - Added index action
1224         - Added path_to method
1225         - Added support for passing an IO::Handle object to $c->res->body.
1226           (Andrew Bramble)
1227         - Added a new welcome screen.
1228         - Included Catalyst buttons and icons in helper.
1229         - Added Static::Simple plugin to core.
1230         - Added self restarting test server
1231         - Added filename to debug output for uploaded files.
1232         - Fixed forwarding with embedded arguments.
1233         - Fixed handling of escaped query strings.
1234         - Added upload parameters back into $c->req->params.
1235         - Added multiple paths support to dispatcher
1236         - Fixed bug in req->path where changing the path added a trailing
1237           slash.
1238         - Removed req->handle and res->handle
1239         - Added prepare_body_chunk method as a hook for upload progress.
1240         - Fixed bug in uri_for method when base has no path.
1241         - Added automated tests for HTTP, CGI, and FastCGI servers.
1242
1243 5.49_01 2005-10-10 10:15:00
1244         - Refactored all internals, should be 99% compatible to previous
1245           versions.
1246         - *IMPORTANT* The Apache engines have been moved to a separate package
1247           for this release.  Please install Catalyst::Engine::Apache if you
1248           need Apache support.
1249
1250         - Added support for calling forward with arguments in the path, i.e.
1251           $c->forward('/foo/bar/arg1/arg2')
1252         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
1253           Raw query string is available as $c->req->uri->query.
1254         - Made $c->req->base a URI object.
1255         - Parameters with multiple values (?a=1&a=2) now display properly
1256           in the debug output.
1257         - Semi-colon separators in query strings now work properly.
1258         - Expanded documentation of catalyst.pl (Andrew Ford)
1259         - Added support for running as a backend server behind a frontend
1260           proxy so req->base and req->address are set properly.
1261         - Added an 'abort' method to the Log api, so that you can
1262           kill loggging for a whole request.
1263         - Added $c->uri_for method to simplify url handling.
1264         - Added more tests and reorganized the t directory.
1265         - Reimplemented core engines, all are now CGI based for better test
1266           coverage and maintainability.
1267         - Added fork support to built in test server.
1268         - Fixed all memory leaks.
1269         - Thread-related bug fixes and tests.  We now believe the Catalyst
1270           core to be thread-safe.
1271         - Added streaming IO support through $c->req->read() and
1272           $c->res->write()
1273         - Added MyApp->config->{parse_on_demand} (streaming input)
1274         - Added $c->req->handle and $c->res->handle
1275         - Improved documentation
1276         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
1277         - Fixed bug in dispatcher where an invalid path could call a valid
1278           action. (Andy Grundman)
1279         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
1280
1281 5.33  2005-08-10 15:25:00
1282         - Now with updated manifest.
1283
1284 5.32  2005-08-10 15:10:00
1285         - Dispatcher might fail if object returns false.
1286
1287 5.31  2005-06-04 12:35:00 (never released to CPAN)
1288
1289         - helpers now create .new files where files already exist and differ
1290         - fixed $Data::Dumper::Terse (Robin Berjon)
1291         - added arguments for detach
1292         - new credits section in POD
1293         - fixed detach to allow relative action names (Matt and Robert)
1294         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
1295
1296 5.30  2005-06-04 12:35:00
1297
1298         - Fixed a bug where it was not possible to $c->forward to a
1299           component
1300           that was not inheriting from Catalyst::Base.
1301         - Fix for inheritance bug.
1302         - Allow forward with arguments.
1303         - Updated cookbook
1304         - Allow overriding home/root in config.
1305         - make module build cons README automatically.
1306         - prettify home path by resolving '..' (Andy Grundman)
1307         - improved helper templates a bit, new naming scheme for tests.
1308         - added support for case sensitivity, MyApp->config->{case_sensitive}
1309         - added $c->detach for non-returning forwards
1310         - added unified error handling, Catalyst::Exception
1311         - added section on param handling in Intro.pod
1312         - added $c->request->cookie
1313         - added Catalyst::Setup
1314         - refactored Catalyst::import()
1315         - improved rendering of error messages in debug mode
1316         - fixed a bug in Catalyst::Helper::mk_dir
1317         - further doc changes, esp. to Intro.pod
1318
1319 5.23  2005-06-03 02:30:00
1320         - added support for non Catalyst::Base components to live in namespace
1321         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
1322
1323 5.22  2005-05-26 14:24:00
1324         - improved base locating in MP engines
1325         - improved error messages in C::E::HTTP::Daemon
1326         - hostnames are now resolved on demand unless provided by engine
1327         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
1328
1329 5.21  2005-05-24 14:56:00
1330         - fixed a bug in https detection
1331         - fixed auto chain finally
1332         - added MYAPP_HOME and CATALYST_HOME environment variables
1333
1334 5.20  2005-05-18 19:52:00
1335         - improved uploads and parameters
1336         - added $c->req->protocol and $c->req->secure
1337         - added $c->req->user and $c->req->uri
1338         - improved error message when forwarding to unknown module
1339         - fixed win32 installer
1340         - added deep recursion detection
1341         - fixed auto actions
1342         - fixed inheritance in dispatcher
1343         - allow whitespaces between brackets and quoted string
1344           in Path and Regex attributes
1345         - new helper templates
1346         - installer now supports install_base and destdir
1347         - allow multiple Catalyst apps to run on the same mod_perl
1348           instance (not the same app!)
1349         - fixed MP2 engines
1350         - removed apreq dependency from all MP engines
1351         - added support for MP registry scripts
1352         - added support for LocationMatch and ScriptAliasMatch in MP engines
1353         - added SpeedyCGI engine
1354
1355 5.10  2005-04-23 11:16:00
1356         - updated dependencies to require latest module::pluggable::fast
1357         - new installer for templates and stuff using Module::Build
1358         - scripts are now prefixed, for being installable
1359         IMPORTANT: You have to regenerate the script directory,
1360         remove Makefile.PL and add Build.PL
1361         - Added compat to install Module::Build if required.
1362         - Improved: Params handling with MP engines
1363         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
1364         - Fixed: Helper.pm on Win32 (Matt S Trout)
1365
1366 5.03  2005-04-19 20:35:00 (Revision 462)
1367         - fixed Test example (Torsten Seeman)
1368         - added Plugins chapter to manual
1369         - applied doc patch from Robert Boone <robert@rlb3.com>
1370         - improved Dispatcher error messages.
1371         - refactored so we don't need to include helper from
1372           Catalyst.pm - Fixes issues with FindBin
1373         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
1374         - added plugin() method for instant plugins
1375         - FCGI is no more considered experimental
1376
1377 5.02  2005-04-18 10:00:00
1378         - fixed manifest
1379
1380 5.01  2005-04-17 23:00:00
1381         - some documentation bugs fixed
1382         - added Catalyst::Utils
1383         - fixed regexp bug (Matt S Trout)
1384         - fixed upload bug with MP19
1385         - added $c->req->body
1386         - aliased $c->res->output to $c->res->body
1387         - Read AUTHOR from passwd or $ENV{AUTHOR} when
1388           generating code.
1389         - extended attribute handling
1390         - added global config for components
1391
1392 5.00  2005-04-15 18:00:00
1393         - new core to support inheritance trees
1394         - new syntax for action declaration
1395         - new helper system using TT2
1396         - problems with mod_perl2 fixed
1397         - added Test::Pod support
1398         - added new server backend with HTTP/1.1 support
1399         - added option to run tests against a remote server
1400         - renamed errors() to error()
1401         - more better docs
1402         - countless minor improvements
1403           IMPORTANT: This release is very incompatible to previous ones
1404           and you have to regenerate the helper scripts again...
1405
1406 4.34  2005-03-23 07:00:00 2005
1407         - added some messages to Makefile.PL
1408         - added Catalyst::Engine::Test
1409         - added Catalyst::Engine::CGI::NPH
1410         - simplified Catalyst::Log to be easier to implement/subclass
1411         - added cgi.pl
1412         - updated Catalyst::Test to use Catalyst::Engine::Test
1413         - updated helper scripts
1414           IMPORTANT: this will be the last time you'll have to regenerate
1415           the script directory. We promise!
1416
1417 4.33  2005-03-23 01:00:00 2005
1418         - documented the log() accessor method in Catalyst (Andrew Ford)
1419         - added optional arguments to Catalyst::Log methods (Andrew Ford)
1420         - removed cgi-server.pl
1421         - added fcgi.pl and Catalyst::Engine::FCGI
1422         - fixed an undef durng make test (Dan Sully)
1423         - new path test (Christian Hansen)
1424           IMPORTANT: you have to regenerate the script directory again
1425
1426 4.32  2005-03-22 02:10:00 2005
1427         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
1428
1429 4.31  2005-03-22 02:00:00
1430         - fixed inheritance (Christian Hansen)
1431         - previous release was borked!
1432           fixed that, but you have to regenerate the scripts again :(
1433
1434 4.30  2005-03-21 23:00:00
1435         - more documentation (Andrew Ford)
1436         - added connection informations (Christian Hansen)
1437         - HTTP::Request support in Catalyst::Test (Christian Hansen)
1438         - moved cgi.pl to nph-cgi.pl
1439         - added Catalyst::Engine::Server (Christian Hansen)
1440         - removed Catalyst::Test::server
1441         - updated helper scripts
1442           IMPORTANT: note that you have to regenerate script/server.pl,
1443           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
1444
1445 4.28  2005-03-19 22:00:00
1446         - fixed isa tree (Christian Hansen)
1447         - added script/cgi-server.pl, so no more server restarting after
1448           code changes
1449         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
1450
1451 4.27  2005-03-19 01:00:00
1452         - debug message for parameters
1453         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
1454         - some random fixes
1455         - new helper api for Catalyst::Helper::* support
1456           you have to update script/create.pl to use it
1457
1458 4.26  2005-03-16 10:00:00
1459         - fixed the weird bug that caused regex actions to fail on every
1460           second request
1461         - more debug messages
1462         - 100% pod coverage.
1463
1464 4.25  2005-03-12 18:00:00
1465         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
1466         - improved cgi engine docs (Christoper Hicks)
1467
1468 4.24  2005-03-12 01:00:00
1469         - updated cookbook example
1470         - fixed base for apache and https (Andrew Ruthven)
1471
1472 4.23  2005-03-09 20:00:00
1473         - no more regex actions in forward
1474         - added support for test directories t/m, t/v and t/c
1475
1476 4.22  2005-03-08 20:00:00
1477         - catch errors in application class
1478         - handle die properly.
1479
1480 4.21  2005-03-05 17:00:00
1481         - fixed docs
1482
1483 4.20  2005-03-04 22:00:00
1484         - moved bin to script
1485
1486 4.13  2005-03-03 11:00:00
1487         - improved documentation
1488         - pod coverage test for helper generated apps
1489         - new helper api
1490
1491 4.12  2005-03-02 11:00:00 2005
1492         - server_base sucks, removed
1493         - added $c->log->dump()
1494
1495 4.11  2005-03-02 11:00:00 2005
1496         - removed some warnings
1497         - improved docs
1498         - private prefixed actions override private non prefixed actions
1499         - added server_base
1500         - updated Catalyst::Manual::Intro
1501
1502 4.10  2005-03-02 10:00:00 2005
1503         - improved documentation
1504         - fixed upload bug
1505         - fixed prefixed private actions bug
1506         - fixed more little bugs
1507
1508 4.01  2005-03-01 10:00:00 2005
1509         - improved documentation
1510         - documentation fixes (Johan Lindstrom)
1511
1512 4.00  2005-02-27 22:00:00
1513         - more verbose debug messages, especially for forward()
1514         - implemented prefixed prvate actions, icluding built in
1515           !?default, !?begin and !?end
1516         - new Catalyst::Manual::Intro
1517         - new helpers, bin/catalyst
1518         - helper api
1519
1520 3.11  2005-02-23 21:00:00
1521         - added dependency to UNIVERSAL::require (Marcus Ramberg)
1522         - added a little workaround for a warning in Catalyst::Test
1523           (Marcus Ramberg)
1524         - improved documentation for actions
1525
1526 3.10  2005-02-19 20:00:00
1527         - removed roles management from Catalyst::Engine
1528           and added it to Catalyst::Plugin::Authentication::CDBI
1529
1530 3.04  2005-02-17 21:00:00
1531         - error reporting for app class
1532         - no more engine debug messages
1533         - class->method forwards get resolved now
1534
1535 3.03  2005-02-16 23:00:00
1536         - friendlier statistics
1537
1538 3.02  2005-02-16 22:00:00
1539         - fixed unintialized actions (Marcus Ramberg)
1540
1541 3.01  2005-02-16 20:30:00
1542         - better statistics
1543
1544 3.00  2005-02-16 20:00:00
1545         - real version number for CPAN.pm
1546         - fixed redirect in CGI engine
1547         - more statistics in debug logs
1548         - ? prefix for forward()
1549
1550 2.99_15  2005-02-02 22:00:00
1551         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
1552         - Replaced "Catched" with "Caught" in Catalyst::Engine
1553           (Gary Ashton Jones)
1554         - replaced _ with ! for private actions
1555         - added ? for prefixed actions
1556         - misc improvememts
1557
1558 2.99_14  2005-01-31 22:00:00 2005
1559         - arguments for _default
1560         - $c->entrance removed for more flexibility
1561         - added $c->req->method
1562
1563 2.99_13  2005-01-30 18:00:00 2005
1564         - POD fixes and improvements
1565
1566 2.99_12  2005-01-28 22:00:00 2005
1567         - first development release