4c0e4a9605cb728c35a4d61c5edef3ce8d634fdf
[catagits/Catalyst-Runtime.git] / Changes
1 This file documents the revision history for Perl extension Catalyst.
2
3 5.66
4         - Change redirect to use a 301, not a 302
5         - Added Root controller concept
6         - Updated ConfigLoader plugin to version 0.04
7
8 5.65    2006-02-21 10:34:00
9         - Added plugin introspection.
10         - Support optional hashref as last param for parameters in uri_for.
11         - Updated tutorial to be more complete.
12         - Applied args patch from antirice (Fixes Ticket #67)
13
14 5.64    2006-02-07 20:29:00
15         - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
16           was not run. (Eric Wong)
17         - Cleaned up generated tests
18         - Updated YAML support to use ConfigLoader
19         - Fixed path dispatch to canonicalise correctly
20             (see http://dev.catalyst.perl.org/ticket/62)
21         - Added Catalyst::Manual::About
22
23 5.63    2006-01-22 00:00:00
24         - Updated prereq versions
25
26 5.62    2006-01-17 16:30:00
27         - Large update to the tutorial (castaway)
28         - Added YAML config support
29         - Added COMPONENT() and ACCEPT_CONTEXT() support
30         - Action list in debug mode is now displayed as a tree in the
31           correct execution order.
32         - Fixed engine detection to allow custom mod_perl engines.
33         - Static::Simple: Fixed bug in ignore_dirs under win32.
34         - Display version numbers of loaded plugins. (Curtis Poe)
35         - Added class and method for caught exception messages.
36         - Updated PAR support to use "make catalyst_par",
37           packages are no longer written by Makefile.PL.
38         - Automatically determine Content-Length when serving a
39           filehandle.
40         - Exceptions now return status 500.
41         - Updated for Module::Install 0.44.
42         - Fixed additional file installation for multi level app names.
43         - Added REDIRECT_URL support for applications running behind
44           a RewriteRule in Apache. (Carl Franks)
45         - Fixed FastCGI engine under win32. (Carl Franks)
46         - FastCGI doc updates (Bill Moseley)
47         - Bugfix for $c->model and friends (defined).
48
49 5.61    2005-12-02 00:00:00
50         - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
51
52 5.60    2005-12-01 22:15:00
53         - Fixed Path and index actions in the appclass,
54           including those that attach to /
55         - Index is now weighted higher than Path
56         - Fixed restarter and -d debug switch in server.pl.
57         - Added a warning if you attempt to retrieve a parameter
58           using $c->req->params('foo').
59         - Fixed the Module::Install::Catalyst @ISA bug
60
61 5.59    2005-11-30 13:25:00
62         - Fixed shebang line for generated scripts
63         - Fixed forward to classes ($c->forward(qw/MyApp foo/))
64         - Wrap use block in begin to quelch C:C3 warnings
65         - Removed scrollbar from debug output
66         - Fixed catalyst_par_core() and catalyst_par_multiarch()
67
68 5.58    2005-11-24 10:51:00
69         - Added ExtUtils::AutoInstall support
70             - Allow overriding path in Catalyst::Helper.
71         - Added -makefile to catalyst.pl to generate a new Makefile.PL.
72         - Restored Catalyst::Build with a deprecation notice.
73         - Improved PAR support
74         - Replaced -short with auto-detection
75         - Fixed prereqs, added File::Copy::Recursive
76         - Static::Simple changes:
77             - Made prepare_action play nice with other plugins by not short-
78               circuiting.
79             - Added tmpl to the ignored extensions.
80             - Fixed security problem if req->path contained '..'.
81
82 5.57    2005-11-20 22:45:00
83         - Updated uri_for to accept undef actions
84         - Switched to Module::Install
85         - Renamed tests for easier editing
86         - Reformatted documentation
87         - Renamed -nonew to -force
88         - Added PAR support
89         - Added keep-alive support and bug fixes to HTTP engine.
90           (Sascha Kiefer)
91         - Added daemonize option to FastCGI engine. (Sam Vilain)
92
93 5.56   2005-11-16 10:33:00
94         - Fixed FastCGI engine to not clobber the global %ENV on each
95           request. (Sam Vilain)
96         - Updated benchmarking to work with detach
97         - Fixed dispatcher, so $c->req->action(undef) works again
98         - Updated Catalyst::Test to use HTTP::Request::AsCGI
99         - Added -pidfile to external FastCGI server.
100
101 5.55    2005-11-15 12:55:00
102         - Fixed multiple cookie handling
103
104 5.54    2005-11-14 22:55:00
105         - Fixed a Module::Pluggable::Fast related bug
106
107 5.53    2005-11-14 15:55:00
108         - Removed t/04prereq.t that was testing for non-required
109           modules.
110
111 5.52    2005-11-14 10:57:00
112         - Strip '..'s in static urls to fix security issue.
113
114 5.51    2005-11-14 00:45:00
115         - Changed uri_for to use namespace instead of match.
116
117 5.50    2005-11-13 20:45:00
118         - Fixed minor bugs.
119         - Updated docs.
120
121 5.49_05 2005-11-12 20:45:00
122         - Large update to the documentation. (David Kamholz)
123         - Fixed args handling in forward()
124         - Fixed forwarding to classes
125         - Fixed catalyst.pl-generated Build.PL Makefile section.
126         - Fixed relative forwarding
127         - Fixed forward arrows in debug output
128
129 5.49_04 2005-11-09 23:00:00
130         - Made context, dispatcher, engine, request and response classes
131           configurable.
132         - Added $c->stack.
133         - Fixed dispatcher to ignore unknown attributes.
134         - Improved format of startup debug log.
135         - Updated built in server to restart on win32. (Will Hawes)
136         - Fixed streaming write from a filehandle to stop writing
137           if the browser is closed.
138         - Added $c->controller, $c->model and $c->view shortcuts.
139         - Switched to Text::SimpleTable.
140
141 5.49_03 2005-11-03 12:00:00
142         - Fixed $c->req->{path} for backwards-compatibility.
143         - Allow debug to be disabled via ENV as well as enabled.
144         - Added -scripts option to catalyst.pl for script updating
145         - Changed helpers to default to long types, Controller instead of C
146         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
147           base classes
148         - Added JavaScript to debug screen to show and hide specific dumps
149         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
150         - Added multi process external FastCGI support
151           (see myapp_fastcgi.pl -help) (Sam Vilain)
152         - Restarter process in HTTP engine now properly exits when the
153           parent app is shut down.  
154         - Improved performance of restarter loop while watching for
155           changed files.
156         - Restarter will now detect new files added to an app on systems
157           that change directory mtimes when new files are created.
158         - Restarter now properly handles modules that are deleted from an
159           application.
160         - Fixed memory leak in TestApp.
161
162 5.49_02 2005-10-26 12:39:00 
163         - Whole new dispatcher!
164         - Added index action
165         - Added path_to method
166         - Added support for passing an IO::Handle object to $c->res->body.
167           (Andrew Bramble)
168         - Added a new welcome screen.
169         - Included Catalyst buttons and icons in helper.
170         - Added Static::Simple plugin to core.
171         - Added self restarting test server
172         - Added filename to debug output for uploaded files.
173         - Fixed forwarding with embedded arguments.
174         - Fixed handling of escaped query strings.
175         - Added upload parameters back into $c->req->params.
176         - Added multiple paths support to dispatcher
177         - Fixed bug in req->path where changing the path added a trailing
178           slash.
179         - Removed req->handle and res->handle
180         - Added prepare_body_chunk method as a hook for upload progress.
181         - Fixed bug in uri_for method when base has no path.
182         - Added automated tests for HTTP, CGI, and FastCGI servers.
183
184 5.49_01 2005-10-10 10:15:00 
185         - Refactored all internals, should be 99% compatible to previous
186           versions.
187         - *IMPORTANT* The Apache engines have been moved to a separate package
188           for this release.  Please install Catalyst::Engine::Apache if you
189           need Apache support.
190
191         - Added support for calling forward with arguments in the path, i.e.
192           $c->forward('/foo/bar/arg1/arg2')
193         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
194           Raw query string is available as $c->req->uri->query.
195         - Made $c->req->base a URI object.
196         - Parameters with multiple values (?a=1&a=2) now display properly
197           in the debug output.
198         - Semi-colon separators in query strings now work properly.
199         - Expanded documentation of catalyst.pl (Andrew Ford)
200         - Added support for running as a backend server behind a frontend
201           proxy so req->base and req->address are set properly.
202         - Added an 'abort' method to the Log api, so that you can
203           kill loggging for a whole request.
204         - Added $c->uri_for method to simplify url handling.
205         - Added more tests and reorganized the t directory.
206         - Reimplemented core engines, all are now CGI based for better test
207           coverage and maintainability.
208         - Added fork support to built in test server.
209         - Fixed all memory leaks.
210         - Thread-related bug fixes and tests.  We now believe the Catalyst
211           core to be thread-safe.
212         - Added streaming IO support through $c->req->read() and
213           $c->res->write()
214         - Added MyApp->config->{parse_on_demand} (streaming input)
215         - Added $c->req->handle and $c->res->handle
216         - Improved documentation
217         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
218         - Fixed bug in dispatcher where an invalid path could call a valid
219           action. (Andy Grundman)
220         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
221
222 5.33  2005-08-10 15:25:00
223         - Now with updated manifest.
224
225 5.32  2005-08-10 15:10:00
226         - Dispatcher might fail if object returns false. (Florian Ragwitz)
227
228 5.31  2005-06-04 12:35:00 (never released to CPAN)
229
230         - helpers now create .new files where files already exist and differ
231         - fixed $Data::Dumper::Terse (Robin Berjon)
232         - added arguments for detach
233         - new credits section in pod
234         - fixed detach to allow relative action names (Matt and Robert)
235         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
236
237 5.30  2005-06-04 12:35:00
238
239         - Fixed a bug where it was not possible to $c->forward to a 
240           component 
241           that was not inheriting from Catalyst::Base.
242         - Fix for inheritance bug.
243         - Allow forward with arguments.
244         - Updated cookbook
245         - Allow overriding home/root in config.
246         - make module build cons README automatically.
247         - prettify home path by resolving '..' (Andy Grundman)
248         - improved helper templates a bit, new naming scheme for tests.
249         - added support for case sensitivity, MyApp->config->{case_sensitive}
250         - added $c->detach for non-returning forwards
251         - added unified error handling, Catalyst::Exception
252         - added section on param handling in Intro.pod
253         - added $c->request->cookie
254         - added Catalyst::Setup
255         - refactored Catalyst::import()
256         - improved rendering of error messages in debug mode
257         - fixed a bug in Catalyst::Helper::mk_dir
258         - further doc changes, esp. to Intro.pod
259
260 5.23  2005-06-03 02:30:00
261         - added support for non Catalyst::Base components to live in namespace
262         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
263
264 5.22  2005-05-26 14:24:00
265         - improved base locating in MP engines
266         - improved error messages in C::E::HTTP::Daemon
267         - hostnames are now resolved on demand unless provided by engine
268         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
269
270 5.21  2005-05-24 14:56:00
271         - fixed a bug in https detection
272         - fixed auto chain finally
273         - added MYAPP_HOME and CATALYST_HOME environment variables
274
275 5.20  2005-05-18 19:52:00
276         - improved uploads and parameters
277         - added $c->req->protocol and $c->req->secure
278         - added $c->req->user and $c->req->uri
279         - improved error message when forwarding to unknown module
280         - fixed win32 installer
281         - added deep recursion detection
282         - fixed auto actions
283         - fixed inheritance in dispatcher
284         - allow whitespaces between brackets and quoted string
285           in Path and Regex attributes
286         - new helper templates
287         - installer now supports install_base and destdir
288         - allow multiple Catalyst apps to run on the same mod_perl
289           instance (not the same app!)
290         - fixed MP2 engines
291         - removed apreq dependency from all MP engines
292         - added support for MP registry scripts
293         - added support for LocationMatch and ScriptAliasMatch in MP engines
294         - added SpeedyCGI engine
295
296 5.10  2005-04-23 11:16:00
297         - updated dependencies to require latest module::pluggable::fast
298         - new installer for templates and stuff using Module::Build
299         - scripts are now prefixed, for being installable
300         IMPORTANT: You have to regenerate the script directory,
301         remove Makefile.PL and add Build.PL
302         - Added compat to install Module::Build if required.
303         - Improved: Params handling with MP engines
304         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
305         - Fixed: Helper.pm on Win32 (Matt S Trout)
306
307 5.03  2005-04-19 20:35:00 (Revision 462)
308         - fixed Test example (Torsten Seeman)
309         - added Plugins chapter to manual
310         - applied doc patch from Robert Boone <robert@rlb3.com>
311         - improved Dispatcher error messages.
312         - refactored so we don't need to include helper from
313           Catalyst.pm - Fixes issues with FindBin
314         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
315         - added plugin() method for instant plugins
316         - FCGI is no more considered experimental
317
318 5.02  2005-04-18 10:00:00 
319         - fixed manifest
320
321 5.01  2005-04-17 23:00:00 
322         - some documentation bugs fixed
323         - added Catalyst::Utils
324         - fixed regexp bug (Matt S Trout)
325         - fixed upload bug with MP19
326         - added $c->req->body
327         - aliased $c->res->output to $c->res->body
328         - Read AUTHOR from passwd or $ENV{AUTHOR} when 
329           generating code.
330         - extended attribute handling
331         - added global config for components
332
333 5.00  2005-04-15 18:00:00
334         - new core to support inheritance trees
335         - new syntax for action declaration
336         - new helper system using TT2
337         - problems with mod_perl2 fixed
338         - added Test::Pod support
339         - added new server backend with HTTP/1.1 support
340         - added option to run tests against a remote server
341         - renamed errors() to error()
342         - more better docs
343         - countless minor improvements
344           IMPORTANT: This release is very incompatible to previous ones
345           and you have to regenerate the helper scripts again...
346
347 4.34  2005-03-23 07:00:00 2005
348         - added some messages to Makefile.PL
349         - added Catalyst::Engine::Test
350         - added Catalyst::Engine::CGI::NPH
351         - simplified Catalyst::Log to be easier to implement/subclass
352         - added cgi.pl
353         - updated Catalyst::Test to use Catalyst::Engine::Test
354         - updated helper scripts
355           IMPORTANT: this will be the last time you'll have to regenerate
356           the script directory. We promise!
357
358 4.33  2005-03-23 01:00:00 2005
359         - documented the log() accessor method in Catalyst (Andrew Ford)
360         - added optional arguments to Catalyst::Log methods (Andrew Ford)
361         - removed cgi-server.pl
362         - added fcgi.pl and Catalyst::Engine::FCGI
363         - fixed an undef durng make test (Dan Sully)
364         - new path test (Christian Hansen)
365           IMPORTANT: you have to regenerate the script directory again
366
367 4.32  2005-03-22 02:10:00 2005
368         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
369
370 4.31  2005-03-22 02:00:00
371         - fixed inheritance (Christian Hansen)
372         - previous release was borked!
373           fixed that, but you have to regenerate the scripts again :(
374
375 4.30  2005-03-21 23:00:00 
376         - more documentation (Andrew Ford)
377         - added connection informations (Christian Hansen)
378         - HTTP::Request support in Catalyst::Test (Christian Hansen)
379         - moved cgi.pl to nph-cgi.pl
380         - added Catalyst::Engine::Server (Christian Hansen)
381         - removed Catalyst::Test::server
382         - updated helper scripts
383           IMPORTANT: note that you have to regenerate script/server.pl,
384           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
385
386 4.28  2005-03-19 22:00:00
387         - fixed isa tree (Christian Hansen)
388         - added script/cgi-server.pl, so no more server restarting after
389           code changes
390         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
391
392 4.27  2005-03-19 01:00:00
393         - debug message for parameters
394         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
395         - some random fixes
396         - new helper api for Catalyst::Helper::* support
397           you have to update script/create.pl to use it
398
399 4.26  2005-03-16 10:00:00
400         - fixed the weird bug that caused regex actions to fail on every
401           second request
402         - more debug messages
403         - 100% pod coverage.
404
405 4.25  2005-03-12 18:00:00
406         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
407         - improved cgi engine docs (Christoper Hicks)
408
409 4.24  2005-03-12 01:00:00
410         - updated cookbook example  
411         - fixed base for apache and https (Andrew Ruthven)
412         
413 4.23  2005-03-09 20:00:00
414         - no more regex actions in forward
415         - added support for test directories t/m, t/v and t/c
416
417 4.22  2005-03-08 20:00:00
418         - catch errors in application class
419         - handle die properly.
420
421 4.21  2005-03-05 17:00:00
422         - fixed docs
423
424 4.20  2005-03-04 22:00:00
425         - moved bin to script
426
427 4.13  2005-03-03 11:00:00
428         - improved documentation
429         - pod coverage test for helper generated apps
430         - new helper api
431
432 4.12  2005-03-02 11:00:00 2005
433         - server_base sucks, removed
434         - added $c->log->dump()
435
436 4.11  2005-03-02 11:00:00 2005
437         - removed some warnings
438         - improved docs
439         - private prefixed actions override private non prefixed actions
440         - added server_base
441         - updated Catalyst::Manual::Intro
442
443 4.10  2005-03-02 10:00:00 2005
444         - improved documentation
445         - fixed upload bug
446         - fixed prefixed private actions bug
447         - fixed more little bugs
448
449 4.01  2005-03-01 10:00:00 2005
450         - improved documentation
451         - documentation fixes (Johan Lindstrom)
452
453 4.00  2005-02-27 22:00:00
454         - more verbose debug messages, especially for forward()
455         - implemented prefixed prvate actions, icluding built in
456           !?default, !?begin and !?end
457         - new Catalyst::Manual::Intro
458         - new helpers, bin/catalyst
459         - helper api
460
461 3.11  2005-02-23 21:00:00
462         - added dependency to UNIVERSAL::require (Marcus Ramberg)
463         - added a little workaround for a warning in Catalyst::Test
464           (Marcus Ramberg)
465         - improved documentation for actions
466
467 3.10  2005-02-19 20:00:00
468         - removed roles management from Catalyst::Engine
469           and added it to Catalyst::Plugin::Authentication::CDBI
470
471 3.04  2005-02-17 21:00:00 
472         - error reporting for app class
473         - no more engine debug messages
474         - class->method forwards get resolved now
475
476 3.03  2005-02-16 23:00:00 
477         - friendlier statistics
478
479 3.02  2005-02-16 22:00:00
480         - fixed unintialized actions (Marcus Ramberg)
481
482 3.01  2005-02-16 20:30:00
483         - better statistics
484
485 3.00  2005-02-16 20:00:00
486         - real version number for CPAN.pm
487         - fixed redirect in CGI engine
488         - more statistics in debug logs
489         - ? prefix for forward()
490
491 2.99_15  2005-02-02 22:00:00
492         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
493         - Replaced "Catched" with "Caught" in Catalyst::Engine
494           (Gary Ashton Jones)
495         - replaced _ with ! for private actions
496         - added ? for prefixed actions
497         - misc improvememts
498
499 2.99_14  2005-01-31 22:00:00 2005
500         - arguments for _default
501         - $c->entrance removed for more flexibility
502         - added $c->req->method
503
504 2.99_13  2005-01-30 18:00:00 2005
505         - POD fixes and improvements
506
507 2.99_12  2005-01-28 22:00:00 2005
508         - first development release