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