Switched to 500 status for exceptions
[catagits/Catalyst-Runtime.git] / Changes
CommitLineData
67bbac86 1This file documents the revision history for Perl extension Catalyst.
3803e98f 2
0bcb98c7 35.62
d82cc9ae 4 - Exceptions now return status 500
24b3262a 5 - Updated for Module::Install 0.40
5fdd8dc8 6 - Fixed additional file installation for multi level app names
0bcb98c7 7 - Added REDIRECT_URL support for applications running behind
8 a RewriteRule in Apache. (Carl Franks)
6f2e0021 9 - Fixed FastCGI engine under win32. (Carl Franks)
0bcb98c7 10
022d1311 115.61 2005-12-02 00:00:00
12 - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
13
e1ab96e1 145.60 2005-12-01 22:15:00
61a9002d 15 - Fixed Path and index actions in the appclass,
16 including those that attach to /
17 - Index is now weighted higher than Path
6780cd43 18 - Fixed restarter and -d debug switch in server.pl.
ee26f4bd 19 - Added a warning if you attempt to retrieve a parameter
20 using $c->req->params('foo').
7cf46fb4 21 - Fixed the Module::Install::Catalyst @ISA bug
6fe8a91d 22
294f78ca 235.59 2005-11-30 13:25:00
8565f89d 24 - Fixed shebang line for generated scripts
86d993ab 25 - Fixed forward to classes ($c->forward(qw/MyApp foo/))
f075593c 26 - Wrap use block in begin to quelch C:C3 warnings
27 - Removed scrollbar from debug output
6c165c4b 28 - Fixed catalyst_par_core() and catalyst_par_multiarch()
86d993ab 29
2e4a6ec3 305.58 2005-11-24 10:51:00
9624cd13 31 - Added ExtUtils::AutoInstall support
477f4389 32 - Allow overriding path in Catalyst::Helper.
4e90e3c1 33 - Added -makefile to catalyst.pl to generate a new Makefile.PL.
10d487cb 34 - Restored Catalyst::Build with a deprecation notice.
975ba103 35 - Improved PAR support
b2d40c03 36 - Replaced -short with auto-detection
bb722214 37 - Fixed prereqs, added File::Copy::Recursive
4ca033b1 38 - Static::Simple changes:
39 - Made prepare_action play nice with other plugins by not short-
40 circuiting.
41 - Added tmpl to the ignored extensions.
42 - Fixed security problem if req->path contained '..'.
b2d40c03 43
4aaa6e43 445.57 2005-11-20 22:45:00
d3e7a648 45 - Updated uri_for to accept undef actions
f991f6a0 46 - Switched to Module::Install
e71a3028 47 - Renamed tests for easier editing
b5ecfcf0 48 - Reformatted documentation
34a83d89 49 - Renamed -nonew to -force
fc04b845 50 - Added PAR support
6c7a1d2f 51 - Added keep-alive support and bug fixes to HTTP engine.
526b698a 52 (Sascha Kiefer)
53 - Added daemonize option to FastCGI engine. (Sam Vilain)
fc04b845 54
18c4e4c0 555.56 2005-11-16 10:33:00
84528885 56 - Fixed FastCGI engine to not clobber the global %ENV on each
57 request. (Sam Vilain)
245ae014 58 - Updated benchmarking to work with detach
59 - Fixed dispatcher, so $c->req->action(undef) works again
0f895006 60 - Updated Catalyst::Test to use HTTP::Request::AsCGI
dc2fc680 61 - Added -pidfile to external FastCGI server.
84528885 62
b39840da 635.55 2005-11-15 12:55:00
64 - Fixed multiple cookie handling
65
6f006bd6 665.54 2005-11-14 22:55:00
67 - Fixed a Module::Pluggable::Fast related bug
68
89546294 695.53 2005-11-14 15:55:00
70 - Removed t/04prereq.t that was testing for non-required
71 modules.
72
df755a7a 735.52 2005-11-14 10:57:00
74 - Strip '..'s in static urls to fix security issue.
89546294 75
ff74d616 765.51 2005-11-14 00:45:00
77 - Changed uri_for to use namespace instead of match.
ccc9f8aa 78
ff74d616 795.50 2005-11-13 20:45:00
80 - Fixed minor bugs.
81 - Updated docs.
ccc9f8aa 82
527ada13 835.49_05 2005-11-12 20:45:00
910410b8 84 - Large update to the documentation. (David Kamholz)
138ce4c0 85 - Fixed args handling in forward()
86 - Fixed forwarding to classes
2b01b53c 87 - Fixed catalyst.pl-generated Build.PL Makefile section.
a0eca838 88 - Fixed relative forwarding
89 - Fixed forward arrows in debug output
90
8beacad7 915.49_04 2005-11-09 23:00:00
db38216d 92 - Made context, dispatcher, engine, request and response classes
8beacad7 93 configurable.
94 - Added $c->stack.
95 - Fixed dispatcher to ignore unknown attributes.
96 - Improved format of startup debug log.
0c74cb08 97 - Updated built in server to restart on win32. (Will Hawes)
6484fba0 98 - Fixed streaming write from a filehandle to stop writing
99 if the browser is closed.
0c74cb08 100 - Added $c->controller, $c->model and $c->view shortcuts.
101 - Switched to Text::SimpleTable.
8c113188 102
60b53d07 1035.49_03 2005-11-03 12:00:00
e561386f 104 - Fixed $c->req->{path} for backwards-compatibility.
59c2b3bd 105 - Allow debug to be disabled via ENV as well as enabled.
e4d88362 106 - Added -scripts option to catalyst.pl for script updating
8264c145 107 - Changed helpers to default to long types, Controller instead of C
5ee249f2 108 - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
109 base classes
c6ef5e69 110 - Added JavaScript to debug screen to show and hide specific dumps
0bbb5a1f 111 - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
fe9da43b 112 - Added multi process external FastCGI support
113 (see myapp_fastcgi.pl -help) (Sam Vilain)
40b0b60c 114 - Restarter process in HTTP engine now properly exits when the
4c980e76 115 parent app is shut down.
116 - Improved performance of restarter loop while watching for
117 changed files.
118 - Restarter will now detect new files added to an app on systems
119 that change directory mtimes when new files are created.
120 - Restarter now properly handles modules that are deleted from an
121 application.
40b0b60c 122 - Fixed memory leak in TestApp.
123
bf88a181 1245.49_02 2005-10-26 12:39:00
bcccee4e 125 - Whole new dispatcher!
126 - Added index action
01033d73 127 - Added path_to method
6e692ab4 128 - Added support for passing an IO::Handle object to $c->res->body.
129 (Andrew Bramble)
a9b78939 130 - Added a new welcome screen.
131 - Included Catalyst buttons and icons in helper.
132 - Added Static::Simple plugin to core.
9438e46e 133 - Added self restarting test server
bc2beef5 134 - Added filename to debug output for uploaded files.
135 - Fixed forwarding with embedded arguments.
e0616220 136 - Fixed handling of escaped query strings.
c4bed79a 137 - Added upload parameters back into $c->req->params.
749472d6 138 - Added multiple paths support to dispatcher
6ff79ec5 139 - Fixed bug in req->path where changing the path added a trailing
140 slash.
4f5ebacd 141 - Removed req->handle and res->handle
4bd82c41 142 - Added prepare_body_chunk method as a hook for upload progress.
58f510c2 143 - Fixed bug in uri_for method when base has no path.
55ddccae 144 - Added automated tests for HTTP, CGI, and FastCGI servers.
58f510c2 145
fbcc39ad 1465.49_01 2005-10-10 10:15:00
147 - Refactored all internals, should be 99% compatible to previous
148 versions.
149 - *IMPORTANT* The Apache engines have been moved to a separate package
150 for this release. Please install Catalyst::Engine::Apache if you
151 need Apache support.
152
153 - Added support for calling forward with arguments in the path, i.e.
154 $c->forward('/foo/bar/arg1/arg2')
155 - Made $c->req->uri a URI object, added req->path_info for CGI compat.
156 Raw query string is available as $c->req->uri->query.
157 - Made $c->req->base a URI object.
158 - Parameters with multiple values (?a=1&a=2) now display properly
159 in the debug output.
160 - Semi-colon separators in query strings now work properly.
161 - Expanded documentation of catalyst.pl (Andrew Ford)
162 - Added support for running as a backend server behind a frontend
163 proxy so req->base and req->address are set properly.
164 - Added an 'abort' method to the Log api, so that you can
165 kill loggging for a whole request.
166 - Added $c->uri_for method to simplify url handling.
167 - Added more tests and reorganized the t directory.
168 - Reimplemented core engines, all are now CGI based for better test
169 coverage and maintainability.
170 - Added fork support to built in test server.
171 - Fixed all memory leaks.
172 - Thread-related bug fixes and tests. We now believe the Catalyst
173 core to be thread-safe.
174 - Added streaming IO support through $c->req->read() and
175 $c->res->write()
176 - Added MyApp->config->{parse_on_demand} (streaming input)
177 - Added $c->req->handle and $c->res->handle
178 - Improved documentation
fd59198f 179 - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
43f0a258 180 - Fixed bug in dispatcher where an invalid path could call a valid
181 action. (Andy Grundman)
5c9b3736 182 - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
fd59198f 183
4e449be9 1845.33 2005-08-10 15:25:00
43f0a258 185 - Now with updated manifest.
fd59198f 186
4e449be9 1875.32 2005-08-10 15:10:00
43f0a258 188 - Dispatcher might fail if object returns false. (Florian Ragwitz)
a1c8f974 189
58e9ce65 1905.31 2005-06-04 12:35:00 (never released to CPAN)
62d9b030 191
ef3250bc 192 - helpers now create .new files where files already exist and differ
62d9b030 193 - fixed $Data::Dumper::Terse (Robin Berjon)
bd7d2e94 194 - added arguments for detach
51f0308d 195 - new credits section in pod
71c3bcc3 196 - fixed detach to allow relative action names (Matt and Robert)
197 - added the ability to have whitespaces in Path( '' ) and Regex( '' )
62d9b030 198
f56990fa 1995.30 2005-06-04 12:35:00
2343e117 200
f56990fa 201 - Fixed a bug where it was not possible to $c->forward to a
202 component
7e71fcce 203 that was not inheriting from Catalyst::Base.
599b5295 204 - Fix for inheritance bug.
a1dad9c1 205 - Allow forward with arguments.
2343e117 206 - Updated cookbook
e0143040 207 - Allow overriding home/root in config.
d2ee9760 208 - make module build cons README automatically.
209 - prettify home path by resolving '..' (Andy Grundman)
f56990fa 210 - improved helper templates a bit, new naming scheme for tests.
d2ee9760 211 - added support for case sensitivity, MyApp->config->{case_sensitive}
ef16e169 212 - added $c->detach for non-returning forwards
d2ee9760 213 - added unified error handling, Catalyst::Exception
214 - added section on param handling in Intro.pod
215 - added $c->request->cookie
216 - added Catalyst::Setup
217 - refactored Catalyst::import()
218 - improved rendering of error messages in debug mode
219 - fixed a bug in Catalyst::Helper::mk_dir
ef16e169 220 - further doc changes, esp. to Intro.pod
abddf0b5 221
49ba64d7 2225.23 2005-06-03 02:30:00
8a0ec4fd 223 - added support for non Catalyst::Base components to live in namespace
224 - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
a268a011 225
d8cdbf30 2265.22 2005-05-26 14:24:00
d2ee9760 227 - improved base locating in MP engines
228 - improved error messages in C::E::HTTP::Daemon
229 - hostnames are now resolved on demand unless provided by engine
230 - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
99386274 231
db046247 2325.21 2005-05-24 14:56:00
b7b011a9 233 - fixed a bug in https detection
9ddd9d05 234 - fixed auto chain finally
895b2303 235 - added MYAPP_HOME and CATALYST_HOME environment variables
b7b011a9 236
61a0806c 2375.20 2005-05-18 19:52:00
a783a49e 238 - improved uploads and parameters
77d12cae 239 - added $c->req->protocol and $c->req->secure
240 - added $c->req->user and $c->req->uri
8f591211 241 - improved error message when forwarding to unknown module
91eeb37b 242 - fixed win32 installer
e88fa058 243 - added deep recursion detection
99d891a5 244 - fixed auto actions
e37b6309 245 - fixed inheritance in dispatcher
0299ba22 246 - allow whitespaces between brackets and quoted string
247 in Path and Regex attributes
97f1b4e7 248 - new helper templates
9cee9588 249 - installer now supports install_base and destdir
61a0806c 250 - allow multiple Catalyst apps to run on the same mod_perl
251 instance (not the same app!)
6890e598 252 - fixed MP2 engines
fc88e495 253 - removed apreq dependency from all MP engines
254 - added support for MP registry scripts
255 - added support for LocationMatch and ScriptAliasMatch in MP engines
6890e598 256 - added SpeedyCGI engine
a783a49e 257
61a0806c 2585.10 2005-04-23 11:16:00
a783a49e 259 - updated dependencies to require latest module::pluggable::fast
260 - new installer for templates and stuff using Module::Build
4f6748f1 261 - scripts are now prefixed, for being installable
262 IMPORTANT: You have to regenerate the script directory,
263 remove Makefile.PL and add Build.PL
adfe7ead 264 - Added compat to install Module::Build if required.
8f591211 265 - Improved: Params handling with MP engines
266 - Fixed: Params handling on POST with CGI engine (Andy Grundman)
267 - Fixed: Helper.pm on Win32 (Matt S Trout)
4f6748f1 268
61a0806c 2695.03 2005-04-19 20:35:00 (Revision 462)
a783a49e 270 - fixed Test example (Torsten Seeman)
271 - added Plugins chapter to manual
bbcadec7 272 - applied doc patch from Robert Boone <robert@rlb3.com>
a783a49e 273 - improved Dispatcher error messages.
274 - refactored so we don't need to include helper from
e9deb4dc 275 Catalyst.pm - Fixes issues with FindBin
5b2a599c 276 - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
87232381 277 - added plugin() method for instant plugins
278 - FCGI is no more considered experimental
bbcadec7 279
61a0806c 2805.02 2005-04-18 10:00:00
2cf9bc57 281 - fixed manifest
282
61a0806c 2835.01 2005-04-17 23:00:00
d7953572 284 - some documentation bugs fixed
f05af9ba 285 - added Catalyst::Utils
eaf14ff4 286 - fixed regexp bug (Matt S Trout)
287 - fixed upload bug with MP19
288 - added $c->req->body
e27582bb 289 - aliased $c->res->output to $c->res->body
ddb46924 290 - Read AUTHOR from passwd or $ENV{AUTHOR} when
291 generating code.
8c8f7c51 292 - extended attribute handling
84cf74e7 293 - added global config for components
d7953572 294
61a0806c 2955.00 2005-04-15 18:00:00
0c28fbd7 296 - new core to support inheritance trees
297 - new syntax for action declaration
298 - new helper system using TT2
b76d7db8 299 - problems with mod_perl2 fixed
5a8fd7e9 300 - added Test::Pod support
6f4e1683 301 - added new server backend with HTTP/1.1 support
302 - added option to run tests against a remote server
0c28fbd7 303 - renamed errors() to error()
ca61af20 304 - more better docs
0c28fbd7 305 - countless minor improvements
ca61af20 306 IMPORTANT: This release is very incompatible to previous ones
307 and you have to regenerate the helper scripts again...
e519ff34 308
61a0806c 3094.34 2005-03-23 07:00:00 2005
9ada3267 310 - added some messages to Makefile.PL
00869ea8 311 - added Catalyst::Engine::Test
312 - added Catalyst::Engine::CGI::NPH
313 - simplified Catalyst::Log to be easier to implement/subclass
314 - added cgi.pl
6f4e1683 315 - updated Catalyst::Test to use Catalyst::Engine::Test
00869ea8 316 - updated helper scripts
317 IMPORTANT: this will be the last time you'll have to regenerate
318 the script directory. We promise!
9ada3267 319
61a0806c 3204.33 2005-03-23 01:00:00 2005
145074c2 321 - documented the log() accessor method in Catalyst (Andrew Ford)
82d2fcbe 322 - added optional arguments to Catalyst::Log methods (Andrew Ford)
a564a4be 323 - removed cgi-server.pl
ffb41d94 324 - added fcgi.pl and Catalyst::Engine::FCGI
b0b7c5e0 325 - fixed an undef durng make test (Dan Sully)
5442009c 326 - new path test (Christian Hansen)
327 IMPORTANT: you have to regenerate the script directory again
82d2fcbe 328
61a0806c 3294.32 2005-03-22 02:10:00 2005
caca1b02 330 - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
331
61a0806c 3324.31 2005-03-22 02:00:00
1c99e125 333 - fixed inheritance (Christian Hansen)
c0d174dc 334 - previous release was borked!
335 fixed that, but you have to regenerate the scripts again :(
1c99e125 336
61a0806c 3374.30 2005-03-21 23:00:00
d2cad154 338 - more documentation (Andrew Ford)
0556eb49 339 - added connection informations (Christian Hansen)
49faa307 340 - HTTP::Request support in Catalyst::Test (Christian Hansen)
3fde004f 341 - moved cgi.pl to nph-cgi.pl
a0bb847e 342 - added Catalyst::Engine::Server (Christian Hansen)
585893b9 343 - removed Catalyst::Test::server
344 - updated helper scripts
345 IMPORTANT: note that you have to regenerate script/server.pl,
346 script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
0556eb49 347
61a0806c 3484.28 2005-03-19 22:00:00
502619e5 349 - fixed isa tree (Christian Hansen)
bc024080 350 - added script/cgi-server.pl, so no more server restarting after
351 code changes
352 - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
502619e5 353
61a0806c 3544.27 2005-03-19 01:00:00
c85ff642 355 - debug message for parameters
23f9d934 356 - Fix redirects (Christian Hansen <ch@ngmedia.com>)
b5524568 357 - some random fixes
358 - new helper api for Catalyst::Helper::* support
359 you have to update script/create.pl to use it
c85ff642 360
61a0806c 3614.26 2005-03-16 10:00:00
5783a9a5 362 - fixed the weird bug that caused regex actions to fail on every
363 second request
c85ff642 364 - more debug messages
748161c4 365 - 100% pod coverage.
5783a9a5 366
61a0806c 3674.25 2005-03-12 18:00:00
f1d0b7ea 368 - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
9a33da6a 369 - improved cgi engine docs (Christoper Hicks)
f1d0b7ea 370
61a0806c 3714.24 2005-03-12 01:00:00
aff93052 372 - updated cookbook example
5ae68c0d 373 - fixed base for apache and https (Andrew Ruthven)
aff93052 374
61a0806c 3754.23 2005-03-09 20:00:00
7e5adedd 376 - no more regex actions in forward
3cb1db8c 377 - added support for test directories t/m, t/v and t/c
7e5adedd 378
61a0806c 3794.22 2005-03-08 20:00:00
0b944e63 380 - catch errors in application class
aff93052 381 - handle die properly.
0b944e63 382
61a0806c 3834.21 2005-03-05 17:00:00
d01df17d 384 - fixed docs
385
61a0806c 3864.20 2005-03-04 22:00:00
91864987 387 - moved bin to script
388
61a0806c 3894.13 2005-03-03 11:00:00
0ea0c2c3 390 - improved documentation
1df125c9 391 - pod coverage test for helper generated apps
ad41e777 392 - new helper api
0ea0c2c3 393
61a0806c 3944.12 2005-03-02 11:00:00 2005
5ddd05a0 395 - server_base sucks, removed
9b2bc37b 396 - added $c->log->dump()
5ddd05a0 397
61a0806c 3984.11 2005-03-02 11:00:00 2005
7833fdfc 399 - removed some warnings
400 - improved docs
7242d068 401 - private prefixed actions override private non prefixed actions
8495c1de 402 - added server_base
4a6895ce 403 - updated Catalyst::Manual::Intro
7833fdfc 404
61a0806c 4054.10 2005-03-02 10:00:00 2005
7833fdfc 406 - improved documentation
407 - fixed upload bug
408 - fixed prefixed private actions bug
409 - fixed more little bugs
410
61a0806c 4114.01 2005-03-01 10:00:00 2005
03a53815 412 - improved documentation
d7c505f3 413 - documentation fixes (Johan Lindstrom)
03a53815 414
61a0806c 4154.00 2005-02-27 22:00:00
fc7ec1d9 416 - more verbose debug messages, especially for forward()
417 - implemented prefixed prvate actions, icluding built in
418 !?default, !?begin and !?end
419 - new Catalyst::Manual::Intro
420 - new helpers, bin/catalyst
421 - helper api
422
61a0806c 4233.11 2005-02-23 21:00:00
fc7ec1d9 424 - added dependency to UNIVERSAL::require (Marcus Ramberg)
425 - added a little workaround for a warning in Catalyst::Test
426 (Marcus Ramberg)
427 - improved documentation for actions
428
61a0806c 4293.10 2005-02-19 20:00:00
fc7ec1d9 430 - removed roles management from Catalyst::Engine
431 and added it to Catalyst::Plugin::Authentication::CDBI
432
61a0806c 4333.04 2005-02-17 21:00:00
fc7ec1d9 434 - error reporting for app class
435 - no more engine debug messages
436 - class->method forwards get resolved now
437
61a0806c 4383.03 2005-02-16 23:00:00
fc7ec1d9 439 - friendlier statistics
440
61a0806c 4413.02 2005-02-16 22:00:00
fc7ec1d9 442 - fixed unintialized actions (Marcus Ramberg)
443
61a0806c 4443.01 2005-02-16 20:30:00
fc7ec1d9 445 - better statistics
446
61a0806c 4473.00 2005-02-16 20:00:00
fc7ec1d9 448 - real version number for CPAN.pm
449 - fixed redirect in CGI engine
450 - more statistics in debug logs
451 - ? prefix for forward()
452
61a0806c 4532.99_15 2005-02-02 22:00:00
fc7ec1d9 454 - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
455 - Replaced "Catched" with "Caught" in Catalyst::Engine
456 (Gary Ashton Jones)
457 - replaced _ with ! for private actions
458 - added ? for prefixed actions
459 - misc improvememts
460
61a0806c 4612.99_14 2005-01-31 22:00:00 2005
fc7ec1d9 462 - arguments for _default
463 - $c->entrance removed for more flexibility
464 - added $c->req->method
465
61a0806c 4662.99_13 2005-01-30 18:00:00 2005
fc7ec1d9 467 - POD fixes and improvements
468
61a0806c 4692.99_12 2005-01-28 22:00:00 2005
fc7ec1d9 470 - first development release