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