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