Added error message if using an invalid app name with helper (LTjake)
[catagits/Catalyst-Runtime.git] / Changes
CommitLineData
67bbac86 1This file documents the revision history for Perl extension Catalyst.
3803e98f 2
fc04b845 35.57
4 - Added PAR support
6c7a1d2f 5 - Added keep-alive support and bug fixes to HTTP engine.
526b698a 6 (Sascha Kiefer)
7 - Added daemonize option to FastCGI engine. (Sam Vilain)
fc04b845 8
18c4e4c0 95.56 2005-11-16 10:33:00
84528885 10 - Fixed FastCGI engine to not clobber the global %ENV on each
11 request. (Sam Vilain)
245ae014 12 - Updated benchmarking to work with detach
13 - Fixed dispatcher, so $c->req->action(undef) works again
0f895006 14 - Updated Catalyst::Test to use HTTP::Request::AsCGI
dc2fc680 15 - Added -pidfile to external FastCGI server.
84528885 16
b39840da 175.55 2005-11-15 12:55:00
18 - Fixed multiple cookie handling
19
6f006bd6 205.54 2005-11-14 22:55:00
21 - Fixed a Module::Pluggable::Fast related bug
22
89546294 235.53 2005-11-14 15:55:00
24 - Removed t/04prereq.t that was testing for non-required
25 modules.
26
df755a7a 275.52 2005-11-14 10:57:00
28 - Strip '..'s in static urls to fix security issue.
89546294 29
ff74d616 305.51 2005-11-14 00:45:00
31 - Changed uri_for to use namespace instead of match.
ccc9f8aa 32
ff74d616 335.50 2005-11-13 20:45:00
34 - Fixed minor bugs.
35 - Updated docs.
ccc9f8aa 36
527ada13 375.49_05 2005-11-12 20:45:00
910410b8 38 - Large update to the documentation. (David Kamholz)
138ce4c0 39 - Fixed args handling in forward()
40 - Fixed forwarding to classes
2b01b53c 41 - Fixed catalyst.pl-generated Build.PL Makefile section.
a0eca838 42 - Fixed relative forwarding
43 - Fixed forward arrows in debug output
44
8beacad7 455.49_04 2005-11-09 23:00:00
db38216d 46 - Made context, dispatcher, engine, request and response classes
8beacad7 47 configurable.
48 - Added $c->stack.
49 - Fixed dispatcher to ignore unknown attributes.
50 - Improved format of startup debug log.
0c74cb08 51 - Updated built in server to restart on win32. (Will Hawes)
6484fba0 52 - Fixed streaming write from a filehandle to stop writing
53 if the browser is closed.
0c74cb08 54 - Added $c->controller, $c->model and $c->view shortcuts.
55 - Switched to Text::SimpleTable.
8c113188 56
60b53d07 575.49_03 2005-11-03 12:00:00
e561386f 58 - Fixed $c->req->{path} for backwards-compatibility.
59c2b3bd 59 - Allow debug to be disabled via ENV as well as enabled.
e4d88362 60 - Added -scripts option to catalyst.pl for script updating
8264c145 61 - Changed helpers to default to long types, Controller instead of C
5ee249f2 62 - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
63 base classes
c6ef5e69 64 - Added JavaScript to debug screen to show and hide specific dumps
0bbb5a1f 65 - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
fe9da43b 66 - Added multi process external FastCGI support
67 (see myapp_fastcgi.pl -help) (Sam Vilain)
40b0b60c 68 - Restarter process in HTTP engine now properly exits when the
4c980e76 69 parent app is shut down.
70 - Improved performance of restarter loop while watching for
71 changed files.
72 - Restarter will now detect new files added to an app on systems
73 that change directory mtimes when new files are created.
74 - Restarter now properly handles modules that are deleted from an
75 application.
40b0b60c 76 - Fixed memory leak in TestApp.
77
bf88a181 785.49_02 2005-10-26 12:39:00
bcccee4e 79 - Whole new dispatcher!
80 - Added index action
01033d73 81 - Added path_to method
6e692ab4 82 - Added support for passing an IO::Handle object to $c->res->body.
83 (Andrew Bramble)
a9b78939 84 - Added a new welcome screen.
85 - Included Catalyst buttons and icons in helper.
86 - Added Static::Simple plugin to core.
9438e46e 87 - Added self restarting test server
bc2beef5 88 - Added filename to debug output for uploaded files.
89 - Fixed forwarding with embedded arguments.
e0616220 90 - Fixed handling of escaped query strings.
c4bed79a 91 - Added upload parameters back into $c->req->params.
749472d6 92 - Added multiple paths support to dispatcher
6ff79ec5 93 - Fixed bug in req->path where changing the path added a trailing
94 slash.
4f5ebacd 95 - Removed req->handle and res->handle
4bd82c41 96 - Added prepare_body_chunk method as a hook for upload progress.
58f510c2 97 - Fixed bug in uri_for method when base has no path.
55ddccae 98 - Added automated tests for HTTP, CGI, and FastCGI servers.
58f510c2 99
fbcc39ad 1005.49_01 2005-10-10 10:15:00
101 - Refactored all internals, should be 99% compatible to previous
102 versions.
103 - *IMPORTANT* The Apache engines have been moved to a separate package
104 for this release. Please install Catalyst::Engine::Apache if you
105 need Apache support.
106
107 - Added support for calling forward with arguments in the path, i.e.
108 $c->forward('/foo/bar/arg1/arg2')
109 - Made $c->req->uri a URI object, added req->path_info for CGI compat.
110 Raw query string is available as $c->req->uri->query.
111 - Made $c->req->base a URI object.
112 - Parameters with multiple values (?a=1&a=2) now display properly
113 in the debug output.
114 - Semi-colon separators in query strings now work properly.
115 - Expanded documentation of catalyst.pl (Andrew Ford)
116 - Added support for running as a backend server behind a frontend
117 proxy so req->base and req->address are set properly.
118 - Added an 'abort' method to the Log api, so that you can
119 kill loggging for a whole request.
120 - Added $c->uri_for method to simplify url handling.
121 - Added more tests and reorganized the t directory.
122 - Reimplemented core engines, all are now CGI based for better test
123 coverage and maintainability.
124 - Added fork support to built in test server.
125 - Fixed all memory leaks.
126 - Thread-related bug fixes and tests. We now believe the Catalyst
127 core to be thread-safe.
128 - Added streaming IO support through $c->req->read() and
129 $c->res->write()
130 - Added MyApp->config->{parse_on_demand} (streaming input)
131 - Added $c->req->handle and $c->res->handle
132 - Improved documentation
fd59198f 133 - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
43f0a258 134 - Fixed bug in dispatcher where an invalid path could call a valid
135 action. (Andy Grundman)
5c9b3736 136 - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
fd59198f 137
4e449be9 1385.33 2005-08-10 15:25:00
43f0a258 139 - Now with updated manifest.
fd59198f 140
4e449be9 1415.32 2005-08-10 15:10:00
43f0a258 142 - Dispatcher might fail if object returns false. (Florian Ragwitz)
a1c8f974 143
58e9ce65 1445.31 2005-06-04 12:35:00 (never released to CPAN)
62d9b030 145
ef3250bc 146 - helpers now create .new files where files already exist and differ
62d9b030 147 - fixed $Data::Dumper::Terse (Robin Berjon)
bd7d2e94 148 - added arguments for detach
51f0308d 149 - new credits section in pod
71c3bcc3 150 - fixed detach to allow relative action names (Matt and Robert)
151 - added the ability to have whitespaces in Path( '' ) and Regex( '' )
62d9b030 152
f56990fa 1535.30 2005-06-04 12:35:00
2343e117 154
f56990fa 155 - Fixed a bug where it was not possible to $c->forward to a
156 component
7e71fcce 157 that was not inheriting from Catalyst::Base.
599b5295 158 - Fix for inheritance bug.
a1dad9c1 159 - Allow forward with arguments.
2343e117 160 - Updated cookbook
e0143040 161 - Allow overriding home/root in config.
d2ee9760 162 - make module build cons README automatically.
163 - prettify home path by resolving '..' (Andy Grundman)
f56990fa 164 - improved helper templates a bit, new naming scheme for tests.
d2ee9760 165 - added support for case sensitivity, MyApp->config->{case_sensitive}
ef16e169 166 - added $c->detach for non-returning forwards
d2ee9760 167 - added unified error handling, Catalyst::Exception
168 - added section on param handling in Intro.pod
169 - added $c->request->cookie
170 - added Catalyst::Setup
171 - refactored Catalyst::import()
172 - improved rendering of error messages in debug mode
173 - fixed a bug in Catalyst::Helper::mk_dir
ef16e169 174 - further doc changes, esp. to Intro.pod
abddf0b5 175
49ba64d7 1765.23 2005-06-03 02:30:00
8a0ec4fd 177 - added support for non Catalyst::Base components to live in namespace
178 - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
a268a011 179
d8cdbf30 1805.22 2005-05-26 14:24:00
d2ee9760 181 - improved base locating in MP engines
182 - improved error messages in C::E::HTTP::Daemon
183 - hostnames are now resolved on demand unless provided by engine
184 - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
99386274 185
db046247 1865.21 2005-05-24 14:56:00
b7b011a9 187 - fixed a bug in https detection
9ddd9d05 188 - fixed auto chain finally
895b2303 189 - added MYAPP_HOME and CATALYST_HOME environment variables
b7b011a9 190
61a0806c 1915.20 2005-05-18 19:52:00
a783a49e 192 - improved uploads and parameters
77d12cae 193 - added $c->req->protocol and $c->req->secure
194 - added $c->req->user and $c->req->uri
8f591211 195 - improved error message when forwarding to unknown module
91eeb37b 196 - fixed win32 installer
e88fa058 197 - added deep recursion detection
99d891a5 198 - fixed auto actions
e37b6309 199 - fixed inheritance in dispatcher
0299ba22 200 - allow whitespaces between brackets and quoted string
201 in Path and Regex attributes
97f1b4e7 202 - new helper templates
9cee9588 203 - installer now supports install_base and destdir
61a0806c 204 - allow multiple Catalyst apps to run on the same mod_perl
205 instance (not the same app!)
6890e598 206 - fixed MP2 engines
fc88e495 207 - removed apreq dependency from all MP engines
208 - added support for MP registry scripts
209 - added support for LocationMatch and ScriptAliasMatch in MP engines
6890e598 210 - added SpeedyCGI engine
a783a49e 211
61a0806c 2125.10 2005-04-23 11:16:00
a783a49e 213 - updated dependencies to require latest module::pluggable::fast
214 - new installer for templates and stuff using Module::Build
4f6748f1 215 - scripts are now prefixed, for being installable
216 IMPORTANT: You have to regenerate the script directory,
217 remove Makefile.PL and add Build.PL
adfe7ead 218 - Added compat to install Module::Build if required.
8f591211 219 - Improved: Params handling with MP engines
220 - Fixed: Params handling on POST with CGI engine (Andy Grundman)
221 - Fixed: Helper.pm on Win32 (Matt S Trout)
4f6748f1 222
61a0806c 2235.03 2005-04-19 20:35:00 (Revision 462)
a783a49e 224 - fixed Test example (Torsten Seeman)
225 - added Plugins chapter to manual
bbcadec7 226 - applied doc patch from Robert Boone <robert@rlb3.com>
a783a49e 227 - improved Dispatcher error messages.
228 - refactored so we don't need to include helper from
e9deb4dc 229 Catalyst.pm - Fixes issues with FindBin
5b2a599c 230 - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
87232381 231 - added plugin() method for instant plugins
232 - FCGI is no more considered experimental
bbcadec7 233
61a0806c 2345.02 2005-04-18 10:00:00
2cf9bc57 235 - fixed manifest
236
61a0806c 2375.01 2005-04-17 23:00:00
d7953572 238 - some documentation bugs fixed
f05af9ba 239 - added Catalyst::Utils
eaf14ff4 240 - fixed regexp bug (Matt S Trout)
241 - fixed upload bug with MP19
242 - added $c->req->body
e27582bb 243 - aliased $c->res->output to $c->res->body
ddb46924 244 - Read AUTHOR from passwd or $ENV{AUTHOR} when
245 generating code.
8c8f7c51 246 - extended attribute handling
84cf74e7 247 - added global config for components
d7953572 248
61a0806c 2495.00 2005-04-15 18:00:00
0c28fbd7 250 - new core to support inheritance trees
251 - new syntax for action declaration
252 - new helper system using TT2
b76d7db8 253 - problems with mod_perl2 fixed
5a8fd7e9 254 - added Test::Pod support
6f4e1683 255 - added new server backend with HTTP/1.1 support
256 - added option to run tests against a remote server
0c28fbd7 257 - renamed errors() to error()
ca61af20 258 - more better docs
0c28fbd7 259 - countless minor improvements
ca61af20 260 IMPORTANT: This release is very incompatible to previous ones
261 and you have to regenerate the helper scripts again...
e519ff34 262
61a0806c 2634.34 2005-03-23 07:00:00 2005
9ada3267 264 - added some messages to Makefile.PL
00869ea8 265 - added Catalyst::Engine::Test
266 - added Catalyst::Engine::CGI::NPH
267 - simplified Catalyst::Log to be easier to implement/subclass
268 - added cgi.pl
6f4e1683 269 - updated Catalyst::Test to use Catalyst::Engine::Test
00869ea8 270 - updated helper scripts
271 IMPORTANT: this will be the last time you'll have to regenerate
272 the script directory. We promise!
9ada3267 273
61a0806c 2744.33 2005-03-23 01:00:00 2005
145074c2 275 - documented the log() accessor method in Catalyst (Andrew Ford)
82d2fcbe 276 - added optional arguments to Catalyst::Log methods (Andrew Ford)
a564a4be 277 - removed cgi-server.pl
ffb41d94 278 - added fcgi.pl and Catalyst::Engine::FCGI
b0b7c5e0 279 - fixed an undef durng make test (Dan Sully)
5442009c 280 - new path test (Christian Hansen)
281 IMPORTANT: you have to regenerate the script directory again
82d2fcbe 282
61a0806c 2834.32 2005-03-22 02:10:00 2005
caca1b02 284 - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
285
61a0806c 2864.31 2005-03-22 02:00:00
1c99e125 287 - fixed inheritance (Christian Hansen)
c0d174dc 288 - previous release was borked!
289 fixed that, but you have to regenerate the scripts again :(
1c99e125 290
61a0806c 2914.30 2005-03-21 23:00:00
d2cad154 292 - more documentation (Andrew Ford)
0556eb49 293 - added connection informations (Christian Hansen)
49faa307 294 - HTTP::Request support in Catalyst::Test (Christian Hansen)
3fde004f 295 - moved cgi.pl to nph-cgi.pl
a0bb847e 296 - added Catalyst::Engine::Server (Christian Hansen)
585893b9 297 - removed Catalyst::Test::server
298 - updated helper scripts
299 IMPORTANT: note that you have to regenerate script/server.pl,
300 script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
0556eb49 301
61a0806c 3024.28 2005-03-19 22:00:00
502619e5 303 - fixed isa tree (Christian Hansen)
bc024080 304 - added script/cgi-server.pl, so no more server restarting after
305 code changes
306 - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
502619e5 307
61a0806c 3084.27 2005-03-19 01:00:00
c85ff642 309 - debug message for parameters
23f9d934 310 - Fix redirects (Christian Hansen <ch@ngmedia.com>)
b5524568 311 - some random fixes
312 - new helper api for Catalyst::Helper::* support
313 you have to update script/create.pl to use it
c85ff642 314
61a0806c 3154.26 2005-03-16 10:00:00
5783a9a5 316 - fixed the weird bug that caused regex actions to fail on every
317 second request
c85ff642 318 - more debug messages
748161c4 319 - 100% pod coverage.
5783a9a5 320
61a0806c 3214.25 2005-03-12 18:00:00
f1d0b7ea 322 - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
9a33da6a 323 - improved cgi engine docs (Christoper Hicks)
f1d0b7ea 324
61a0806c 3254.24 2005-03-12 01:00:00
aff93052 326 - updated cookbook example
5ae68c0d 327 - fixed base for apache and https (Andrew Ruthven)
aff93052 328
61a0806c 3294.23 2005-03-09 20:00:00
7e5adedd 330 - no more regex actions in forward
3cb1db8c 331 - added support for test directories t/m, t/v and t/c
7e5adedd 332
61a0806c 3334.22 2005-03-08 20:00:00
0b944e63 334 - catch errors in application class
aff93052 335 - handle die properly.
0b944e63 336
61a0806c 3374.21 2005-03-05 17:00:00
d01df17d 338 - fixed docs
339
61a0806c 3404.20 2005-03-04 22:00:00
91864987 341 - moved bin to script
342
61a0806c 3434.13 2005-03-03 11:00:00
0ea0c2c3 344 - improved documentation
1df125c9 345 - pod coverage test for helper generated apps
ad41e777 346 - new helper api
0ea0c2c3 347
61a0806c 3484.12 2005-03-02 11:00:00 2005
5ddd05a0 349 - server_base sucks, removed
9b2bc37b 350 - added $c->log->dump()
5ddd05a0 351
61a0806c 3524.11 2005-03-02 11:00:00 2005
7833fdfc 353 - removed some warnings
354 - improved docs
7242d068 355 - private prefixed actions override private non prefixed actions
8495c1de 356 - added server_base
4a6895ce 357 - updated Catalyst::Manual::Intro
7833fdfc 358
61a0806c 3594.10 2005-03-02 10:00:00 2005
7833fdfc 360 - improved documentation
361 - fixed upload bug
362 - fixed prefixed private actions bug
363 - fixed more little bugs
364
61a0806c 3654.01 2005-03-01 10:00:00 2005
03a53815 366 - improved documentation
d7c505f3 367 - documentation fixes (Johan Lindstrom)
03a53815 368
61a0806c 3694.00 2005-02-27 22:00:00
fc7ec1d9 370 - more verbose debug messages, especially for forward()
371 - implemented prefixed prvate actions, icluding built in
372 !?default, !?begin and !?end
373 - new Catalyst::Manual::Intro
374 - new helpers, bin/catalyst
375 - helper api
376
61a0806c 3773.11 2005-02-23 21:00:00
fc7ec1d9 378 - added dependency to UNIVERSAL::require (Marcus Ramberg)
379 - added a little workaround for a warning in Catalyst::Test
380 (Marcus Ramberg)
381 - improved documentation for actions
382
61a0806c 3833.10 2005-02-19 20:00:00
fc7ec1d9 384 - removed roles management from Catalyst::Engine
385 and added it to Catalyst::Plugin::Authentication::CDBI
386
61a0806c 3873.04 2005-02-17 21:00:00
fc7ec1d9 388 - error reporting for app class
389 - no more engine debug messages
390 - class->method forwards get resolved now
391
61a0806c 3923.03 2005-02-16 23:00:00
fc7ec1d9 393 - friendlier statistics
394
61a0806c 3953.02 2005-02-16 22:00:00
fc7ec1d9 396 - fixed unintialized actions (Marcus Ramberg)
397
61a0806c 3983.01 2005-02-16 20:30:00
fc7ec1d9 399 - better statistics
400
61a0806c 4013.00 2005-02-16 20:00:00
fc7ec1d9 402 - real version number for CPAN.pm
403 - fixed redirect in CGI engine
404 - more statistics in debug logs
405 - ? prefix for forward()
406
61a0806c 4072.99_15 2005-02-02 22:00:00
fc7ec1d9 408 - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
409 - Replaced "Catched" with "Caught" in Catalyst::Engine
410 (Gary Ashton Jones)
411 - replaced _ with ! for private actions
412 - added ? for prefixed actions
413 - misc improvememts
414
61a0806c 4152.99_14 2005-01-31 22:00:00 2005
fc7ec1d9 416 - arguments for _default
417 - $c->entrance removed for more flexibility
418 - added $c->req->method
419
61a0806c 4202.99_13 2005-01-30 18:00:00 2005
fc7ec1d9 421 - POD fixes and improvements
422
61a0806c 4232.99_12 2005-01-28 22:00:00 2005
fc7ec1d9 424 - first development release