Deleted the old Restarter and associated code.
[catagits/Catalyst-Runtime.git] / Changes
1 # This file documents the revision history for Perl extension Catalyst.
2
3   Bug fixes:
4        - Fix replace_constructor warning to actually work if you make your
5          application class immutable without that option.
6
7   Refactoring / cleanups:
8        - Deleted the Restarter engine and its Watcher code. Use the
9          new Catalyst::Restarter in a recent Catalyst::Devel instead.
10
11 5.80007 2009-06-30 23:54:34
12
13   Bug fixes:
14        - Don't mangle query parameters passed to uri_for
15          - Tests for this (Byron Young + Amir Sadoughi)
16        - Inherited controller methods can now be specified in
17          config->{action(s)}
18        - Assigning an undef response body no longer produces warnings
19        - Fix C3 incompatibility bug caused if you use Moose in MyApp.pm and
20          add Catalyst to the right hand side of this in @ISA.
21        - Make Catalyst.pm implement the Component::ApplicationAttribute
22          interface so defining actions in MyApp.pm works again, if the
23          actions have attributes that cause $self->_application to be used
24          (like ActionClass).
25
26   New features:
27        - Add optional second argument to uri_with which appends to existing
28          params rather than replacing them. (foo=1 becomes foo=1&foo=2 when
29          uri_with({ foo => 2 }, { mode => 'append' }) is called on a foo=1
30          URI.
31
32 5.80006 2009-06-29 23:37:47
33
34   Bug fixes:
35         - Revert change to URL encode things passed into $c->uri_for
36           Args and CaptureArgs as this causes breakage to pre-existing
37           applications.
38         - Remove use of Test::MockObject as it doesn't install from CPAN
39           in some environments.
40         - Remove use of dclone to deep copy configs and replace with
41           Catalyst::Utils::merge_hashes which has the same effect, of
42           ensuring child classes don't inherit their parent's config,
43           except works correctly with closures.
44         - Add Class::C3::reinitialize into Catalyst::Test to avoid weird
45           bugs in ctx_request (bokutin in RT#46459)
46         - Fix issues with _parse_PathPrefix_attr method in Catalyst::Controller
47           (jasonk in RT#42816)
48         - Fix bugs with action sorting:
49           - Path actions sorted so that the most specific wins.
50           - Action methods named default and index fixed.
51
52   New features:
53         - Use ~ as prefix for plugins or action classes which are located in
54           MyApp::Plugin / MyApp::Action (mo)
55         - Controller methods without attributes are now considered actions if
56           they are specified in config->{action(s)} (mo)
57         - Add Catalyst::Component::ContextClosure as an easy way to create code
58           references, that close over the context, without creating leaks.
59
60   Refactoring / cleanups:
61         - Clean namespaces in Catalyst::Exception*.
62         - Turn Catalyst::Exception into an actual class and make the throw
63           method create instances of it. They can still be used as normal
64           strings, as before, as they are overloaded to stringify to their
65           error message.
66         - Add a rethrow method to Catalyst::Exception.
67         - Add Catalyst::Exception::Detach and ::Go, and refactor detach() and
68           go() to use them instead of magic, global strings.
69           Fixes RT#47366
70         - Clean up getting metaclass instance and making app class immutable
71           again in Catalyst::Test
72
73 5.80005 2009-06-06 14:40:00
74
75   Behaviour changes:
76         - Arguments ($c->req->args) in Chained dispatch are now automatically
77           URL decoded to be consistent with Local/Path dispatch
78
79   Documentation:
80         - Clarify correct techniques for Moose controllers (domm)
81
82   Bug fixes:
83         - Further change pushing 'env' attribute down into Catalyst::Engine
84           to make $c->engine->env work in all cases (kmx)
85         - Also fix $c->engine->env in Catalyst::Test tests (kmx)
86           - Tests for this
87         - Fix Catalyst failing to start if any plugin changed $_ whilst
88           loading
89           - Tests for this
90         - Be stricter about arguments to Args attributes for Chained actions,
91           so that they blow up on load instead of causing undefined behavior
92           later on
93           - Tests for this
94         - Prefer Path actions with a smaller (or set) number of Args (caelum)
95           Bug reported here: http://stackoverflow.com/questions/931653/catalyst-action-that-matches-a-single-file-in-the-root-directory/933181#933181
96           - Tests for this
97
98    New features:
99         - Add $c->req->remote_user to disambiguate from $c->req->user (dwc)
100         - Require MooseX::MethodAttributes 0.12 so that action methods
101           (with attributes) can be used in / composed from Moose roles.
102         - Allow the generation of cookies with the HTTPOnly flag set
103           in Catalyst::Engine (kmx)
104
105 5.80004 2009-05-18 17:03:23
106         - Rename the actions attribute in Catalyt::Controller to
107           _controller_actions to avoid name clashes with application
108           controller naming. (random)
109         - Test for using Moose in components which have a non-Moose base class
110           Fixed by 349cda in Moose 0.78
111         - Fix deprecation message for Catalyst::Dispatcher to refer
112           to the class actually calling the deprecated method. RT#45741
113         - Clarify limitations of $request->base and $request->secure.
114           (Phil Mitchell)
115         - Add 'use Catalyst' to documentation for a Moose MyApp class as
116           noted by dmaki.
117         - Fix so that / (and other special characters) are URL encoded when
118           passed into $c->uri_for as Args/CaptureArgs
119         - Fix development server so that $c->engine->env returns the correct
120           environment
121         - Require Moose 0.78 to fix metaclass incompatibility issues
122         - Require MooseX::MethodAttributes 0.10 and use
123           Moose::Meta::Class->initialize rather than Moose->init_meta to fix
124           bugs related to having a 'meta' method in your controller
125         - Fix cases where your application failing to compile could cause perl
126           to report 'Unknown Error'
127         - Support adding Moose::Roles to the plugin list. These are applied to
128           MyApp after plugins have been pushed onto @ISA
129         - Fix calling $c->req->parameters as the first thing you do when
130           parse_on_demand is on
131
132 5.80003 2009-04-29 16:23:53
133         - Various POD tweaks. (hdp, dandv)
134         - Fix formatting error in the regex fallback warning.
135         - Convert the dispatcher's and restarter engine's BUILD method to
136           attribute builders to not override the BUILD method from
137           MooseX::Emulate::Class::Accessor::Fast.
138         - Fix classes without metaclasses restarting, when not using
139           B::Hooks::OP::Check::StashChange
140         - Fix the unattached chain debug table for endpoints with no
141           parents at all.
142         - Turn of test aggregation by default. Only aggregate if the
143           AGGREGATE_TESTS environment variable is set and a recent
144           Test::Aggregate is available.
145         - Bump to MooseX::MethodAttributes 0.09, to gain the
146           get_nearest_methods_with_attributes method allowing methods without
147           attributes in a subclass to override those with attributes in a
148           superclass. This fixes CatalystX::CRUD's method of overriding /
149           disabling functionality from base controllers.
150         - Bump HTTP::Request::AsCGI dependency to avoid broken version
151         - Bump Moose dependency to latest version to fix metaclass
152           incompatibility issues in some cases.
153         - Additional tests for setup_stats method.
154         - Fix log levels in Catalyst::Log to be properly additive.
155         - Fix RT#43375 by sorting results before testing them
156         - Fixes for uri_for_action when using Catalyst::DispatchType::Regex
157           + tests from RT#39369 (norbi)
158         - Partial rewrite and reoganisation of the C3 docs in
159           Catalyst::Upgrading based on feedback from kiffin
160         - If you make your application class immutable and turn off
161           constructor inlining, Catalyst will die and tell you pass
162           the (replace_constructor => 1) argument to
163           make_immutable. (Dave Rolsky)
164
165 5.80002 2009-04-22 01:28:36
166         - Fix CATALYST_DEBUG and MYAPP_DEBUG environment variables
167           turning debuging on if defined, rather than if set.
168           They now force debugging on or off, taking precedence over
169           configuration in your application.
170           - Tests for this
171         - pass replace_constructor to the immutable call to ensure
172           applications get a Moose constructor rather than a C::A one
173         - Fix issues with restarting the application class due to C3 failures
174           on perl 5.10
175         - Work around issues in Moose with initialization order of multiple
176           levels of non-Moose classes inheriting from a Moose class
177           - Test for this
178         - Add backwards compatibility method for Catalyst::Log->body, which
179           has been made private
180         - Fix so that calling $c->req->parameters(undef) does not flatten
181           the request parameters with undef + test
182         - Fix so that width of table of unattached actions for debugging
183           ::DispatchType::Chained varies according to your terminal width
184           (Oleg Kostyuk)
185         - Fix warning message about linearized @ISA in Catalyst::Component
186           (Emanuele Zeppieri)
187         - Require MX::MethodAttributes 0.06 to avoid issues with saying
188           use base 'Catalyst::Controller'; use Moose; losing actions
189         - Fix all of's typos in ::Upgrading and ::Delta (hobbs)
190
191 5.80001 2009-04-18 22:18
192         - Don't inline the constructor for Catalyst::Log to avoid a
193           warning on recent Moose versions.
194         - Add delta documentation
195         - Clean up recursion errors
196         - Extra cross links in dispatch types POD (Ian Wells)
197         - Test uri_with clears query params when they are set to undef
198           (Ian Wells)
199         - Complain about old Catalyst::Devel versions which generated
200           ->setup(qw/-Debug... etc. as this is not recommended
201
202 5.8000_07 2009-04-12 13:37
203         - Add the Catalyst::Dispatcher->dispatch_type method (ash)
204         - Throw an exception rather than loading an app if an action
205           tries to chain to itself
206           - Tests for this
207         - Change the $c->visit and $c->go methods to optionally take
208           CaptureArgs, making them useful to call ActionChains with
209           - Tests for this (radek)
210         - Fix _invoke_as_component method to find the proper action instance
211           for dispatchable actions so that ->visit or ->going to ActionChains
212           with qw/Class::Name method_name/ works correctly
213           - Tests for this (radek)
214         - Added Catalyst::Test::ctx_request to be able to inspect
215           the context object after a request is made (Jos Boumans)
216         - debug() POD rewrite (jhannah)
217         - Change the warning when you have conflicting components to
218           present a list
219         - Move NEXT use and testing deprecated features out to its own
220           test application so that the main TestApp isn't polluted with
221           spurious warnings
222         - Add a warning for the old ::[MVC]:: style naming scheme
223           - Test for this
224         - Kill Class::C3::Adopt::NEXT warnings for the Catalyst:: namespace
225           in production versions
226         - Tidy up Catalyst::ClassData to ensure that all components get
227           the correct metaclass
228         - Make MyApp.pm restartable by unsetting setup_finished in
229           the restarter process
230         - Non-naive implementation of making mutable on restart using
231           B::Hooks::OP::Check::StashChange if installed
232           - Tests for this
233         - Naive implementation of making all components mutable in the
234           forked restart watcher process so native Moose apps using
235           immutable restart correctly.
236           - Tests for this
237         - Bump Moose dependency to 0.70 so that we avoid nasty surprises
238           with is_class_loaded and perl 5.80 when you Moosify MyApp.pm
239         - Clarify that request arguments aren't unescaped automatically
240           (Simon Bertrang) (Closes RT#41153)
241         - Don't require C3 for the MRO test
242         - Bump MX::Emulate::CAF prereq to support list assignment
243         - Remove useless column in chained action debug table.
244         - namespace::clean related cleanups
245         - Import related cleanups and consistency fixes
246         - Fix test suite TestApp /dump/env action
247         - Add $res->code as alias for $res->status
248         - Make Catalyst::ClassData compatible with the latest Class::MOP::Class
249           changes. Also depend on the latest Class::MOP.
250         - Add $c->uri_for_action method.
251         - Don't stringify the meta method. Use its name instead.
252         - Use MooseX::MethodAttributes::Inheritable to contain action
253           attributes. This means that attributes are now represented in the MOP,
254           allowing method modifiers on actions to work as expected.
255         - Provide a reasonable API in Catalyst::Controller for working with
256           and registering actions, allowing a controller sub-class to replace
257           subroutine attributes for action declerations with an alternate
258           syntax.
259         - Instantiate correct sub-class of Moose::Meta::Class for non-Moose
260           components where Catalyst forces the creation of a metaclass instance.
261           This is more correct, and avoids metaclass incompatibility in complex
262           cases
263           - Tests for this
264         - Use of deprecated Catalyst::Base now warns.
265         - Add uri_with tests
266
267 5.8000_06 2009-02-04 21:00
268         - Disallow writing to config after setup
269         - Disallow calling setup more than once
270         - Documentation fix regarding overloading of Engine and Dispatcher
271           instances
272         - Several documentation typo fixes
273         - Stop Makefile.PL from warning about versions that fixed a conflict
274         - Improved upgrading documentation
275         - Seed the RNG in each FastCGI child process (Andrew Rodland)
276         - Properly report dynamic bind port for the development server
277           (Closes RT#38544)
278         - Use the way documented by IO::Socket::INET to get the error message
279           after trying to create a listening socket (Closes RT#41828)
280         - Don't ignore SIGCHLD while handling requests with the dev server
281           (Closes RT#42962)
282
283 5.8000_05 2008-29-01 00:00
284         - Text::SimpleTable's go as wide as $ENV{COLUMNS} (jhannah)
285           Patch written by Oleg Kostyuk <cub.uanic@gmail.com>
286         - Improve docs for visit (mateu)
287         - Add docs for finalize hook (dhoss)
288         - Added ru/ua translations to error page
289         - Improve the clarity and verbosity of the warning when component
290           resolution uses regex fallback. (jhannah)
291         - Handle leading CRLF in HTTP requests sometimes sent by IE6 in
292           keep-alive requests.
293         - Fixes for FastCGI with IIS 6.0 (janus)
294         - Passing request method exported by Catalyst::Test an extra
295           parameter used to be ignored, but started breaking if the parameter
296           was not a hash in 5.8000_04. Extra parameter is now ignored if
297           it isn't a hashref
298         - Fix request argumentss getting corrupted if you override the
299           dispatcher and call an action which detaches (for
300           Catalyst::Plugin::Authorization::ACL)
301         - Fix calling use Catalyst::Test 'MyApp' 'foo' which used to work,
302           but stopped as the 2nd parameter can be an options hash now
303         - Bump Moose dependency to fix make_immutable bug
304         - Use compile time extends in Catalyst::Controller
305         - Make Catalyst::Request::uploads attribute non-lazy, to fix
306           test for Catalyst-Engine-Apache
307         - Bump version of MooseX::Emulate::Class::Accessor::Fast
308         - Stop using MooseX::Adopt::Class::Accessor::Fast by default, to stop
309           breaking other packages which use Class::Accessor::Fast
310         - Remove unused action_container_class attribute from
311           Catalyst::Dispatcher
312         - Replace {_body} instance access with calls to _body accessors
313         - Add backwards compatibility alias methods for private attributes on
314           Catalyst::Dispatcher which used to be public. Needed by
315           Catalyst::Plugin::Server and  Catalyst::Plugin::Authorization::ACL
316         - Fix return value of $c->req->body, which delegates to the body
317           method on the requests HTTP::Body instance
318           - Test for this
319         - Fix calling $c->req->body from inside an overridden prepare_action
320           method in a plugin, as used by Catalyst::Plugin::Server
321           - Test for this
322         - Fix assignment to Catalyst::Dispatcher's preload_dispatch_types and
323           postload_dispatch_types attributes - assigning a list should later
324           return a listref. Fixes Catalyst::Plugin::Server.
325           - Tests for this
326         - Change streaming test to serve itself rather than 01use.t, making
327           test sync for engines easier
328         - Refactor capturing of $app from Catalyst::Controller into
329           Catalyst::Component::ApplicationAttribute for easier reuse in other
330           components
331         - Make the test suites YAML dependency optional
332         - Make debug output show class name for the engine and dispatcher
333           rather than the stringified ref.
334         - Make MyApp immutable at the end of the scope after the setup
335           method is called, fixing issues with plugins which have their
336           own new methods by inlining a constructor on MyApp
337           - Test for this and method modifiers in MyApp
338         - Fix bug causing Catalyst::Request::Upload's basename method
339           to return undef
340           - Test for this (Carl Franks)
341         - Fix loading of classes which do not define any symbols to not
342           die, as it didn't in 5.70
343           - Test for this
344         - Bump MooseX::Emulate::Class::Accessor::Fast dependency
345           to force new version which fixes a lot of plugins
346         - Make log levels additive, and add documentation and tests
347           for the setup_log method, which previously had none.
348           Sewn together by from two patches provided by David E. Wheeler
349         - Switch an around 'new' in Catalyst::Controller to a BUILDARGS
350           method as it's much neater and more obvious what is going on
351         - Add a clearer method on request and response _context
352           attributes, and use if from ::Engine rather than deleting
353           the key from the instance hash
354         - Use handles on tree attribute of Catalyst::Stats to replace
355           trivial delegation methods
356         - Change the following direct hash accesses into attributes:
357           Catalyst::Engine: _prepared_write
358           Catalyst::Engine::CGI: _header_buf
359           Catalyst::Engine::HTTP: options, _keepalive, _write_error
360           Catalyst::Request: _path
361           Catalyst::Stats: tree
362         - Fix issues in Catalyst::Controller::WrapCGI
363           and any other components which import (or define) their
364           own meta method by always explicitly calling
365           Class::MOP::Object->meta inside Catalyst
366           - Add test for this
367         - Add test case for the bug which is causing the
368           Catalyst::Plugin::Authentication tests to fail
369         - Fix a bug in uri_for which could cause it to generate paths
370           with multiple slashes in them.
371           - Add test for this
372         - Fix SKIP block name in t/optional_http-server-restart.t,
373           stopping 'Label not found for "last SKIP"' error from
374           Test::More
375         - Workaround max_redirect 0 bug in LWP
376         - Move live_engine_response_print into aggregate
377         - Fix dependency bug, s/parent/base/ in new test
378         - Fix optional tests to run the live tests in the aggregate
379           dir
380         - Fix Catalyst->go error in remote tests
381         - Fix upload test to work with remote servers, don't check for
382           deleted files
383         - Fix engine_request_uri tests to work on remote server with
384           different URI
385
386 5.8000_04  2008-12-05 12:15:00
387         - Silence Class::C3::Adopt::NEXT warnings in the test suite
388         - Fix loads of 'used once, possible typo' warnings
389         - Additional tests to ensure upload temp files are deleted
390         - Remove use of NEXT from the test suite, except for one case
391           which tests if Class::C3::Adopt::NEXT is working
392         - Use a predicate to avoid recursion in cases where the uri
393           method is overridden by a plugin, and calls the base method,
394           for example Catalyst::Plugin::SmartURI
395           - Test for this (caelum)
396         - Compose the MooseX::Emulate::Class::Accessor::Fast role to
397           Catalyst::Action, Catalyst::Request, and all other modules which
398           inherit from Class::Accessor::Fast in 5.70.
399           This fixes:
400             - Catalyst::Controller::HTML::FormFu (zamolxes)
401             - Catalyst::Request::REST
402           - Test for this
403         - Make hostname resolution lazy (Marc Mims)
404         - Support mocking virtualhosts in test suite (Jason Gottshall)
405         - Add README
406         - Fix TODO list
407         - Use Class::C3::Adopt::NEXT
408         - Ignore C3 warnings on 5.10 when testing ensure_class_loaded
409         - Add TODO test for chained bug (gbjk)
410         - Fix list address in documentation (zarquon)
411         - Fix ACCEPT_CONTEXT on MyApp, called as a class method
412            - Test for this
413         - Bump MooseX::Emulate::Class::Accessor::Fast version requirement to
414           get more back compatibility
415         - Improve documentation for $req->captures (caelum)
416         - Fix a bug in Catalyst::Stats, stopping garbage being inserted into
417           the stats if a user calls begin => but no end => (jhannah)
418            - Test for this (jhannah)
419         - Trim lines sooner in stats to avoid ugly Text::SimpleTable wrapping
420           (jhannah)
421         - Change Catalyst::ClassData to tweak the symbol table inline for
422           performance after profiling
423         - Fix POD typo in finalize_error (jhannah)
424         - Add tests to ensure that we delete the temp files created by
425           HTTP::Body's OctetStream parser
426
427 5.8000_03 2008-10-14 14:13:00
428         - Fix forwarding to Catalyst::Action objects.
429         - Fix links to the mailing lists (RT #39754 and Florian Ragwitz).
430         - Use Class::MOP instead of Class::Inspector.
431         - Change Catalyst::Test to use Sub::Exporter.
432         - Fixed typo in Engine::HTTP::Restarter::Watcher causing -r to complain.
433
434 5.8000_02 2008-10-14 07:59:00
435        - Fix manifest
436
437 5.8000_01 2008-10-13 22:52:00
438         - Port to Moose
439         - Added test for action stringify
440         - Added test for component instances getting $self->{value} from config.
441         - Add Catalyst::Response->print() method
442         - Optionally aggregate tests using Test::Aggregate.
443         - Additional docs for uri_for to mention how to use $c->action and
444           $c->req->captures (jhannah)
445         - List unattached chained actions in Debug mode.
446         - Pod formatting fix for Engine::FastCGI (Oleg Kostyuk).
447         - Add visit, a returning ->go
448
449 5.7XXXXXX XXXX
450         - Workaround change in LWP that broke a cookie test (RT #40037)
451         - Back out go() since that feature's been pushed to 5.80
452         - Fix some Win32 test failures
453         - Add pt translation of error message (wreis)
454         - Make :Chained('../action') work
455         - Add test actions
456         - Chained doc improvements (rev 8326-8328)
457
458 5.7099_03 2008-07-20 10:10:00
459         - Fix regressions for regexp fallback in model(), view() and controller()
460         - Added the supplied argument to the regexp fallback warning for easier
461           debugging
462         - Ensure ACCEPT_CONTEXT is called for results from component()
463
464 5.7099_02 2008-07-16 19:10:00
465         - Added PathPrefix attribute
466         - Removed Catalyst::Build; we've long since moved to Module::Install
467         - Updated Catalyst::Test docs to mention the use of HTTP::Request
468           objects
469
470 5.7099_01 2008-06-25 22:36:00
471         - Refactored component resolution (component(), models(), model(), et al). We now
472           throw warnings for two reasons:
473           1) model() or view() was called with no arguments, and two results are returned
474              -- set default_(model|view), current_(model|view) or current_(model|view)_instance
475              instead
476           2) you call a component resolution method with a string, and it resorts to a regexp
477              fallback wherein a result is returned -- if you really want to search, call the
478              method with a regex as the argument
479         - remove 0-length query string components so warnings aren't thrown (RT #36428)
480         - Update HTTP::Body dep so that the uploadtmp config value will work (RT #22540)
481         - Fix for LocalRegex when used in the Root controller
482         - Get some of the optional_* tests working from dirs with spaces (RT #26455)
483         - Fix Catalyst::Utils::home() when application .pm is in the current dir (RT #34437)
484         - Added the ability to remove parameters in req->uri_with() by passing in
485           an undef value (RT #34782)
486         - Added $c->go, to do an internal redispatch to another action, while retaining the
487           contents of the stash
488
489 5.7014  2008-05-25 15:26:00
490         - Addition of .conf in restart regex in Catalyst::Engine::HTTP::Restarter::Watcher
491         - Fix regression for relative uri_for arguments after a forward()
492           introduced in 5.7013 (Peter Karman)
493         - Fix regression for "sub foo : Path {}" in the root controller which
494           was introduced when attempting to allow "0" as a Path.
495
496 5.7013  2008-05-16 18:20:00
497         - Provide backwards compatability methods in Catalyst::Stats
498         - Fix subdirs for scripts that run in subdirs more than one level deep.
499         - Added test and updated docs for handling the Authorization header
500           under mod_fastcgi/mod_cgi.
501         - Fixed bug in HTTP engine where the connection was not closed properly if the
502           client disconnected before sending any headers. (Ton Voon)
503         - POD fix, IO::FileHandle => IO::Handle (RT #35690)
504         - Fix grammar on welcome page (RT #33236)
505         - Fix for Path('0') handling (RT #29334)
506         - Workaround for Win32 and c3_mro.t (RT #26452, tested by Kenichi Ishigaki)
507         - Fix for encoding query parameters
508         - Fix Chained multiple test
509
510 5.7012  2007-12-16 23:44:00
511         - Fix uri_for()'s and uri_with()'s handling of multibyte chars
512           (Daisuke Murase)
513         - Fix __PACKAGE__->config->{foo} = 'bar' case with subclassing
514         - Add Catalyst::Stats (Jon Schutz)
515         - Fixed a bug where ?q=bar=baz is decoded as q=>'bar', not 'bar=baz'.
516           (Tatsuhiko Miyagawa, Masahiro Nagano)
517         - Fixed a bug where -rr (restart regex) command line option could cause
518           shell errors. (Aristotle Pagaltzis, Chisel Wright)
519
520 5.7011  2007-10-18 20:40:00
521         - Allow multiple restart directories and added option to follow
522           symlinks in the HTTP::Restarter engine (Sebastian Willert)
523         - Fixed t/optional_http-server-restart.t so it actually tests
524           if the server restarted or notified of an error (Sebastian Willert)
525         - Return child PID from the HTTP engine when run with the 'background' option.
526           (Emanuele Zeppieri)
527         - Fixed bug in HTTP engine where writes could fail with
528           'Resource temporarily unavailable'.
529         - Fixed bug where %2b in query parameter is doubly decoded to ' ', instead of '+'
530           (RT #30087, Gavin Henry, Tatsuhiko Miyagawa, Oleg Pronin)
531         - Fixed bug where req->base and req->uri would include a port number when running
532           in SSL mode.
533         - Removed unnecessary sprintf in debug mode that caused warnings on locales where
534           commas are used for decimal markers.
535         - Improved error message for case when server picks up editor save
536           files as module names. (James Mastros)
537
538 5.7010  2007-08-22 07:41:00
539         - Resource forks in 5.7009
540
541 5.7009  2007-08-22 00:14:00
542         - Moved Manual.pod to Manual.pm and clarified status of
543           Catalyst-Manual dist
544         - Doc patches to Catalyst::Controller
545         - remove ignore_loaded from plugin load, commenting why
546         - document the ignore_loaded feature in Catalyst::Utils
547         - Add testing of inline plugins.
548
549 5.7008  2007-08-13 08:40:00
550         - Added $c->request->query_keywords for getting the keywords
551           (a query string with no parameters).
552         - Add undef warning for uri_for.
553         - Fix bug where a nested component would be setup twice.
554         - Make ensure_class_loaded behave better with malformed class name.
555         - Make _register_plugin use ensure_class_loaded.
556         - Remove 'Argument "??" isn't numeric in sprintf' warning.
557           (Emanuele Zeppieri)
558         - Fixed a bug where Content-Length could be set to 0 if a filehandle
559           object in $c->response->body did not report a size.
560         - Fixed issue where development server running in fork mode did not
561           properly exit after a write error.
562           (http://rt.cpan.org/Ticket/Display.html?id=27135)
563         - Remove warning for captures that are undef.
564         - Fixed $c->read and parse_on_demand mode.
565         - Fixed a bug with the HTTP engine where very large response bodies
566           would not be sent properly.
567
568 5.7007  2007-03-13 14:18:00
569         - Many performance improvements by not using URI.pm:
570           * $c->uri_for (approx. 8x faster)
571           * $c->engine->prepare_path (approx. 27x faster)
572           * $c->engine->prepare_query_parameters (approx. 5x faster)
573         - Updated HTTP::Body dependency to 0.9 which fixes the following issues:
574           * Handle when IE sometimes sends an extra CRLF after the POST body.
575           * Empty fields in multipart/form-data POSTs are no longer ignored.
576           * Uploaded files with the name "0" are no longer ignored.
577         - Sending SIGHUP to the dev server will now cause it to restart.
578         - Allow "0" for a path in uri_for.
579         - Performance and stability improvements to the built-in HTTP server.
580         - Don't ignore file uploads if form contains a text field with the same name.
581           (Carl Franks)
582         - Support restart_delay of 0 (for use in the POE engine).
583         - Skip body processing if we don't have a Content-Length header.
584           Results in about a 9% performance increase when handling GET/HEAD
585           requests.
586         - Add a default body to redirect responses.
587         - MyApp->model/view now looks at MyApp->config->{default_view/model}
588           (Bogdan Lucaciu)
589
590 5.7006   2006-11-15 14.18
591         - Updated manifest
592         - Fix Slurp dependency
593         - Updated HTTP::Body dependency to 0.6, 0.5 can break on large POST
594           requests.
595         - Skip utf8 fix for undef values in uri_with() and uri_for()
596
597 5.7005   2006-11-07 19:37:35
598         - Fixed lighttpd tests to be properly skipped.
599         - Moved IE workarounds to exist only in the HTTP engine.
600         - Added installation instructions (from Catalyst-Manual dist)
601
602 5.7004   2006-11-06 20:48:35
603         - Fix Engine::HTTP crash when using IE. (Jesper Krogh, Peter Edwards)
604         - clean up Catalyst::Utils to handle some edge cases
605         - Properly work around lighttpd PATH_INFO vs. SCRIPT_NAME bug
606           (Mark Blythe)
607         - add _application accessor to Catalyst::Base
608         - Support current_view
609         - Allow use of Catalyst::Test without app name (Ton Voon, Altinity)
610         - Catalyst::Manual moved to its own package
611         - Add option to FastCGI engine to send errors to stdout, not the web server
612         - Use Module::Install's auto_install to install prerequisite modules
613         - various documentation fixes and improvements
614
615 5.7003   2006-09-21 16:29:45
616         - Additions and updates to tutorial
617
618 5.7002   2006-09-17 19:35:32
619         - unescape captures to match args
620         - fix for relative Chained under namespace '' (root)
621         - fix for hashrefs in action attributes from config
622         - fix for Chained to require correct number of CaptureArgs
623
624 5.7001   2006-07-19 23:46:54
625         - fix for component loading
626         - uri_for and uri_with now behave as they used to with non-
627           array references
628
629 5.7000   2006-07-07 08:08:08
630         - fix FCGI.pm warning message with FastCGI engine
631         - bumped inc::Module::Install to 0.63 in Makefile.PL
632         - fixes to uri_for_action for DispatchType::Chained
633         - Further doc work.
634         - Minor code cleanups
635         - Changed catalyst.pl to depend on Catalyst::Devel
636
637 5.70_03  2006-06-28 16:42:00
638         - fixup to registered plugins debug at app startup
639         - refactored Catalyst::Utils::home
640
641 5.70_02  2006-06-27 11:51:00
642         - Updated tutorial.
643
644 5.70_01  2006-06-26 10:49:00
645
646         - fixed a Catalyst::Base bug causing duplicate action registrations
647         - modified DispatchTypes to support multiple registrations
648         - added Catalyst::Runtime module as dist marker
649         - added Catalyst::ActionChain and Chained DispatchType
650         - removed retarded registration requirement in dispatcher
651         - removed Module::Pluggable::Fast hack in favor of
652           Module::Pluggable::Object
653         - extended uri_for, added dispatcher->uri_for_action
654         - added Catalyst::Base->action_for('methodname')
655         - checked and tested :Args multimethod dispatch
656         - added ability to set action attributes from controller config
657         - added merge_config_hashes() as a convenience method
658         - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
659         - Removed test dependencies on Test::NoWarnings, Test::MockObject
660         - Removed dependency on UNIVERSAL::require
661         - Split out Catalyst::Helper into a new distribution
662         - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
663         - nuked each() out of core with prejudice (due to lurking buglets)
664         - Added tests from phaylon for dispatcher precedence
665         - Use Class::Inspector->loaded($class) instead of $class->can('can')
666         - Added ActionClass attribute
667         - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
668         - Updated docs for Catalyst::Component
669         - Separated execute and dispatch on Catalyst::Action
670         - cleaned up logging and debug output
671         - significant documentation revisions
672         - Added warning for setup being called twice
673         - Fix pod to use DBIC::Schema instead of DBIC model
674         - Fix ->config failing to copy _config for subclassing
675         - Updated log format
676         - Updated debug dump
677
678 5.6902  2006-05-04 13:00:00
679         - Remove tarballs and OSX metadata files.
680
681 5.6901  2006-05-03 11.17:00
682         - Module::Install didn't overwrite META.yml.
683
684 5.6900  2006-05-03 11.17:00
685         - Stupid pause indexer can't count.
686         - Better fix for Catalyst::Test
687         - more tests.
688
689 5.682   2006-04-27 13:51:00
690         - Damn OSX attributes again :(
691
692 5.681   2006-04-27 08:47:00
693         - Updated manifest.
694         - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
695
696 5.68    2006-04-26 12:23:00
697         - ConfigLoader: Updated to version 0.06
698         - fixed undef warnings in uri_for() and uri_with()
699         - Fixed Catalyst::Test to report errors on failed Class load
700
701 5.678   2006-04-24 12:30:00
702         - Re-release of 5.67 without OSX metadata files.
703
704 5.67    2006-04-23 08:50:00
705         - Added $c->req->uri_with() helper
706         - ConfigLoader: Updated to version 0.05
707         - Fix up Engine to avoid a new 5.8.8 warning
708         - Added app name with :: support for PAR
709         - Added $c->models/views/controllers
710         - Static::Simple: Unescape the URI path before looking for the file.
711           This fixes issues with files that have spaces.
712         - Looping and recursion tests plus a fix
713         - Added lots of API documentation. Refactored main pod.
714         - Changed default behaviors for $c->model/$c->controller/$c->view
715           to more sane settings.
716         - added the clear_errors method - an alias for error(0)
717         - Added tmpdir option for uploads (woremacx)
718         - Applied patch from GEOFFR to allow normal filehandles.
719         - Refactored Dispatcher internals for better readability and speedup
720           (stress tests run 12% faster)
721         - Allow $c->error to run as a class method
722
723 5.66    2006-03-10 17:48:00
724         - Added Test::WWW::Mechanize::Catalyst support
725         - Cleaned generated tests
726         - Added Root controller concept
727         - Updated ConfigLoader plugin to version 0.04
728
729 5.65    2006-02-21 10:34:00
730         - Added plugin introspection.
731         - Support optional hashref as last param for parameters in uri_for.
732         - Updated tutorial to be more complete.
733         - Applied args patch from antirice (Fixes Ticket #67)
734
735 5.64    2006-02-07 20:29:00
736         - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
737           was not run. (Eric Wong)
738         - Cleaned up generated tests
739         - Updated YAML support to use ConfigLoader
740         - Fixed path dispatch to canonicalise correctly
741             (see http://dev.catalyst.perl.org/ticket/62)
742         - Added Catalyst::Manual::About
743
744 5.63    2006-01-22 00:00:00
745         - Updated prereq versions
746
747 5.62    2006-01-17 16:30:00
748         - Large update to the tutorial (castaway)
749         - Added YAML config support
750         - Added COMPONENT() and ACCEPT_CONTEXT() support
751         - Action list in debug mode is now displayed as a tree in the
752           correct execution order.
753         - Fixed engine detection to allow custom mod_perl engines.
754         - Static::Simple: Fixed bug in ignore_dirs under win32.
755         - Display version numbers of loaded plugins. (Curtis Poe)
756         - Added class and method for caught exception messages.
757         - Updated PAR support to use "make catalyst_par",
758           packages are no longer written by Makefile.PL.
759         - Automatically determine Content-Length when serving a
760           filehandle.
761         - Exceptions now return status 500.
762         - Updated for Module::Install 0.44.
763         - Fixed additional file installation for multi level app names.
764         - Added REDIRECT_URL support for applications running behind
765           a RewriteRule in Apache. (Carl Franks)
766         - Fixed FastCGI engine under win32. (Carl Franks)
767         - FastCGI doc updates (Bill Moseley)
768         - Bugfix for $c->model and friends (defined).
769
770 5.61    2005-12-02 00:00:00
771         - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
772
773 5.60    2005-12-01 22:15:00
774         - Fixed Path and index actions in the appclass,
775           including those that attach to /
776         - Index is now weighted higher than Path
777         - Fixed restarter and -d debug switch in server.pl.
778         - Added a warning if you attempt to retrieve a parameter
779           using $c->req->params('foo').
780         - Fixed the Module::Install::Catalyst @ISA bug
781
782 5.59    2005-11-30 13:25:00
783         - Fixed shebang line for generated scripts
784         - Fixed forward to classes ($c->forward(qw/MyApp foo/))
785         - Wrap use block in begin to quelch C:C3 warnings
786         - Removed scrollbar from debug output
787         - Fixed catalyst_par_core() and catalyst_par_multiarch()
788
789 5.58    2005-11-24 10:51:00
790         - Added ExtUtils::AutoInstall support
791         - Allow overriding path in Catalyst::Helper.
792         - Added -makefile to catalyst.pl to generate a new Makefile.PL.
793         - Restored Catalyst::Build with a deprecation notice.
794         - Improved PAR support
795         - Replaced -short with auto-detection
796         - Fixed prereqs, added File::Copy::Recursive
797         - Static::Simple changes:
798             - Made prepare_action play nice with other plugins by not short-
799               circuiting.
800             - Added tmpl to the ignored extensions.
801             - Fixed security problem if req->path contained '..'.
802
803 5.57    2005-11-20 22:45:00
804         - Updated uri_for to accept undef actions
805         - Switched to Module::Install
806         - Renamed tests for easier editing
807         - Reformatted documentation
808         - Renamed -nonew to -force
809         - Added PAR support
810         - Added keep-alive support and bug fixes to HTTP engine.
811           (Sascha Kiefer)
812         - Added daemonize option to FastCGI engine. (Sam Vilain)
813
814 5.56   2005-11-16 10:33:00
815         - Fixed FastCGI engine to not clobber the global %ENV on each
816           request. (Sam Vilain)
817         - Updated benchmarking to work with detach
818         - Fixed dispatcher, so $c->req->action(undef) works again
819         - Updated Catalyst::Test to use HTTP::Request::AsCGI
820         - Added -pidfile to external FastCGI server.
821
822 5.55    2005-11-15 12:55:00
823         - Fixed multiple cookie handling
824
825 5.54    2005-11-14 22:55:00
826         - Fixed a Module::Pluggable::Fast related bug
827
828 5.53    2005-11-14 15:55:00
829         - Removed t/04prereq.t that was testing for non-required
830           modules.
831
832 5.52    2005-11-14 10:57:00
833         - Strip '..'s in static urls to fix security issue.
834
835 5.51    2005-11-14 00:45:00
836         - Changed uri_for to use namespace instead of match.
837
838 5.50    2005-11-13 20:45:00
839         - Fixed minor bugs.
840         - Updated docs.
841
842 5.49_05 2005-11-12 20:45:00
843         - Large update to the documentation. (David Kamholz)
844         - Fixed args handling in forward()
845         - Fixed forwarding to classes
846         - Fixed catalyst.pl-generated Build.PL Makefile section.
847         - Fixed relative forwarding
848         - Fixed forward arrows in debug output
849
850 5.49_04 2005-11-09 23:00:00
851         - Made context, dispatcher, engine, request and response classes
852           configurable.
853         - Added $c->stack.
854         - Fixed dispatcher to ignore unknown attributes.
855         - Improved format of startup debug log.
856         - Updated built in server to restart on win32. (Will Hawes)
857         - Fixed streaming write from a filehandle to stop writing
858           if the browser is closed.
859         - Added $c->controller, $c->model and $c->view shortcuts.
860         - Switched to Text::SimpleTable.
861
862 5.49_03 2005-11-03 12:00:00
863         - Fixed $c->req->{path} for backwards-compatibility.
864         - Allow debug to be disabled via ENV as well as enabled.
865         - Added -scripts option to catalyst.pl for script updating
866         - Changed helpers to default to long types, Controller instead of C
867         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
868           base classes
869         - Added JavaScript to debug screen to show and hide specific dumps
870         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
871         - Added multi process external FastCGI support
872           (see myapp_fastcgi.pl -help) (Sam Vilain)
873         - Restarter process in HTTP engine now properly exits when the
874           parent app is shut down.
875         - Improved performance of restarter loop while watching for
876           changed files.
877         - Restarter will now detect new files added to an app on systems
878           that change directory mtimes when new files are created.
879         - Restarter now properly handles modules that are deleted from an
880           application.
881         - Fixed memory leak in TestApp.
882
883 5.49_02 2005-10-26 12:39:00
884         - Whole new dispatcher!
885         - Added index action
886         - Added path_to method
887         - Added support for passing an IO::Handle object to $c->res->body.
888           (Andrew Bramble)
889         - Added a new welcome screen.
890         - Included Catalyst buttons and icons in helper.
891         - Added Static::Simple plugin to core.
892         - Added self restarting test server
893         - Added filename to debug output for uploaded files.
894         - Fixed forwarding with embedded arguments.
895         - Fixed handling of escaped query strings.
896         - Added upload parameters back into $c->req->params.
897         - Added multiple paths support to dispatcher
898         - Fixed bug in req->path where changing the path added a trailing
899           slash.
900         - Removed req->handle and res->handle
901         - Added prepare_body_chunk method as a hook for upload progress.
902         - Fixed bug in uri_for method when base has no path.
903         - Added automated tests for HTTP, CGI, and FastCGI servers.
904
905 5.49_01 2005-10-10 10:15:00
906         - Refactored all internals, should be 99% compatible to previous
907           versions.
908         - *IMPORTANT* The Apache engines have been moved to a separate package
909           for this release.  Please install Catalyst::Engine::Apache if you
910           need Apache support.
911
912         - Added support for calling forward with arguments in the path, i.e.
913           $c->forward('/foo/bar/arg1/arg2')
914         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
915           Raw query string is available as $c->req->uri->query.
916         - Made $c->req->base a URI object.
917         - Parameters with multiple values (?a=1&a=2) now display properly
918           in the debug output.
919         - Semi-colon separators in query strings now work properly.
920         - Expanded documentation of catalyst.pl (Andrew Ford)
921         - Added support for running as a backend server behind a frontend
922           proxy so req->base and req->address are set properly.
923         - Added an 'abort' method to the Log api, so that you can
924           kill loggging for a whole request.
925         - Added $c->uri_for method to simplify url handling.
926         - Added more tests and reorganized the t directory.
927         - Reimplemented core engines, all are now CGI based for better test
928           coverage and maintainability.
929         - Added fork support to built in test server.
930         - Fixed all memory leaks.
931         - Thread-related bug fixes and tests.  We now believe the Catalyst
932           core to be thread-safe.
933         - Added streaming IO support through $c->req->read() and
934           $c->res->write()
935         - Added MyApp->config->{parse_on_demand} (streaming input)
936         - Added $c->req->handle and $c->res->handle
937         - Improved documentation
938         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
939         - Fixed bug in dispatcher where an invalid path could call a valid
940           action. (Andy Grundman)
941         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
942
943 5.33  2005-08-10 15:25:00
944         - Now with updated manifest.
945
946 5.32  2005-08-10 15:10:00
947         - Dispatcher might fail if object returns false.
948
949 5.31  2005-06-04 12:35:00 (never released to CPAN)
950
951         - helpers now create .new files where files already exist and differ
952         - fixed $Data::Dumper::Terse (Robin Berjon)
953         - added arguments for detach
954         - new credits section in POD
955         - fixed detach to allow relative action names (Matt and Robert)
956         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
957
958 5.30  2005-06-04 12:35:00
959
960         - Fixed a bug where it was not possible to $c->forward to a
961           component
962           that was not inheriting from Catalyst::Base.
963         - Fix for inheritance bug.
964         - Allow forward with arguments.
965         - Updated cookbook
966         - Allow overriding home/root in config.
967         - make module build cons README automatically.
968         - prettify home path by resolving '..' (Andy Grundman)
969         - improved helper templates a bit, new naming scheme for tests.
970         - added support for case sensitivity, MyApp->config->{case_sensitive}
971         - added $c->detach for non-returning forwards
972         - added unified error handling, Catalyst::Exception
973         - added section on param handling in Intro.pod
974         - added $c->request->cookie
975         - added Catalyst::Setup
976         - refactored Catalyst::import()
977         - improved rendering of error messages in debug mode
978         - fixed a bug in Catalyst::Helper::mk_dir
979         - further doc changes, esp. to Intro.pod
980
981 5.23  2005-06-03 02:30:00
982         - added support for non Catalyst::Base components to live in namespace
983         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
984
985 5.22  2005-05-26 14:24:00
986         - improved base locating in MP engines
987         - improved error messages in C::E::HTTP::Daemon
988         - hostnames are now resolved on demand unless provided by engine
989         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
990
991 5.21  2005-05-24 14:56:00
992         - fixed a bug in https detection
993         - fixed auto chain finally
994         - added MYAPP_HOME and CATALYST_HOME environment variables
995
996 5.20  2005-05-18 19:52:00
997         - improved uploads and parameters
998         - added $c->req->protocol and $c->req->secure
999         - added $c->req->user and $c->req->uri
1000         - improved error message when forwarding to unknown module
1001         - fixed win32 installer
1002         - added deep recursion detection
1003         - fixed auto actions
1004         - fixed inheritance in dispatcher
1005         - allow whitespaces between brackets and quoted string
1006           in Path and Regex attributes
1007         - new helper templates
1008         - installer now supports install_base and destdir
1009         - allow multiple Catalyst apps to run on the same mod_perl
1010           instance (not the same app!)
1011         - fixed MP2 engines
1012         - removed apreq dependency from all MP engines
1013         - added support for MP registry scripts
1014         - added support for LocationMatch and ScriptAliasMatch in MP engines
1015         - added SpeedyCGI engine
1016
1017 5.10  2005-04-23 11:16:00
1018         - updated dependencies to require latest module::pluggable::fast
1019         - new installer for templates and stuff using Module::Build
1020         - scripts are now prefixed, for being installable
1021         IMPORTANT: You have to regenerate the script directory,
1022         remove Makefile.PL and add Build.PL
1023         - Added compat to install Module::Build if required.
1024         - Improved: Params handling with MP engines
1025         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
1026         - Fixed: Helper.pm on Win32 (Matt S Trout)
1027
1028 5.03  2005-04-19 20:35:00 (Revision 462)
1029         - fixed Test example (Torsten Seeman)
1030         - added Plugins chapter to manual
1031         - applied doc patch from Robert Boone <robert@rlb3.com>
1032         - improved Dispatcher error messages.
1033         - refactored so we don't need to include helper from
1034           Catalyst.pm - Fixes issues with FindBin
1035         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
1036         - added plugin() method for instant plugins
1037         - FCGI is no more considered experimental
1038
1039 5.02  2005-04-18 10:00:00
1040         - fixed manifest
1041
1042 5.01  2005-04-17 23:00:00
1043         - some documentation bugs fixed
1044         - added Catalyst::Utils
1045         - fixed regexp bug (Matt S Trout)
1046         - fixed upload bug with MP19
1047         - added $c->req->body
1048         - aliased $c->res->output to $c->res->body
1049         - Read AUTHOR from passwd or $ENV{AUTHOR} when
1050           generating code.
1051         - extended attribute handling
1052         - added global config for components
1053
1054 5.00  2005-04-15 18:00:00
1055         - new core to support inheritance trees
1056         - new syntax for action declaration
1057         - new helper system using TT2
1058         - problems with mod_perl2 fixed
1059         - added Test::Pod support
1060         - added new server backend with HTTP/1.1 support
1061         - added option to run tests against a remote server
1062         - renamed errors() to error()
1063         - more better docs
1064         - countless minor improvements
1065           IMPORTANT: This release is very incompatible to previous ones
1066           and you have to regenerate the helper scripts again...
1067
1068 4.34  2005-03-23 07:00:00 2005
1069         - added some messages to Makefile.PL
1070         - added Catalyst::Engine::Test
1071         - added Catalyst::Engine::CGI::NPH
1072         - simplified Catalyst::Log to be easier to implement/subclass
1073         - added cgi.pl
1074         - updated Catalyst::Test to use Catalyst::Engine::Test
1075         - updated helper scripts
1076           IMPORTANT: this will be the last time you'll have to regenerate
1077           the script directory. We promise!
1078
1079 4.33  2005-03-23 01:00:00 2005
1080         - documented the log() accessor method in Catalyst (Andrew Ford)
1081         - added optional arguments to Catalyst::Log methods (Andrew Ford)
1082         - removed cgi-server.pl
1083         - added fcgi.pl and Catalyst::Engine::FCGI
1084         - fixed an undef durng make test (Dan Sully)
1085         - new path test (Christian Hansen)
1086           IMPORTANT: you have to regenerate the script directory again
1087
1088 4.32  2005-03-22 02:10:00 2005
1089         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
1090
1091 4.31  2005-03-22 02:00:00
1092         - fixed inheritance (Christian Hansen)
1093         - previous release was borked!
1094           fixed that, but you have to regenerate the scripts again :(
1095
1096 4.30  2005-03-21 23:00:00
1097         - more documentation (Andrew Ford)
1098         - added connection informations (Christian Hansen)
1099         - HTTP::Request support in Catalyst::Test (Christian Hansen)
1100         - moved cgi.pl to nph-cgi.pl
1101         - added Catalyst::Engine::Server (Christian Hansen)
1102         - removed Catalyst::Test::server
1103         - updated helper scripts
1104           IMPORTANT: note that you have to regenerate script/server.pl,
1105           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
1106
1107 4.28  2005-03-19 22:00:00
1108         - fixed isa tree (Christian Hansen)
1109         - added script/cgi-server.pl, so no more server restarting after
1110           code changes
1111         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
1112
1113 4.27  2005-03-19 01:00:00
1114         - debug message for parameters
1115         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
1116         - some random fixes
1117         - new helper api for Catalyst::Helper::* support
1118           you have to update script/create.pl to use it
1119
1120 4.26  2005-03-16 10:00:00
1121         - fixed the weird bug that caused regex actions to fail on every
1122           second request
1123         - more debug messages
1124         - 100% pod coverage.
1125
1126 4.25  2005-03-12 18:00:00
1127         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
1128         - improved cgi engine docs (Christoper Hicks)
1129
1130 4.24  2005-03-12 01:00:00
1131         - updated cookbook example
1132         - fixed base for apache and https (Andrew Ruthven)
1133
1134 4.23  2005-03-09 20:00:00
1135         - no more regex actions in forward
1136         - added support for test directories t/m, t/v and t/c
1137
1138 4.22  2005-03-08 20:00:00
1139         - catch errors in application class
1140         - handle die properly.
1141
1142 4.21  2005-03-05 17:00:00
1143         - fixed docs
1144
1145 4.20  2005-03-04 22:00:00
1146         - moved bin to script
1147
1148 4.13  2005-03-03 11:00:00
1149         - improved documentation
1150         - pod coverage test for helper generated apps
1151         - new helper api
1152
1153 4.12  2005-03-02 11:00:00 2005
1154         - server_base sucks, removed
1155         - added $c->log->dump()
1156
1157 4.11  2005-03-02 11:00:00 2005
1158         - removed some warnings
1159         - improved docs
1160         - private prefixed actions override private non prefixed actions
1161         - added server_base
1162         - updated Catalyst::Manual::Intro
1163
1164 4.10  2005-03-02 10:00:00 2005
1165         - improved documentation
1166         - fixed upload bug
1167         - fixed prefixed private actions bug
1168         - fixed more little bugs
1169
1170 4.01  2005-03-01 10:00:00 2005
1171         - improved documentation
1172         - documentation fixes (Johan Lindstrom)
1173
1174 4.00  2005-02-27 22:00:00
1175         - more verbose debug messages, especially for forward()
1176         - implemented prefixed prvate actions, icluding built in
1177           !?default, !?begin and !?end
1178         - new Catalyst::Manual::Intro
1179         - new helpers, bin/catalyst
1180         - helper api
1181
1182 3.11  2005-02-23 21:00:00
1183         - added dependency to UNIVERSAL::require (Marcus Ramberg)
1184         - added a little workaround for a warning in Catalyst::Test
1185           (Marcus Ramberg)
1186         - improved documentation for actions
1187
1188 3.10  2005-02-19 20:00:00
1189         - removed roles management from Catalyst::Engine
1190           and added it to Catalyst::Plugin::Authentication::CDBI
1191
1192 3.04  2005-02-17 21:00:00
1193         - error reporting for app class
1194         - no more engine debug messages
1195         - class->method forwards get resolved now
1196
1197 3.03  2005-02-16 23:00:00
1198         - friendlier statistics
1199
1200 3.02  2005-02-16 22:00:00
1201         - fixed unintialized actions (Marcus Ramberg)
1202
1203 3.01  2005-02-16 20:30:00
1204         - better statistics
1205
1206 3.00  2005-02-16 20:00:00
1207         - real version number for CPAN.pm
1208         - fixed redirect in CGI engine
1209         - more statistics in debug logs
1210         - ? prefix for forward()
1211
1212 2.99_15  2005-02-02 22:00:00
1213         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
1214         - Replaced "Catched" with "Caught" in Catalyst::Engine
1215           (Gary Ashton Jones)
1216         - replaced _ with ! for private actions
1217         - added ? for prefixed actions
1218         - misc improvememts
1219
1220 2.99_14  2005-01-31 22:00:00 2005
1221         - arguments for _default
1222         - $c->entrance removed for more flexibility
1223         - added $c->req->method
1224
1225 2.99_13  2005-01-30 18:00:00 2005
1226         - POD fixes and improvements
1227
1228 2.99_12  2005-01-28 22:00:00 2005
1229         - first development release