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