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