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