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