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