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