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