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