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