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