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