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