Changelogging
[catagits/Catalyst-Runtime.git] / Changes
CommitLineData
6ee497c7 1# This file documents the revision history for Perl extension Catalyst.
3803e98f 2
f04fdeda 35.71000_01 UNRELEASED
4 - Support Moose components so that attribute defaults work
5 and BUILD methods are correctly called (t0m)
6 - Add tests for this (Florian Ragwitz)
58a5e702 7 - Change the $c->visit and $c->go methods to optionally take
8 CaptureArgs, making them useful to call ActionChains with (t0m)
9 - Tests for this (Radoslaw Zielinski)
10 - Fix _invoke_as_component method to find the proper action instance
11 for dispatchable actions so that ->visit or ->going to ActionChains
12 with qw/Class::Name method_name/ works correctly (t0m)
13 - Tests for this (Radoslaw Zielinski)
3879ae54 14 - Throw an exception rather than loading an app if an action
15 tries to chain to itself (t0m)
16 - Tests for this
f2e13bbd 17 - Added Catalyst::Test::ctx_request to be able to inspect
18 the context object after a request is made (Jos Boumans)
cdb049a2 19 - Fix the warnings about regex fallback in component resolution to
20 not hard code ->model in the warning message (t0m)
f04fdeda 21
fad95a5b 225.71000 2009-01-19 17:50:00
e73e3bad 23 - Text::SimpleTable's go as wide as $ENV{COLUMNS} (jhannah)
24 Patch written by Oleg Kostyuk <cub.uanic@gmail.com>
d69c9998 25 - backport go doc patch
b31c0f2e 26 - added ru/ua translations to error page
ffa93d6b 27 - backport stripping build_requires
b31c0f2e 28
f9bcc128 295.7099_04 2009-01-12 13:06:00
9b8ed9d1 30 - Add environment hack for FastCGI under IIS (Simon Bertrang)
31 - Test for this and preexisting Lighty hack (Simon Bertrang)
361359b5 32 - Change streaming test to serve itself rather than 01use.t, making test
33 sync for engines easier (t0m)
c2c4666f 34 - Workaround change in LWP that broke a cookie test (RT #40037)
463dbd0a 35 - Backport go() from 5.8 branch.
6d41c7c3 36 - Fix some Win32 test failures
37 - Add pt translation of error message (wreis)
8d8a9a71 38 - Make :Chained('../action') work (Florian Ragwitz)
463dbd0a 39 - Fix forwarding to action object.
dd3ae38d 40 - Handle leading CRLF in HTTP requests sometimes sent by IE6 in keep-alive requests.
8d8a9a71 41
15548f4e 425.7099_03 2008-07-20 10:10:00
75aff34d 43 - Fix regressions for regexp fallback in model(), view() and controller()
b873d23a 44 - Added the supplied argument to the regexp fallback warning for easier
45 debugging
aa61c190 46 - Ensure ACCEPT_CONTEXT is called for results from component()
fb5f4242 47
4795aab2 485.7099_02 2008-07-16 19:10:00
e5d2cfdb 49 - Added PathPrefix attribute
add14c15 50 - Removed Catalyst::Build; we've long since moved to Module::Install
7ef58180 51 - Updated Catalyst::Test docs to mention the use of HTTP::Request
52 objects (Rafael Kitover)
e5d2cfdb 53
ec730614 545.7099_01 2008-06-25 22:36:00
cbc45ac7 55 - Refactored component resolution (component(), models(), model(), et al). We now
56 throw warnings for two reasons:
57 1) model() or view() was called with no arguments, and two results are returned
58 -- set default_(model|view), current_(model|view) or current_(model|view)_instance
59 instead
60 2) you call a component resolution method with a string, and it resorts to a regexp
61 fallback wherein a result is returned -- if you really want to search, call the
62 method with a regex as the argument
8e9cc26f 63 - remove 0-length query string components so warnings aren't thrown (RT #36428)
3c402610 64 - Update HTTP::Body dep so that the uploadtmp config value will work (RT #22540)
19c01ee1 65 - Fix for LocalRegex when used in the Root controller
b63f73dc 66 - Get some of the optional_* tests working from dirs with spaces (RT #26455)
19bcd236 67 - Fix Catalyst::Utils::home() when application .pm is in the current dir (RT #34437)
83c2a441 68 - Added the ability to remove parameters in req->uri_with() by passing in
69 an undef value (RT #34782)
16ba0864 70 - Added $c->go, to do an internal redispatch to another action, while retaining the
71 contents of the stash
b63f73dc 72
3240358e 735.7014 2008-05-25 15:26:00
b63f73dc 74 - Addition of .conf in restart regex in Catalyst::Engine::HTTP::Restarter::Watcher
75 - Fix regression for relative uri_for arguments after a forward()
76 introduced in 5.7013 (Peter Karman)
77 - Fix regression for "sub foo : Path {}" in the root controller which
78 was introduced when attempting to allow "0" as a Path.
3240358e 79
805.7013 2008-05-16 18:20:00
6942b36d 81 - Provide backwards compatability methods in Catalyst::Stats
e9902dae 82 - Fix subdirs for scripts that run in subdirs more than one level deep.
25f55123 83 - Added test and updated docs for handling the Authorization header
84 under mod_fastcgi/mod_cgi.
c08f8c4d 85 - Fixed bug in HTTP engine where the connection was not closed properly if the
86 client disconnected before sending any headers. (Ton Voon)
5f7b140f 87 - POD fix, IO::FileHandle => IO::Handle (RT #35690)
7a44a0d2 88 - Fix grammar on welcome page (RT #33236)
53119b78 89 - Fix for Path('0') handling (RT #29334)
2f4cd6f5 90 - Workaround for Win32 and c3_mro.t (RT #26452, tested by Kenichi Ishigaki)
57d7305c 91 - Fix for encoding query parameters (edenc)
92 - Fix Chained multiple test (t0m)
25f55123 93
2cbd9d12 945.7012 2007-12-16 23:44:00
7066a4d5 95 - Fix uri_for()'s and uri_with()'s handling of multibyte chars
96 (Daisuke Murase)
300633a8 97 - Fix __PACKAGE__->config->{foo} = 'bar' case with subclassing
e79a3d1c 98 - Add Catalyst::Stats (Jon Schutz)
d2dffcb4 99 - Fixed a bug where ?q=bar=baz is decoded as q=>'bar', not 'bar=baz'.
100 (Tatsuhiko Miyagawa, Masahiro Nagano)
ea52914e 101 - Fixed a bug where -rr (restart regex) command line option could cause
102 shell errors. (Aristotle Pagaltzis, Chisel Wright)
41593b49 103
1045.7011 2007-10-18 20:40:00
9c71d51d 105 - Allow multiple restart directories and added option to follow
106 symlinks in the HTTP::Restarter engine (Sebastian Willert)
107 - Fixed t/optional_http-server-restart.t so it actually tests
108 if the server restarted or notified of an error (Sebastian Willert)
44c6d25a 109 - Return child PID from the HTTP engine when run with the 'background' option.
110 (Emanuele Zeppieri)
4d4d6635 111 - Fixed bug in HTTP engine where writes could fail with
112 'Resource temporarily unavailable'.
d97e195c 113 - Fixed bug where %2b in query parameter is doubly decoded to ' ', instead of '+'
138c9a7c 114 (RT #30087, Gavin Henry, Tatsuhiko Miyagawa, Oleg Pronin)
de19de2e 115 - Fixed bug where req->base and req->uri would include a port number when running
116 in SSL mode.
228f9466 117 - Removed unnecessary sprintf in debug mode that caused warnings on locales where
118 commas are used for decimal markers.
23147ed7 119 - Improved error message for case when server picks up editor save
120 files as module names. (James Mastros)
4d4d6635 121
328f67a7 1225.7010 2007-08-22 07:41:00
123 - Resource forks in 5.7009
124
d0880659 1255.7009 2007-08-22 00:14:00
5ad4786f 126 - Moved Manual.pod to Manual.pm and clarified status of
127 Catalyst-Manual dist
128 - Doc patches to Catalyst::Controller
dd91afb5 129 - remove ignore_loaded from plugin load, commenting why
130 - document the ignore_loaded feature in Catalyst::Utils
4ca147fa 131 - Add testing of inline plugins.
5254e926 132
1335.7008 2007-08-13 08:40:00
3b4d1251 134 - Added $c->request->query_keywords for getting the keywords
135 (a query string with no parameters).
136 - Add undef warning for uri_for.
137 - Fix bug where a nested component would be setup twice.
138 - Make ensure_class_loaded behave better with malformed class name.
139 - Make _register_plugin use ensure_class_loaded.
140 - Remove 'Argument "??" isn't numeric in sprintf' warning.
12bf12c0 141 (Emanuele Zeppieri)
45eb6565 142 - Fixed a bug where Content-Length could be set to 0 if a filehandle
143 object in $c->response->body did not report a size.
1b45d7e5 144 - Fixed issue where development server running in fork mode did not
145 properly exit after a write error.
146 (http://rt.cpan.org/Ticket/Display.html?id=27135)
3b4d1251 147 - Remove warning for captures that are undef.
878b821c 148 - Fixed $c->read and parse_on_demand mode.
e512dd24 149 - Fixed a bug with the HTTP engine where very large response bodies
150 would not be sent properly.
45eb6565 151
46372e65 1525.7007 2007-03-13 14:18:00
933ba403 153 - Many performance improvements by not using URI.pm:
154 * $c->uri_for (approx. 8x faster)
155 * $c->engine->prepare_path (approx. 27x faster)
156 * $c->engine->prepare_query_parameters (approx. 5x faster)
5c2c224d 157 - Updated HTTP::Body dependency to 0.9 which fixes the following issues:
158 * Handle when IE sometimes sends an extra CRLF after the POST body.
159 * Empty fields in multipart/form-data POSTs are no longer ignored.
160 * Uploaded files with the name "0" are no longer ignored.
933ba403 161 - Sending SIGHUP to the dev server will now cause it to restart.
162 - Allow "0" for a path in uri_for.
06744540 163 - Performance and stability improvements to the built-in HTTP server.
db9db407 164 - Don't ignore file uploads if form contains a text field with the same name.
165 (Carl Franks)
951572c0 166 - Support restart_delay of 0 (for use in the POE engine).
847e3257 167 - Skip body processing if we don't have a Content-Length header.
65bf97ed 168 Results in about a 9% performance increase when handling GET/HEAD
169 requests.
39655cdc 170 - Add a default body to redirect responses.
72f87c4b 171 - MyApp->model/view now looks at MyApp->config->{default_view/model}
172 (Bogdan Lucaciu)
2db8beac 173
59ac2b86 1745.7006 2006-11-15 14.18
2db8beac 175 - Updated manifest
176 - Fix Slurp dependency
65bf97ed 177 - Updated HTTP::Body dependency to 0.6, 0.5 can break on large POST
178 requests.
d0f0fcf6 179 - Skip utf8 fix for undef values in uri_with() and uri_for()
69eecfe5 180
3e6f3bd6 1815.7005 2006-11-07 19:37:35
3aa14091 182 - Fixed lighttpd tests to be properly skipped.
183 - Moved IE workarounds to exist only in the HTTP engine.
b1eac6af 184 - Added installation instructions (from Catalyst-Manual dist)
3aa14091 185
1865.7004 2006-11-06 20:48:35
3150d774 187 - Fix Engine::HTTP crash when using IE. (Jesper Krogh, Peter Edwards)
1807fc27 188 - clean up Catalyst::Utils to handle some edge cases
a72b503e 189 - Properly work around lighttpd PATH_INFO vs. SCRIPT_NAME bug
1807fc27 190 (Mark Blythe)
b2a3cbd1 191 - add _application accessor to Catalyst::Base
1807fc27 192 - Support current_view
b2a3cbd1 193 - Allow use of Catalyst::Test without app name (Ton Voon, Altinity)
1807fc27 194 - Catalyst::Manual moved to its own package
195 - Add option to FastCGI engine to send errors to stdout, not the web server
a72b503e 196 - Use Module::Install's auto_install to install prerequisite modules
197 - various documentation fixes and improvements
2db8beac 198
8df78603 1995.7003 2006-09-21 16:29:45
200 - Additions and updates to tutorial
201
087ce3bb 2025.7002 2006-09-17 19:35:32
7f64ae17 203 - unescape captures to match args
204 - fix for relative Chained under namespace '' (root)
6d316c39 205 - fix for hashrefs in action attributes from config
f505df49 206 - fix for Chained to require correct number of CaptureArgs
7f64ae17 207
2bf9a2ec 2085.7001 2006-07-19 23:46:54
0435af55 209 - fix for component loading
210 - uri_for and uri_with now behave as they used to with non-
211 array references
212
0db1da0f 2135.7000 2006-07-07 08:08:08
5db46287 214 - fix FCGI.pm warning message with FastCGI engine
9d8e174a 215 - bumped inc::Module::Install to 0.63 in Makefile.PL
8b13f357 216 - fixes to uri_for_action for DispatchType::Chained
3e6f3bd6 217 - Further doc work.
218 - Minor code cleanups
219 - Changed catalyst.pl to depend on Catalyst::Devel
4ba28188 220
ebaf0dde 2215.70_03 2006-06-28 16:42:00
bc7e54f2 222 - fixup to registered plugins debug at app startup
223 - refactored Catalyst::Utils::home
ebaf0dde 224
2255.70_02 2006-06-27 11:51:00
2db8beac 226 - Updated tutorial.
ebaf0dde 227
2285.70_01 2006-06-26 10:49:00
229
ccea086c 230 - fixed a Catalyst::Base bug causing duplicate action registrations
231 - modified DispatchTypes to support multiple registrations
232 - added Catalyst::Runtime module as dist marker
233 - added Catalyst::ActionChain and Chained DispatchType
9a6ecf4f 234 - removed retarded registration requirement in dispatcher
364d7324 235 - removed Module::Pluggable::Fast hack in favor of
236 Module::Pluggable::Object
ea0e58d9 237 - extended uri_for, added dispatcher->uri_for_action
2a563513 238 - added Catalyst::Base->action_for('methodname')
0bd5f8a2 239 - checked and tested :Args multimethod dispatch
c02f7490 240 - added ability to set action attributes from controller config
baf6a3db 241 - added merge_config_hashes() as a convenience method
fa32ac82 242 - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
243 - Removed test dependencies on Test::NoWarnings, Test::MockObject
1e514a51 244 - Removed dependency on UNIVERSAL::require
723f0262 245 - Split out Catalyst::Helper into a new distribution
246 - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
c82ed742 247 - nuked each() out of core with prejudice (due to lurking buglets)
248 - Added tests from phaylon for dispatcher precedence
16d306fa 249 - Use Class::Inspector->loaded($class) instead of $class->can('can')
734a1e11 250 - Added ActionClass attribute
e6dc3059 251 - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
825dbf85 252 - Updated docs for Catalyst::Component
b8f669f3 253 - Separated execute and dispatch on Catalyst::Action
34d28dfd 254 - cleaned up logging and debug output
2db8beac 255 - significant documentation revisions
5168a5fc 256 - Added warning for setup being called twice
60fa95ba 257 - Fix pod to use DBIC::Schema instead of DBIC model
5e707396 258 - Fix ->config failing to copy _config for subclassing
f63c03e4 259 - Updated log format
260 - Updated debug dump
5e707396 261
50f6a990 2625.6902 2006-05-04 13:00:00
263 - Remove tarballs and OSX metadata files.
264
2655.6901 2006-05-03 11.17:00
f5dd5cc5 266 - Module::Install didn't overwrite META.yml.
267
50f6a990 2685.6900 2006-05-03 11.17:00
052a2d89 269 - Stupid pause indexer can't count.
270 - Better fix for Catalyst::Test
271 - more tests.
272
2735.682 2006-04-27 13:51:00
274 - Damn OSX attributes again :(
275
2765.681 2006-04-27 08:47:00
277 - Updated manifest.
278 - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
279
a9558b34 2805.68 2006-04-26 12:23:00
281 - ConfigLoader: Updated to version 0.06
282 - fixed undef warnings in uri_for() and uri_with()
2db8beac 283 - Fixed Catalyst::Test to report errors on failed Class load
a9558b34 284
38d13baa 2855.678 2006-04-24 12:30:00
286 - Re-release of 5.67 without OSX metadata files.
287
b4b01a8a 2885.67 2006-04-23 08:50:00
38d13baa 289 - Added $c->req->uri_with() helper
4fe3060e 290 - ConfigLoader: Updated to version 0.05
4c423abf 291 - Fix up Engine to avoid a new 5.8.8 warning
db5891bf 292 - Added app name with :: support for PAR
3b88a455 293 - Added $c->models/views/controllers
d84a238a 294 - Static::Simple: Unescape the URI path before looking for the file.
295 This fixes issues with files that have spaces.
296 - Looping and recursion tests plus a fix
b4b01a8a 297 - Added lots of API documentation. Refactored main pod.
d84a238a 298 - Changed default behaviors for $c->model/$c->controller/$c->view
299 to more sane settings.
300 - added the clear_errors method - an alias for error(0)
1dafef55 301 - Added tmpdir option for uploads (woremacx)
7257e9db 302 - Applied patch from GEOFFR to allow normal filehandles.
c8db5001 303 - Refactored Dispatcher internals for better readability and speedup
304 (stress tests run 12% faster)
9ce44430 305 - Allow $c->error to run as a class method
649fd1fa 306
f1bbebac 3075.66 2006-03-10 17:48:00
3736410f 308 - Added Test::WWW::Mechanize::Catalyst support
6aaa1c60 309 - Cleaned generated tests
d84a238a 310 - Added Root controller concept
e70a5d36 311 - Updated ConfigLoader plugin to version 0.04
6aa6b72b 312
855ed931 3135.65 2006-02-21 10:34:00
314 - Added plugin introspection.
315 - Support optional hashref as last param for parameters in uri_for.
316 - Updated tutorial to be more complete.
317 - Applied args patch from antirice (Fixes Ticket #67)
8327e2e2 318
6e234050 3195.64 2006-02-07 20:29:00
9f778270 320 - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
321 was not run. (Eric Wong)
92ffbc90 322 - Cleaned up generated tests
1a7b17db 323 - Updated YAML support to use ConfigLoader
595f3872 324 - Fixed path dispatch to canonicalise correctly
325 (see http://dev.catalyst.perl.org/ticket/62)
aa2b0d97 326 - Added Catalyst::Manual::About
595f3872 327
a6ad13b6 3285.63 2006-01-22 00:00:00
83cbe493 329 - Updated prereq versions
330
ff5577c4 3315.62 2006-01-17 16:30:00
0a73a212 332 - Large update to the tutorial (castaway)
99f187d6 333 - Added YAML config support
22247e54 334 - Added COMPONENT() and ACCEPT_CONTEXT() support
5513038d 335 - Action list in debug mode is now displayed as a tree in the
336 correct execution order.
9b0a3e0f 337 - Fixed engine detection to allow custom mod_perl engines.
0db14221 338 - Static::Simple: Fixed bug in ignore_dirs under win32.
d10c3e60 339 - Display version numbers of loaded plugins. (Curtis Poe)
5ace8f96 340 - Added class and method for caught exception messages.
20682ed8 341 - Updated PAR support to use "make catalyst_par",
5ace8f96 342 packages are no longer written by Makefile.PL.
8f62c91a 343 - Automatically determine Content-Length when serving a
344 filehandle.
5ace8f96 345 - Exceptions now return status 500.
346 - Updated for Module::Install 0.44.
347 - Fixed additional file installation for multi level app names.
0bcb98c7 348 - Added REDIRECT_URL support for applications running behind
349 a RewriteRule in Apache. (Carl Franks)
6f2e0021 350 - Fixed FastCGI engine under win32. (Carl Franks)
d7d72ad9 351 - FastCGI doc updates (Bill Moseley)
29f5acef 352 - Bugfix for $c->model and friends (defined).
0bcb98c7 353
022d1311 3545.61 2005-12-02 00:00:00
355 - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
356
e1ab96e1 3575.60 2005-12-01 22:15:00
61a9002d 358 - Fixed Path and index actions in the appclass,
359 including those that attach to /
360 - Index is now weighted higher than Path
6780cd43 361 - Fixed restarter and -d debug switch in server.pl.
ee26f4bd 362 - Added a warning if you attempt to retrieve a parameter
363 using $c->req->params('foo').
7cf46fb4 364 - Fixed the Module::Install::Catalyst @ISA bug
6fe8a91d 365
294f78ca 3665.59 2005-11-30 13:25:00
8565f89d 367 - Fixed shebang line for generated scripts
86d993ab 368 - Fixed forward to classes ($c->forward(qw/MyApp foo/))
f075593c 369 - Wrap use block in begin to quelch C:C3 warnings
370 - Removed scrollbar from debug output
6c165c4b 371 - Fixed catalyst_par_core() and catalyst_par_multiarch()
86d993ab 372
2e4a6ec3 3735.58 2005-11-24 10:51:00
9624cd13 374 - Added ExtUtils::AutoInstall support
c8db5001 375 - Allow overriding path in Catalyst::Helper.
4e90e3c1 376 - Added -makefile to catalyst.pl to generate a new Makefile.PL.
10d487cb 377 - Restored Catalyst::Build with a deprecation notice.
975ba103 378 - Improved PAR support
b2d40c03 379 - Replaced -short with auto-detection
bb722214 380 - Fixed prereqs, added File::Copy::Recursive
4ca033b1 381 - Static::Simple changes:
382 - Made prepare_action play nice with other plugins by not short-
383 circuiting.
384 - Added tmpl to the ignored extensions.
385 - Fixed security problem if req->path contained '..'.
b2d40c03 386
4aaa6e43 3875.57 2005-11-20 22:45:00
d3e7a648 388 - Updated uri_for to accept undef actions
f991f6a0 389 - Switched to Module::Install
e71a3028 390 - Renamed tests for easier editing
b5ecfcf0 391 - Reformatted documentation
34a83d89 392 - Renamed -nonew to -force
fc04b845 393 - Added PAR support
6c7a1d2f 394 - Added keep-alive support and bug fixes to HTTP engine.
526b698a 395 (Sascha Kiefer)
396 - Added daemonize option to FastCGI engine. (Sam Vilain)
fc04b845 397
18c4e4c0 3985.56 2005-11-16 10:33:00
84528885 399 - Fixed FastCGI engine to not clobber the global %ENV on each
400 request. (Sam Vilain)
245ae014 401 - Updated benchmarking to work with detach
402 - Fixed dispatcher, so $c->req->action(undef) works again
0f895006 403 - Updated Catalyst::Test to use HTTP::Request::AsCGI
dc2fc680 404 - Added -pidfile to external FastCGI server.
84528885 405
b39840da 4065.55 2005-11-15 12:55:00
407 - Fixed multiple cookie handling
408
6f006bd6 4095.54 2005-11-14 22:55:00
410 - Fixed a Module::Pluggable::Fast related bug
411
89546294 4125.53 2005-11-14 15:55:00
413 - Removed t/04prereq.t that was testing for non-required
414 modules.
415
df755a7a 4165.52 2005-11-14 10:57:00
417 - Strip '..'s in static urls to fix security issue.
89546294 418
ff74d616 4195.51 2005-11-14 00:45:00
420 - Changed uri_for to use namespace instead of match.
ccc9f8aa 421
ff74d616 4225.50 2005-11-13 20:45:00
423 - Fixed minor bugs.
424 - Updated docs.
ccc9f8aa 425
527ada13 4265.49_05 2005-11-12 20:45:00
910410b8 427 - Large update to the documentation. (David Kamholz)
138ce4c0 428 - Fixed args handling in forward()
429 - Fixed forwarding to classes
2b01b53c 430 - Fixed catalyst.pl-generated Build.PL Makefile section.
a0eca838 431 - Fixed relative forwarding
432 - Fixed forward arrows in debug output
433
8beacad7 4345.49_04 2005-11-09 23:00:00
db38216d 435 - Made context, dispatcher, engine, request and response classes
8beacad7 436 configurable.
437 - Added $c->stack.
438 - Fixed dispatcher to ignore unknown attributes.
439 - Improved format of startup debug log.
0c74cb08 440 - Updated built in server to restart on win32. (Will Hawes)
6484fba0 441 - Fixed streaming write from a filehandle to stop writing
442 if the browser is closed.
0c74cb08 443 - Added $c->controller, $c->model and $c->view shortcuts.
444 - Switched to Text::SimpleTable.
8c113188 445
60b53d07 4465.49_03 2005-11-03 12:00:00
e561386f 447 - Fixed $c->req->{path} for backwards-compatibility.
59c2b3bd 448 - Allow debug to be disabled via ENV as well as enabled.
e4d88362 449 - Added -scripts option to catalyst.pl for script updating
8264c145 450 - Changed helpers to default to long types, Controller instead of C
5ee249f2 451 - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
452 base classes
c6ef5e69 453 - Added JavaScript to debug screen to show and hide specific dumps
0bbb5a1f 454 - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
fe9da43b 455 - Added multi process external FastCGI support
456 (see myapp_fastcgi.pl -help) (Sam Vilain)
40b0b60c 457 - Restarter process in HTTP engine now properly exits when the
4c980e76 458 parent app is shut down.
459 - Improved performance of restarter loop while watching for
460 changed files.
461 - Restarter will now detect new files added to an app on systems
462 that change directory mtimes when new files are created.
463 - Restarter now properly handles modules that are deleted from an
464 application.
40b0b60c 465 - Fixed memory leak in TestApp.
466
bf88a181 4675.49_02 2005-10-26 12:39:00
bcccee4e 468 - Whole new dispatcher!
469 - Added index action
01033d73 470 - Added path_to method
6e692ab4 471 - Added support for passing an IO::Handle object to $c->res->body.
472 (Andrew Bramble)
a9b78939 473 - Added a new welcome screen.
474 - Included Catalyst buttons and icons in helper.
475 - Added Static::Simple plugin to core.
9438e46e 476 - Added self restarting test server
bc2beef5 477 - Added filename to debug output for uploaded files.
478 - Fixed forwarding with embedded arguments.
e0616220 479 - Fixed handling of escaped query strings.
c4bed79a 480 - Added upload parameters back into $c->req->params.
749472d6 481 - Added multiple paths support to dispatcher
6ff79ec5 482 - Fixed bug in req->path where changing the path added a trailing
483 slash.
4f5ebacd 484 - Removed req->handle and res->handle
4bd82c41 485 - Added prepare_body_chunk method as a hook for upload progress.
58f510c2 486 - Fixed bug in uri_for method when base has no path.
55ddccae 487 - Added automated tests for HTTP, CGI, and FastCGI servers.
58f510c2 488
fbcc39ad 4895.49_01 2005-10-10 10:15:00
490 - Refactored all internals, should be 99% compatible to previous
491 versions.
492 - *IMPORTANT* The Apache engines have been moved to a separate package
493 for this release. Please install Catalyst::Engine::Apache if you
494 need Apache support.
495
496 - Added support for calling forward with arguments in the path, i.e.
497 $c->forward('/foo/bar/arg1/arg2')
498 - Made $c->req->uri a URI object, added req->path_info for CGI compat.
499 Raw query string is available as $c->req->uri->query.
500 - Made $c->req->base a URI object.
501 - Parameters with multiple values (?a=1&a=2) now display properly
502 in the debug output.
503 - Semi-colon separators in query strings now work properly.
504 - Expanded documentation of catalyst.pl (Andrew Ford)
505 - Added support for running as a backend server behind a frontend
506 proxy so req->base and req->address are set properly.
507 - Added an 'abort' method to the Log api, so that you can
508 kill loggging for a whole request.
509 - Added $c->uri_for method to simplify url handling.
510 - Added more tests and reorganized the t directory.
511 - Reimplemented core engines, all are now CGI based for better test
512 coverage and maintainability.
513 - Added fork support to built in test server.
514 - Fixed all memory leaks.
515 - Thread-related bug fixes and tests. We now believe the Catalyst
516 core to be thread-safe.
517 - Added streaming IO support through $c->req->read() and
518 $c->res->write()
519 - Added MyApp->config->{parse_on_demand} (streaming input)
520 - Added $c->req->handle and $c->res->handle
521 - Improved documentation
fd59198f 522 - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
43f0a258 523 - Fixed bug in dispatcher where an invalid path could call a valid
524 action. (Andy Grundman)
5c9b3736 525 - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
fd59198f 526
4e449be9 5275.33 2005-08-10 15:25:00
43f0a258 528 - Now with updated manifest.
fd59198f 529
4e449be9 5305.32 2005-08-10 15:10:00
43f0a258 531 - Dispatcher might fail if object returns false. (Florian Ragwitz)
a1c8f974 532
58e9ce65 5335.31 2005-06-04 12:35:00 (never released to CPAN)
62d9b030 534
ef3250bc 535 - helpers now create .new files where files already exist and differ
62d9b030 536 - fixed $Data::Dumper::Terse (Robin Berjon)
bd7d2e94 537 - added arguments for detach
51f0308d 538 - new credits section in pod
71c3bcc3 539 - fixed detach to allow relative action names (Matt and Robert)
540 - added the ability to have whitespaces in Path( '' ) and Regex( '' )
62d9b030 541
f56990fa 5425.30 2005-06-04 12:35:00
2343e117 543
f56990fa 544 - Fixed a bug where it was not possible to $c->forward to a
545 component
7e71fcce 546 that was not inheriting from Catalyst::Base.
599b5295 547 - Fix for inheritance bug.
a1dad9c1 548 - Allow forward with arguments.
2343e117 549 - Updated cookbook
e0143040 550 - Allow overriding home/root in config.
d2ee9760 551 - make module build cons README automatically.
552 - prettify home path by resolving '..' (Andy Grundman)
f56990fa 553 - improved helper templates a bit, new naming scheme for tests.
d2ee9760 554 - added support for case sensitivity, MyApp->config->{case_sensitive}
ef16e169 555 - added $c->detach for non-returning forwards
d2ee9760 556 - added unified error handling, Catalyst::Exception
557 - added section on param handling in Intro.pod
558 - added $c->request->cookie
559 - added Catalyst::Setup
560 - refactored Catalyst::import()
561 - improved rendering of error messages in debug mode
562 - fixed a bug in Catalyst::Helper::mk_dir
ef16e169 563 - further doc changes, esp. to Intro.pod
abddf0b5 564
49ba64d7 5655.23 2005-06-03 02:30:00
8a0ec4fd 566 - added support for non Catalyst::Base components to live in namespace
567 - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
a268a011 568
d8cdbf30 5695.22 2005-05-26 14:24:00
d2ee9760 570 - improved base locating in MP engines
571 - improved error messages in C::E::HTTP::Daemon
572 - hostnames are now resolved on demand unless provided by engine
573 - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
99386274 574
db046247 5755.21 2005-05-24 14:56:00
b7b011a9 576 - fixed a bug in https detection
9ddd9d05 577 - fixed auto chain finally
895b2303 578 - added MYAPP_HOME and CATALYST_HOME environment variables
b7b011a9 579
61a0806c 5805.20 2005-05-18 19:52:00
a783a49e 581 - improved uploads and parameters
77d12cae 582 - added $c->req->protocol and $c->req->secure
583 - added $c->req->user and $c->req->uri
8f591211 584 - improved error message when forwarding to unknown module
91eeb37b 585 - fixed win32 installer
e88fa058 586 - added deep recursion detection
99d891a5 587 - fixed auto actions
e37b6309 588 - fixed inheritance in dispatcher
0299ba22 589 - allow whitespaces between brackets and quoted string
590 in Path and Regex attributes
97f1b4e7 591 - new helper templates
9cee9588 592 - installer now supports install_base and destdir
61a0806c 593 - allow multiple Catalyst apps to run on the same mod_perl
594 instance (not the same app!)
6890e598 595 - fixed MP2 engines
fc88e495 596 - removed apreq dependency from all MP engines
597 - added support for MP registry scripts
598 - added support for LocationMatch and ScriptAliasMatch in MP engines
6890e598 599 - added SpeedyCGI engine
a783a49e 600
61a0806c 6015.10 2005-04-23 11:16:00
a783a49e 602 - updated dependencies to require latest module::pluggable::fast
603 - new installer for templates and stuff using Module::Build
4f6748f1 604 - scripts are now prefixed, for being installable
605 IMPORTANT: You have to regenerate the script directory,
606 remove Makefile.PL and add Build.PL
adfe7ead 607 - Added compat to install Module::Build if required.
8f591211 608 - Improved: Params handling with MP engines
609 - Fixed: Params handling on POST with CGI engine (Andy Grundman)
610 - Fixed: Helper.pm on Win32 (Matt S Trout)
4f6748f1 611
61a0806c 6125.03 2005-04-19 20:35:00 (Revision 462)
a783a49e 613 - fixed Test example (Torsten Seeman)
614 - added Plugins chapter to manual
bbcadec7 615 - applied doc patch from Robert Boone <robert@rlb3.com>
a783a49e 616 - improved Dispatcher error messages.
617 - refactored so we don't need to include helper from
e9deb4dc 618 Catalyst.pm - Fixes issues with FindBin
5b2a599c 619 - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
87232381 620 - added plugin() method for instant plugins
621 - FCGI is no more considered experimental
bbcadec7 622
61a0806c 6235.02 2005-04-18 10:00:00
2cf9bc57 624 - fixed manifest
625
61a0806c 6265.01 2005-04-17 23:00:00
d7953572 627 - some documentation bugs fixed
f05af9ba 628 - added Catalyst::Utils
eaf14ff4 629 - fixed regexp bug (Matt S Trout)
630 - fixed upload bug with MP19
631 - added $c->req->body
e27582bb 632 - aliased $c->res->output to $c->res->body
ddb46924 633 - Read AUTHOR from passwd or $ENV{AUTHOR} when
634 generating code.
8c8f7c51 635 - extended attribute handling
84cf74e7 636 - added global config for components
d7953572 637
61a0806c 6385.00 2005-04-15 18:00:00
0c28fbd7 639 - new core to support inheritance trees
640 - new syntax for action declaration
641 - new helper system using TT2
b76d7db8 642 - problems with mod_perl2 fixed
5a8fd7e9 643 - added Test::Pod support
6f4e1683 644 - added new server backend with HTTP/1.1 support
645 - added option to run tests against a remote server
0c28fbd7 646 - renamed errors() to error()
ca61af20 647 - more better docs
0c28fbd7 648 - countless minor improvements
ca61af20 649 IMPORTANT: This release is very incompatible to previous ones
650 and you have to regenerate the helper scripts again...
e519ff34 651
61a0806c 6524.34 2005-03-23 07:00:00 2005
9ada3267 653 - added some messages to Makefile.PL
00869ea8 654 - added Catalyst::Engine::Test
655 - added Catalyst::Engine::CGI::NPH
656 - simplified Catalyst::Log to be easier to implement/subclass
657 - added cgi.pl
6f4e1683 658 - updated Catalyst::Test to use Catalyst::Engine::Test
00869ea8 659 - updated helper scripts
660 IMPORTANT: this will be the last time you'll have to regenerate
661 the script directory. We promise!
9ada3267 662
61a0806c 6634.33 2005-03-23 01:00:00 2005
145074c2 664 - documented the log() accessor method in Catalyst (Andrew Ford)
82d2fcbe 665 - added optional arguments to Catalyst::Log methods (Andrew Ford)
a564a4be 666 - removed cgi-server.pl
ffb41d94 667 - added fcgi.pl and Catalyst::Engine::FCGI
b0b7c5e0 668 - fixed an undef durng make test (Dan Sully)
5442009c 669 - new path test (Christian Hansen)
670 IMPORTANT: you have to regenerate the script directory again
82d2fcbe 671
61a0806c 6724.32 2005-03-22 02:10:00 2005
caca1b02 673 - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
674
61a0806c 6754.31 2005-03-22 02:00:00
1c99e125 676 - fixed inheritance (Christian Hansen)
c0d174dc 677 - previous release was borked!
678 fixed that, but you have to regenerate the scripts again :(
1c99e125 679
61a0806c 6804.30 2005-03-21 23:00:00
d2cad154 681 - more documentation (Andrew Ford)
0556eb49 682 - added connection informations (Christian Hansen)
49faa307 683 - HTTP::Request support in Catalyst::Test (Christian Hansen)
3fde004f 684 - moved cgi.pl to nph-cgi.pl
a0bb847e 685 - added Catalyst::Engine::Server (Christian Hansen)
585893b9 686 - removed Catalyst::Test::server
687 - updated helper scripts
688 IMPORTANT: note that you have to regenerate script/server.pl,
689 script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
0556eb49 690
61a0806c 6914.28 2005-03-19 22:00:00
502619e5 692 - fixed isa tree (Christian Hansen)
bc024080 693 - added script/cgi-server.pl, so no more server restarting after
694 code changes
695 - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
502619e5 696
61a0806c 6974.27 2005-03-19 01:00:00
c85ff642 698 - debug message for parameters
23f9d934 699 - Fix redirects (Christian Hansen <ch@ngmedia.com>)
b5524568 700 - some random fixes
701 - new helper api for Catalyst::Helper::* support
702 you have to update script/create.pl to use it
c85ff642 703
61a0806c 7044.26 2005-03-16 10:00:00
5783a9a5 705 - fixed the weird bug that caused regex actions to fail on every
706 second request
c85ff642 707 - more debug messages
748161c4 708 - 100% pod coverage.
5783a9a5 709
61a0806c 7104.25 2005-03-12 18:00:00
f1d0b7ea 711 - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
9a33da6a 712 - improved cgi engine docs (Christoper Hicks)
f1d0b7ea 713
61a0806c 7144.24 2005-03-12 01:00:00
aff93052 715 - updated cookbook example
5ae68c0d 716 - fixed base for apache and https (Andrew Ruthven)
aff93052 717
61a0806c 7184.23 2005-03-09 20:00:00
7e5adedd 719 - no more regex actions in forward
3cb1db8c 720 - added support for test directories t/m, t/v and t/c
7e5adedd 721
61a0806c 7224.22 2005-03-08 20:00:00
0b944e63 723 - catch errors in application class
aff93052 724 - handle die properly.
0b944e63 725
61a0806c 7264.21 2005-03-05 17:00:00
d01df17d 727 - fixed docs
728
61a0806c 7294.20 2005-03-04 22:00:00
91864987 730 - moved bin to script
731
61a0806c 7324.13 2005-03-03 11:00:00
0ea0c2c3 733 - improved documentation
1df125c9 734 - pod coverage test for helper generated apps
ad41e777 735 - new helper api
0ea0c2c3 736
61a0806c 7374.12 2005-03-02 11:00:00 2005
5ddd05a0 738 - server_base sucks, removed
9b2bc37b 739 - added $c->log->dump()
5ddd05a0 740
61a0806c 7414.11 2005-03-02 11:00:00 2005
7833fdfc 742 - removed some warnings
743 - improved docs
7242d068 744 - private prefixed actions override private non prefixed actions
8495c1de 745 - added server_base
4a6895ce 746 - updated Catalyst::Manual::Intro
7833fdfc 747
61a0806c 7484.10 2005-03-02 10:00:00 2005
7833fdfc 749 - improved documentation
750 - fixed upload bug
751 - fixed prefixed private actions bug
752 - fixed more little bugs
753
61a0806c 7544.01 2005-03-01 10:00:00 2005
03a53815 755 - improved documentation
d7c505f3 756 - documentation fixes (Johan Lindstrom)
03a53815 757
61a0806c 7584.00 2005-02-27 22:00:00
fc7ec1d9 759 - more verbose debug messages, especially for forward()
760 - implemented prefixed prvate actions, icluding built in
761 !?default, !?begin and !?end
762 - new Catalyst::Manual::Intro
763 - new helpers, bin/catalyst
764 - helper api
765
61a0806c 7663.11 2005-02-23 21:00:00
fc7ec1d9 767 - added dependency to UNIVERSAL::require (Marcus Ramberg)
768 - added a little workaround for a warning in Catalyst::Test
769 (Marcus Ramberg)
770 - improved documentation for actions
771
61a0806c 7723.10 2005-02-19 20:00:00
fc7ec1d9 773 - removed roles management from Catalyst::Engine
774 and added it to Catalyst::Plugin::Authentication::CDBI
775
61a0806c 7763.04 2005-02-17 21:00:00
fc7ec1d9 777 - error reporting for app class
778 - no more engine debug messages
779 - class->method forwards get resolved now
780
61a0806c 7813.03 2005-02-16 23:00:00
fc7ec1d9 782 - friendlier statistics
783
61a0806c 7843.02 2005-02-16 22:00:00
fc7ec1d9 785 - fixed unintialized actions (Marcus Ramberg)
786
61a0806c 7873.01 2005-02-16 20:30:00
fc7ec1d9 788 - better statistics
789
61a0806c 7903.00 2005-02-16 20:00:00
fc7ec1d9 791 - real version number for CPAN.pm
792 - fixed redirect in CGI engine
793 - more statistics in debug logs
794 - ? prefix for forward()
795
61a0806c 7962.99_15 2005-02-02 22:00:00
fc7ec1d9 797 - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
798 - Replaced "Catched" with "Caught" in Catalyst::Engine
799 (Gary Ashton Jones)
800 - replaced _ with ! for private actions
801 - added ? for prefixed actions
802 - misc improvememts
803
61a0806c 8042.99_14 2005-01-31 22:00:00 2005
fc7ec1d9 805 - arguments for _default
806 - $c->entrance removed for more flexibility
807 - added $c->req->method
808
61a0806c 8092.99_13 2005-01-30 18:00:00 2005
fc7ec1d9 810 - POD fixes and improvements
811
61a0806c 8122.99_12 2005-01-28 22:00:00 2005
fc7ec1d9 813 - first development release