Fixed a bug where -rr (restart regex) command line option could cause shell errors
[catagits/Catalyst-Runtime.git] / Changes
1 # This file documents the revision history for Perl extension Catalyst.
2
3 5.7012
4         - Fix __PACKAGE__->config->{foo} = 'bar' case with subclassing
5         - Add Catalyst::Stats (Jon Schutz)
6         - Fixed a bug where ?q=bar=baz is decoded as q=>'bar', not 'bar=baz'.
7           (Tatsuhiko Miyagawa, Masahiro Nagano)
8         - Fixed a bug where -rr (restart regex) command line option could cause
9           shell errors. (Aristotle Pagaltzis, Chisel Wright)
10
11 5.7011  2007-10-18 20:40:00
12         - Allow multiple restart directories and added option to follow
13           symlinks in the HTTP::Restarter engine (Sebastian Willert)
14         - Fixed t/optional_http-server-restart.t so it actually tests
15           if the server restarted or notified of an error (Sebastian Willert)
16         - Return child PID from the HTTP engine when run with the 'background' option.
17           (Emanuele Zeppieri)
18         - Fixed bug in HTTP engine where writes could fail with
19           'Resource temporarily unavailable'.
20         - Fixed bug where %2b in query parameter is doubly decoded to ' ', instead of '+'
21           (Gavin Henry, Tatsuhiko Miyagawa, Oleg Pronin)
22         - Fixed bug where req->base and req->uri would include a port number when running
23           in SSL mode.
24         - Removed unnecessary sprintf in debug mode that caused warnings on locales where
25           commas are used for decimal markers.
26         - Improved error message for case when server picks up editor save
27           files as module names. (James Mastros)
28
29 5.7010  2007-08-22 07:41:00
30         - Resource forks in 5.7009
31
32 5.7009  2007-08-22 00:14:00
33         - Moved Manual.pod to Manual.pm and clarified status of 
34           Catalyst-Manual dist
35         - Doc patches to Catalyst::Controller
36         - remove ignore_loaded from plugin load, commenting why
37         - document the ignore_loaded feature in Catalyst::Utils
38         - Add testing of inline plugins.
39
40 5.7008  2007-08-13 08:40:00
41         - Added $c->request->query_keywords for getting the keywords
42           (a query string with no parameters).
43         - Add undef warning for uri_for.
44         - Fix bug where a nested component would be setup twice.
45         - Make ensure_class_loaded behave better with malformed class name.
46         - Make _register_plugin use ensure_class_loaded.
47         - Remove 'Argument "??" isn't numeric in sprintf' warning.
48           (Emanuele Zeppieri)
49         - Fixed a bug where Content-Length could be set to 0 if a filehandle
50           object in $c->response->body did not report a size.
51         - Fixed issue where development server running in fork mode did not
52           properly exit after a write error.
53           (http://rt.cpan.org/Ticket/Display.html?id=27135)
54         - Remove warning for captures that are undef.
55         - Fixed $c->read and parse_on_demand mode.
56         - Fixed a bug with the HTTP engine where very large response bodies
57           would not be sent properly.
58
59 5.7007  2007-03-13 14:18:00
60         - Many performance improvements by not using URI.pm:
61           * $c->uri_for (approx. 8x faster)
62           * $c->engine->prepare_path (approx. 27x faster)
63           * $c->engine->prepare_query_parameters (approx. 5x faster)
64         - Updated HTTP::Body dependency to 0.9 which fixes the following issues:
65           * Handle when IE sometimes sends an extra CRLF after the POST body.
66           * Empty fields in multipart/form-data POSTs are no longer ignored.
67           * Uploaded files with the name "0" are no longer ignored.
68         - Sending SIGHUP to the dev server will now cause it to restart.
69         - Allow "0" for a path in uri_for.
70         - Performance and stability improvements to the built-in HTTP server.
71         - Don't ignore file uploads if form contains a text field with the same name.
72           (Carl Franks)
73         - Support restart_delay of 0 (for use in the POE engine).
74         - Skip body processing if we don't have a Content-Length header.
75           Results in about a 9% performance increase when handling GET/HEAD
76           requests.
77         - Add a default body to redirect responses.
78         - MyApp->model/view now looks at MyApp->config->{default_view/model}
79           (Bogdan Lucaciu)
80
81 5.7006   2006-11-15 14.18
82         - Updated manifest
83         - Fix Slurp dependency
84         - Updated HTTP::Body dependency to 0.6, 0.5 can break on large POST 
85           requests.
86         - Skip utf8 fix for undef values in uri_with() and uri_for()
87
88 5.7005   2006-11-07 19:37:35
89         - Fixed lighttpd tests to be properly skipped.
90         - Moved IE workarounds to exist only in the HTTP engine.
91         - Added installation instructions (from Catalyst-Manual dist)
92
93 5.7004   2006-11-06 20:48:35
94         - Fix Engine::HTTP crash when using IE. (Jesper Krogh, Peter Edwards)
95         - clean up Catalyst::Utils to handle some edge cases
96         - Properly work around lighttpd PATH_INFO vs. SCRIPT_NAME bug
97           (Mark Blythe)
98         - add _application accessor to Catalyst::Base
99         - Support current_view
100         - Allow use of Catalyst::Test without app name (Ton Voon, Altinity)
101         - Catalyst::Manual moved to its own package
102         - Add option to FastCGI engine to send errors to stdout, not the web server
103         - Use Module::Install's auto_install to install prerequisite modules 
104         - various documentation fixes and improvements
105         
106 5.7003   2006-09-21 16:29:45
107         - Additions and updates to tutorial
108
109 5.7002   2006-09-17 19:35:32
110         - unescape captures to match args
111         - fix for relative Chained under namespace '' (root)
112         - fix for hashrefs in action attributes from config
113         - fix for Chained to require correct number of CaptureArgs
114
115 5.7001   2006-07-19 23:46:54
116         - fix for component loading
117         - uri_for and uri_with now behave as they used to with non-
118           array references
119
120 5.7000   2006-07-07 08:08:08
121         - fix FCGI.pm warning message with FastCGI engine
122         - bumped inc::Module::Install to 0.63 in Makefile.PL
123         - fixes to uri_for_action for DispatchType::Chained
124         - Further doc work.
125         - Minor code cleanups 
126         - Changed catalyst.pl to depend on Catalyst::Devel
127
128 5.70_03  2006-06-28 16:42:00
129         - fixup to registered plugins debug at app startup
130         - refactored Catalyst::Utils::home
131
132 5.70_02  2006-06-27 11:51:00
133         - Updated tutorial.
134
135 5.70_01  2006-06-26 10:49:00
136
137         - fixed a Catalyst::Base bug causing duplicate action registrations
138         - modified DispatchTypes to support multiple registrations
139         - added Catalyst::Runtime module as dist marker
140         - added Catalyst::ActionChain and Chained DispatchType
141         - removed retarded registration requirement in dispatcher
142         - removed Module::Pluggable::Fast hack in favor of
143           Module::Pluggable::Object
144         - extended uri_for, added dispatcher->uri_for_action
145         - added Catalyst::Base->action_for('methodname')
146         - checked and tested :Args multimethod dispatch
147         - added ability to set action attributes from controller config
148         - added merge_config_hashes() as a convenience method
149         - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
150         - Removed test dependencies on Test::NoWarnings, Test::MockObject
151         - Removed dependency on UNIVERSAL::require
152         - Split out Catalyst::Helper into a new distribution
153         - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
154         - nuked each() out of core with prejudice (due to lurking buglets)
155         - Added tests from phaylon for dispatcher precedence
156         - Use Class::Inspector->loaded($class) instead of $class->can('can')
157         - Added ActionClass attribute
158         - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
159         - Updated docs for Catalyst::Component
160         - Separated execute and dispatch on Catalyst::Action
161         - cleaned up logging and debug output
162         - significant documentation revisions
163         - Added warning for setup being called twice
164         - Fix pod to use DBIC::Schema instead of DBIC model
165         - Fix ->config failing to copy _config for subclassing
166         - Updated log format
167         - Updated debug dump
168
169 5.6902  2006-05-04 13:00:00
170         - Remove tarballs and OSX metadata files.
171
172 5.6901  2006-05-03 11.17:00
173         - Module::Install didn't overwrite META.yml. 
174
175 5.6900  2006-05-03 11.17:00
176         - Stupid pause indexer can't count.
177         - Better fix for Catalyst::Test
178         - more tests.
179
180 5.682   2006-04-27 13:51:00
181         - Damn OSX attributes again :( 
182
183 5.681   2006-04-27 08:47:00
184         - Updated manifest.
185         - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
186     
187 5.68    2006-04-26 12:23:00
188         - ConfigLoader: Updated to version 0.06
189         - fixed undef warnings in uri_for() and uri_with()
190         - Fixed Catalyst::Test to report errors on failed Class load
191
192 5.678   2006-04-24 12:30:00
193         - Re-release of 5.67 without OSX metadata files.
194
195 5.67    2006-04-23 08:50:00
196         - Added $c->req->uri_with() helper
197         - ConfigLoader: Updated to version 0.05
198         - Fix up Engine to avoid a new 5.8.8 warning
199         - Added app name with :: support for PAR
200         - Added $c->models/views/controllers
201         - Static::Simple: Unescape the URI path before looking for the file.
202           This fixes issues with files that have spaces.
203         - Looping and recursion tests plus a fix
204         - Added lots of API documentation. Refactored main pod.
205         - Changed default behaviors for $c->model/$c->controller/$c->view
206           to more sane settings.
207         - added the clear_errors method - an alias for error(0)
208         - Added tmpdir option for uploads (woremacx)
209         - Applied patch from GEOFFR to allow normal filehandles.
210         - Refactored Dispatcher internals for better readability and speedup
211           (stress tests run 12% faster)
212         - Allow $c->error to run as a class method
213
214 5.66    2006-03-10 17:48:00
215         - Added Test::WWW::Mechanize::Catalyst support
216         - Cleaned generated tests
217         - Added Root controller concept
218         - Updated ConfigLoader plugin to version 0.04
219
220 5.65    2006-02-21 10:34:00
221         - Added plugin introspection.
222         - Support optional hashref as last param for parameters in uri_for.
223         - Updated tutorial to be more complete.
224         - Applied args patch from antirice (Fixes Ticket #67)
225
226 5.64    2006-02-07 20:29:00
227         - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
228           was not run. (Eric Wong)
229         - Cleaned up generated tests
230         - Updated YAML support to use ConfigLoader
231         - Fixed path dispatch to canonicalise correctly
232             (see http://dev.catalyst.perl.org/ticket/62)
233         - Added Catalyst::Manual::About
234
235 5.63    2006-01-22 00:00:00
236         - Updated prereq versions
237
238 5.62    2006-01-17 16:30:00
239         - Large update to the tutorial (castaway)
240         - Added YAML config support
241         - Added COMPONENT() and ACCEPT_CONTEXT() support
242         - Action list in debug mode is now displayed as a tree in the
243           correct execution order.
244         - Fixed engine detection to allow custom mod_perl engines.
245         - Static::Simple: Fixed bug in ignore_dirs under win32.
246         - Display version numbers of loaded plugins. (Curtis Poe)
247         - Added class and method for caught exception messages.
248         - Updated PAR support to use "make catalyst_par",
249           packages are no longer written by Makefile.PL.
250         - Automatically determine Content-Length when serving a
251           filehandle.
252         - Exceptions now return status 500.
253         - Updated for Module::Install 0.44.
254         - Fixed additional file installation for multi level app names.
255         - Added REDIRECT_URL support for applications running behind
256           a RewriteRule in Apache. (Carl Franks)
257         - Fixed FastCGI engine under win32. (Carl Franks)
258         - FastCGI doc updates (Bill Moseley)
259         - Bugfix for $c->model and friends (defined).
260
261 5.61    2005-12-02 00:00:00
262         - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
263
264 5.60    2005-12-01 22:15:00
265         - Fixed Path and index actions in the appclass,
266           including those that attach to /
267         - Index is now weighted higher than Path
268         - Fixed restarter and -d debug switch in server.pl.
269         - Added a warning if you attempt to retrieve a parameter
270           using $c->req->params('foo').
271         - Fixed the Module::Install::Catalyst @ISA bug
272
273 5.59    2005-11-30 13:25:00
274         - Fixed shebang line for generated scripts
275         - Fixed forward to classes ($c->forward(qw/MyApp foo/))
276         - Wrap use block in begin to quelch C:C3 warnings
277         - Removed scrollbar from debug output
278         - Fixed catalyst_par_core() and catalyst_par_multiarch()
279
280 5.58    2005-11-24 10:51:00
281         - Added ExtUtils::AutoInstall support
282         - Allow overriding path in Catalyst::Helper.
283         - Added -makefile to catalyst.pl to generate a new Makefile.PL.
284         - Restored Catalyst::Build with a deprecation notice.
285         - Improved PAR support
286         - Replaced -short with auto-detection
287         - Fixed prereqs, added File::Copy::Recursive
288         - Static::Simple changes:
289             - Made prepare_action play nice with other plugins by not short-
290               circuiting.
291             - Added tmpl to the ignored extensions.
292             - Fixed security problem if req->path contained '..'.
293
294 5.57    2005-11-20 22:45:00
295         - Updated uri_for to accept undef actions
296         - Switched to Module::Install
297         - Renamed tests for easier editing
298         - Reformatted documentation
299         - Renamed -nonew to -force
300         - Added PAR support
301         - Added keep-alive support and bug fixes to HTTP engine.
302           (Sascha Kiefer)
303         - Added daemonize option to FastCGI engine. (Sam Vilain)
304
305 5.56   2005-11-16 10:33:00
306         - Fixed FastCGI engine to not clobber the global %ENV on each
307           request. (Sam Vilain)
308         - Updated benchmarking to work with detach
309         - Fixed dispatcher, so $c->req->action(undef) works again
310         - Updated Catalyst::Test to use HTTP::Request::AsCGI
311         - Added -pidfile to external FastCGI server.
312
313 5.55    2005-11-15 12:55:00
314         - Fixed multiple cookie handling
315
316 5.54    2005-11-14 22:55:00
317         - Fixed a Module::Pluggable::Fast related bug
318
319 5.53    2005-11-14 15:55:00
320         - Removed t/04prereq.t that was testing for non-required
321           modules.
322
323 5.52    2005-11-14 10:57:00
324         - Strip '..'s in static urls to fix security issue.
325
326 5.51    2005-11-14 00:45:00
327         - Changed uri_for to use namespace instead of match.
328
329 5.50    2005-11-13 20:45:00
330         - Fixed minor bugs.
331         - Updated docs.
332
333 5.49_05 2005-11-12 20:45:00
334         - Large update to the documentation. (David Kamholz)
335         - Fixed args handling in forward()
336         - Fixed forwarding to classes
337         - Fixed catalyst.pl-generated Build.PL Makefile section.
338         - Fixed relative forwarding
339         - Fixed forward arrows in debug output
340
341 5.49_04 2005-11-09 23:00:00
342         - Made context, dispatcher, engine, request and response classes
343           configurable.
344         - Added $c->stack.
345         - Fixed dispatcher to ignore unknown attributes.
346         - Improved format of startup debug log.
347         - Updated built in server to restart on win32. (Will Hawes)
348         - Fixed streaming write from a filehandle to stop writing
349           if the browser is closed.
350         - Added $c->controller, $c->model and $c->view shortcuts.
351         - Switched to Text::SimpleTable.
352
353 5.49_03 2005-11-03 12:00:00
354         - Fixed $c->req->{path} for backwards-compatibility.
355         - Allow debug to be disabled via ENV as well as enabled.
356         - Added -scripts option to catalyst.pl for script updating
357         - Changed helpers to default to long types, Controller instead of C
358         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
359           base classes
360         - Added JavaScript to debug screen to show and hide specific dumps
361         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
362         - Added multi process external FastCGI support
363           (see myapp_fastcgi.pl -help) (Sam Vilain)
364         - Restarter process in HTTP engine now properly exits when the
365           parent app is shut down.  
366         - Improved performance of restarter loop while watching for
367           changed files.
368         - Restarter will now detect new files added to an app on systems
369           that change directory mtimes when new files are created.
370         - Restarter now properly handles modules that are deleted from an
371           application.
372         - Fixed memory leak in TestApp.
373
374 5.49_02 2005-10-26 12:39:00 
375         - Whole new dispatcher!
376         - Added index action
377         - Added path_to method
378         - Added support for passing an IO::Handle object to $c->res->body.
379           (Andrew Bramble)
380         - Added a new welcome screen.
381         - Included Catalyst buttons and icons in helper.
382         - Added Static::Simple plugin to core.
383         - Added self restarting test server
384         - Added filename to debug output for uploaded files.
385         - Fixed forwarding with embedded arguments.
386         - Fixed handling of escaped query strings.
387         - Added upload parameters back into $c->req->params.
388         - Added multiple paths support to dispatcher
389         - Fixed bug in req->path where changing the path added a trailing
390           slash.
391         - Removed req->handle and res->handle
392         - Added prepare_body_chunk method as a hook for upload progress.
393         - Fixed bug in uri_for method when base has no path.
394         - Added automated tests for HTTP, CGI, and FastCGI servers.
395
396 5.49_01 2005-10-10 10:15:00 
397         - Refactored all internals, should be 99% compatible to previous
398           versions.
399         - *IMPORTANT* The Apache engines have been moved to a separate package
400           for this release.  Please install Catalyst::Engine::Apache if you
401           need Apache support.
402
403         - Added support for calling forward with arguments in the path, i.e.
404           $c->forward('/foo/bar/arg1/arg2')
405         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
406           Raw query string is available as $c->req->uri->query.
407         - Made $c->req->base a URI object.
408         - Parameters with multiple values (?a=1&a=2) now display properly
409           in the debug output.
410         - Semi-colon separators in query strings now work properly.
411         - Expanded documentation of catalyst.pl (Andrew Ford)
412         - Added support for running as a backend server behind a frontend
413           proxy so req->base and req->address are set properly.
414         - Added an 'abort' method to the Log api, so that you can
415           kill loggging for a whole request.
416         - Added $c->uri_for method to simplify url handling.
417         - Added more tests and reorganized the t directory.
418         - Reimplemented core engines, all are now CGI based for better test
419           coverage and maintainability.
420         - Added fork support to built in test server.
421         - Fixed all memory leaks.
422         - Thread-related bug fixes and tests.  We now believe the Catalyst
423           core to be thread-safe.
424         - Added streaming IO support through $c->req->read() and
425           $c->res->write()
426         - Added MyApp->config->{parse_on_demand} (streaming input)
427         - Added $c->req->handle and $c->res->handle
428         - Improved documentation
429         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
430         - Fixed bug in dispatcher where an invalid path could call a valid
431           action. (Andy Grundman)
432         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
433
434 5.33  2005-08-10 15:25:00
435         - Now with updated manifest.
436
437 5.32  2005-08-10 15:10:00
438         - Dispatcher might fail if object returns false. (Florian Ragwitz)
439
440 5.31  2005-06-04 12:35:00 (never released to CPAN)
441
442         - helpers now create .new files where files already exist and differ
443         - fixed $Data::Dumper::Terse (Robin Berjon)
444         - added arguments for detach
445         - new credits section in pod
446         - fixed detach to allow relative action names (Matt and Robert)
447         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
448
449 5.30  2005-06-04 12:35:00
450
451         - Fixed a bug where it was not possible to $c->forward to a 
452           component 
453           that was not inheriting from Catalyst::Base.
454         - Fix for inheritance bug.
455         - Allow forward with arguments.
456         - Updated cookbook
457         - Allow overriding home/root in config.
458         - make module build cons README automatically.
459         - prettify home path by resolving '..' (Andy Grundman)
460         - improved helper templates a bit, new naming scheme for tests.
461         - added support for case sensitivity, MyApp->config->{case_sensitive}
462         - added $c->detach for non-returning forwards
463         - added unified error handling, Catalyst::Exception
464         - added section on param handling in Intro.pod
465         - added $c->request->cookie
466         - added Catalyst::Setup
467         - refactored Catalyst::import()
468         - improved rendering of error messages in debug mode
469         - fixed a bug in Catalyst::Helper::mk_dir
470         - further doc changes, esp. to Intro.pod
471
472 5.23  2005-06-03 02:30:00
473         - added support for non Catalyst::Base components to live in namespace
474         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
475
476 5.22  2005-05-26 14:24:00
477         - improved base locating in MP engines
478         - improved error messages in C::E::HTTP::Daemon
479         - hostnames are now resolved on demand unless provided by engine
480         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
481
482 5.21  2005-05-24 14:56:00
483         - fixed a bug in https detection
484         - fixed auto chain finally
485         - added MYAPP_HOME and CATALYST_HOME environment variables
486
487 5.20  2005-05-18 19:52:00
488         - improved uploads and parameters
489         - added $c->req->protocol and $c->req->secure
490         - added $c->req->user and $c->req->uri
491         - improved error message when forwarding to unknown module
492         - fixed win32 installer
493         - added deep recursion detection
494         - fixed auto actions
495         - fixed inheritance in dispatcher
496         - allow whitespaces between brackets and quoted string
497           in Path and Regex attributes
498         - new helper templates
499         - installer now supports install_base and destdir
500         - allow multiple Catalyst apps to run on the same mod_perl
501           instance (not the same app!)
502         - fixed MP2 engines
503         - removed apreq dependency from all MP engines
504         - added support for MP registry scripts
505         - added support for LocationMatch and ScriptAliasMatch in MP engines
506         - added SpeedyCGI engine
507
508 5.10  2005-04-23 11:16:00
509         - updated dependencies to require latest module::pluggable::fast
510         - new installer for templates and stuff using Module::Build
511         - scripts are now prefixed, for being installable
512         IMPORTANT: You have to regenerate the script directory,
513         remove Makefile.PL and add Build.PL
514         - Added compat to install Module::Build if required.
515         - Improved: Params handling with MP engines
516         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
517         - Fixed: Helper.pm on Win32 (Matt S Trout)
518
519 5.03  2005-04-19 20:35:00 (Revision 462)
520         - fixed Test example (Torsten Seeman)
521         - added Plugins chapter to manual
522         - applied doc patch from Robert Boone <robert@rlb3.com>
523         - improved Dispatcher error messages.
524         - refactored so we don't need to include helper from
525           Catalyst.pm - Fixes issues with FindBin
526         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
527         - added plugin() method for instant plugins
528         - FCGI is no more considered experimental
529
530 5.02  2005-04-18 10:00:00 
531         - fixed manifest
532
533 5.01  2005-04-17 23:00:00 
534         - some documentation bugs fixed
535         - added Catalyst::Utils
536         - fixed regexp bug (Matt S Trout)
537         - fixed upload bug with MP19
538         - added $c->req->body
539         - aliased $c->res->output to $c->res->body
540         - Read AUTHOR from passwd or $ENV{AUTHOR} when 
541           generating code.
542         - extended attribute handling
543         - added global config for components
544
545 5.00  2005-04-15 18:00:00
546         - new core to support inheritance trees
547         - new syntax for action declaration
548         - new helper system using TT2
549         - problems with mod_perl2 fixed
550         - added Test::Pod support
551         - added new server backend with HTTP/1.1 support
552         - added option to run tests against a remote server
553         - renamed errors() to error()
554         - more better docs
555         - countless minor improvements
556           IMPORTANT: This release is very incompatible to previous ones
557           and you have to regenerate the helper scripts again...
558
559 4.34  2005-03-23 07:00:00 2005
560         - added some messages to Makefile.PL
561         - added Catalyst::Engine::Test
562         - added Catalyst::Engine::CGI::NPH
563         - simplified Catalyst::Log to be easier to implement/subclass
564         - added cgi.pl
565         - updated Catalyst::Test to use Catalyst::Engine::Test
566         - updated helper scripts
567           IMPORTANT: this will be the last time you'll have to regenerate
568           the script directory. We promise!
569
570 4.33  2005-03-23 01:00:00 2005
571         - documented the log() accessor method in Catalyst (Andrew Ford)
572         - added optional arguments to Catalyst::Log methods (Andrew Ford)
573         - removed cgi-server.pl
574         - added fcgi.pl and Catalyst::Engine::FCGI
575         - fixed an undef durng make test (Dan Sully)
576         - new path test (Christian Hansen)
577           IMPORTANT: you have to regenerate the script directory again
578
579 4.32  2005-03-22 02:10:00 2005
580         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
581
582 4.31  2005-03-22 02:00:00
583         - fixed inheritance (Christian Hansen)
584         - previous release was borked!
585           fixed that, but you have to regenerate the scripts again :(
586
587 4.30  2005-03-21 23:00:00 
588         - more documentation (Andrew Ford)
589         - added connection informations (Christian Hansen)
590         - HTTP::Request support in Catalyst::Test (Christian Hansen)
591         - moved cgi.pl to nph-cgi.pl
592         - added Catalyst::Engine::Server (Christian Hansen)
593         - removed Catalyst::Test::server
594         - updated helper scripts
595           IMPORTANT: note that you have to regenerate script/server.pl,
596           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
597
598 4.28  2005-03-19 22:00:00
599         - fixed isa tree (Christian Hansen)
600         - added script/cgi-server.pl, so no more server restarting after
601           code changes
602         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
603
604 4.27  2005-03-19 01:00:00
605         - debug message for parameters
606         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
607         - some random fixes
608         - new helper api for Catalyst::Helper::* support
609           you have to update script/create.pl to use it
610
611 4.26  2005-03-16 10:00:00
612         - fixed the weird bug that caused regex actions to fail on every
613           second request
614         - more debug messages
615         - 100% pod coverage.
616
617 4.25  2005-03-12 18:00:00
618         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
619         - improved cgi engine docs (Christoper Hicks)
620
621 4.24  2005-03-12 01:00:00
622         - updated cookbook example  
623         - fixed base for apache and https (Andrew Ruthven)
624         
625 4.23  2005-03-09 20:00:00
626         - no more regex actions in forward
627         - added support for test directories t/m, t/v and t/c
628
629 4.22  2005-03-08 20:00:00
630         - catch errors in application class
631         - handle die properly.
632
633 4.21  2005-03-05 17:00:00
634         - fixed docs
635
636 4.20  2005-03-04 22:00:00
637         - moved bin to script
638
639 4.13  2005-03-03 11:00:00
640         - improved documentation
641         - pod coverage test for helper generated apps
642         - new helper api
643
644 4.12  2005-03-02 11:00:00 2005
645         - server_base sucks, removed
646         - added $c->log->dump()
647
648 4.11  2005-03-02 11:00:00 2005
649         - removed some warnings
650         - improved docs
651         - private prefixed actions override private non prefixed actions
652         - added server_base
653         - updated Catalyst::Manual::Intro
654
655 4.10  2005-03-02 10:00:00 2005
656         - improved documentation
657         - fixed upload bug
658         - fixed prefixed private actions bug
659         - fixed more little bugs
660
661 4.01  2005-03-01 10:00:00 2005
662         - improved documentation
663         - documentation fixes (Johan Lindstrom)
664
665 4.00  2005-02-27 22:00:00
666         - more verbose debug messages, especially for forward()
667         - implemented prefixed prvate actions, icluding built in
668           !?default, !?begin and !?end
669         - new Catalyst::Manual::Intro
670         - new helpers, bin/catalyst
671         - helper api
672
673 3.11  2005-02-23 21:00:00
674         - added dependency to UNIVERSAL::require (Marcus Ramberg)
675         - added a little workaround for a warning in Catalyst::Test
676           (Marcus Ramberg)
677         - improved documentation for actions
678
679 3.10  2005-02-19 20:00:00
680         - removed roles management from Catalyst::Engine
681           and added it to Catalyst::Plugin::Authentication::CDBI
682
683 3.04  2005-02-17 21:00:00 
684         - error reporting for app class
685         - no more engine debug messages
686         - class->method forwards get resolved now
687
688 3.03  2005-02-16 23:00:00 
689         - friendlier statistics
690
691 3.02  2005-02-16 22:00:00
692         - fixed unintialized actions (Marcus Ramberg)
693
694 3.01  2005-02-16 20:30:00
695         - better statistics
696
697 3.00  2005-02-16 20:00:00
698         - real version number for CPAN.pm
699         - fixed redirect in CGI engine
700         - more statistics in debug logs
701         - ? prefix for forward()
702
703 2.99_15  2005-02-02 22:00:00
704         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
705         - Replaced "Catched" with "Caught" in Catalyst::Engine
706           (Gary Ashton Jones)
707         - replaced _ with ! for private actions
708         - added ? for prefixed actions
709         - misc improvememts
710
711 2.99_14  2005-01-31 22:00:00 2005
712         - arguments for _default
713         - $c->entrance removed for more flexibility
714         - added $c->req->method
715
716 2.99_13  2005-01-30 18:00:00 2005
717         - POD fixes and improvements
718
719 2.99_12  2005-01-28 22:00:00 2005
720         - first development release