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