more release docs updates, and fixed some config options;
[catagits/Catalyst-Runtime.git] / Changes
1 # This file documents the revision history for Perl extension Catalyst.
2
3 5.90079_005 - 2014-12-31
4   - Merged changes from 5.90078
5   - If configuration 'using_frontend_proxy' is set, we add the correct middleware
6     to the default middleware list.  This way you get the correct and expected
7     behavior if you are starting your application via one of the generated scripts
8     or if you are calling MyApp->psgi_app.  Previously if you started the application
9     with ->psgi_app (or to_app) we ignored this configuration option
10   - New configuration option 'using_frontend_proxy_path' which enables
11     Plack::Middleware::ReverseProxyPath on your application easily.  Please note that
12     Plack::Middleware::ReverseProxyPath is not an automatic dependency of Catalyst at
13     this time, so if you want this feature you should add it to your project dependency
14     list.  This is done to avoid continued growth of Catalyst dependencies.
15   - Tweaks encoding docs a bit to get closer to final.
16
17 5.90079_004 - 2014-12-26
18   - Starting adding some docs around the new encoding stuff
19   - Exposed the reqexp we use to match content types that need encoding via a
20     global variable.
21   - Added some test cases for JSON utf8 and tested file uploads with utf8.
22   - Fixes to decoding on file upload filenames and related methods
23   - new methods on upload object that tries to do the right thing if we find
24     a character set on the upload and its UTF8.
25   - new additional helper methods on the file upload object.
26   - new helper methods has_encoding and clear_encoding on context.
27   - Method on Catalyst::Response to determine if the reponse should be encoded.
28   - Warn if changing headers only if headers are finalized AND the response callback
29     has allready been called (and headers already sent).
30   - Centralized rules about detecting if we need to automatically encode or not and
31     added tests around cases when you choose to skip auto encoding.
32
33 5.90079_003 - 2014-12-03
34   - Make sure all tests run even if debug mode is enabled.
35   - Fixed issue with middleware stash test case that failed on older Perls
36
37 5.90079_002 - 2014-12-02
38   - Fixed typo in Makefile.PL which borked the previous distribution. No other
39     changes.
40
41 5.90079_001 - 2014-12-02
42   - MyApp->to_app is now an alias for MyApp->psgi_app in order to better support
43     existing Plack conventions.
44   - Modify Catayst::Response->from_psgi_response to allow the first argument to
45     be an object that does ->as_psgi.
46   - Modified Catayst::Middleware::Stash to be a shallow copy in $env.  Added some
47     docs.  Added a test case to make sure stash keys added in a child application
48     don't bubble back up to the main application.
49   - We no longer use Encode::is_utf8 since it doesn't work the way we think it
50     does... This required some UTF-8 changes.  If your application is UTF-8 aware
51     I highly suggest you test this release.
52   - We alway do utf8 decoding on incoming URLs (before we only did so if the server
53     encoding was utf8.  I believe this is correct as per the w3c spec, but please
54     correct if incorrect :)
55   - Debug output now shows utf8 characters if those are incoming via Args or as
56     path or pathparts in your actions.  query and body parameter keys are now also
57     subject to utf8 decoding (or as specificed via the encoding configuration value).
58   - lots of UTF8 changes.  Again we think this is now more correct but please test.
59   - Allow $c->res->redirect($url) to accept $url as an object that does ->as_string
60     which I think will ease a common case (and common bug) and added documentation.
61   - !!! UTF-8 is now the default encoding (there used to be none...).  You can disable
62     this if you need to with MyApp->config(encoding => undef) if it causes you trouble.
63   - Calling $c->res->write($data) now encodes $data based on the configured encoding
64     (UTF-8 is default).
65   - $c->res->writer_fh now returns Catalyst::Response::Writer which is a decorator
66     over the PSGI writer and provides an additional methd 'write_encoded' that just
67     does the right thing for encoding your responses.  This is probably the method
68     you want to use.
69   - New dispatch matching attribute: Scheme.  This lets you match a route based on
70     the incoming URI scheme (http, https, ws, wss).
71   - If $c->uri_for targets an action or action chain that defines Scheme, use that
72     scheme for the generated URI object instead of just using whatever the incoming
73     request uses.
74
75 5.90078 - 2014-12-30
76   - POD corrections (sergey++)
77   - New configuration option to disable the HTTP Exception passthru feature
78     introduced in 5.90060.  You can use this if that feature is causing you
79     trouble. (davewood++);
80   - Some additional helper methods for dealing with errors.
81   - More clear exception when $request->body_data tries to parse malformed POSTed
82     data.  Added documentation and tests around this.
83
84 5.90077 - 2014-11-18
85   - We store the PSGI $env in Catalyst::Engine for backcompat reasons.  Changed
86     this so that the storage is a weak reference, so that it goes out of scope
87     with the request.  This solves an issue where items in the stash (now in the
88     PSGI env) would not get closed at the end of the request.  This caused some
89     regression, primarily in custom testing classes.
90
91 5.90076 - 2014-11-13
92   - If throwing an exception object that does the code method, make sure that
93     method returns an expected HTTP status code before passing it on to the
94     HTTP Exception middleware.
95
96 5.90075 - 2014-10-06
97   - Documentation patch for $c->req->param to point out the recently discovered
98     potential security issues: http://blog.gerv.net/2014/10/new-class-of-vulnerability-in-perl-web-applications/
99   - You don't need to install this update, but you should read about the exploit
100     and review if your code is vulnerable.  If you use the $c->req->param interface
101     you really need to review this exploit.
102
103 5.90074 - 2014-10-01
104   - Specify Carp minimum version to avoid pointless test fails (valy++)
105
106 5.90073 - 2014-09-23
107   - Fixed a regression caused by the last release where we broke what happened
108     when you tried to set request parameters via $c->req->param('foo', 'bar').
109     You shouldn't do this, but I guess I shouldn't have busted it either :)
110   - Allow the term_width to be regenerated (see Catalyst::Utils::term_width,
111     Frew Schmidt)
112   - More aggressive skipping of value decoding if the value is undefined.
113
114 5.90072 - 2014-09-15
115   - In the case where you call $c->req->param(undef), warn with a more useful
116     warning (now gives the line of your code that called param with the undef,
117     so you can go to hunt it out.
118
119 5.90071 - 2014-08-10
120   - Travis config now performs basic reverse dependency testing.
121   - Restored deprecated 'env' code in Engine.pm b/c it is still being used out
122     in the wild (Catalyst-Plugin-Authentication-0.10023) - (removed in 5.90070)
123   - Reverted changes to debug log/handling (5.90069_003) to fix
124     rev dep Catalyst-Plugin-Static-Simple-0.32 test suite.
125   - Added italian translation of default error.
126
127 5.90070 - 2014-08-07
128   - Retagged previous release as stable; no changes
129
130 5.90069_004
131   - Fixed typo in middleware stash that was causing older Perls to fail
132     certain tests.  No other changes.
133
134 5.90069_003
135   - The default log level is now 'info', not 'debug'.
136   - Finished merging all the encoding plugin code to core code.  The encoding
137     plugin is now just an empty package.  Also tried to improve encoding docs
138     a bit.
139   - Some additional changes to the stash middleware that should not break
140     anything new.
141   - Documentation around using Sendfile type http headers with a filehandle
142     type response.
143   - Merged from master branch to pick up some additional fixes and documentation
144     improvements.
145
146 5.90069_002
147   - Catalyst stash functionality has been moved to Middleware.  It should
148     work entirely the same when used as a context method, please report
149     questions or problems!
150   - Removed code related to supporting the long deprecated stand alone
151     PSGI Engine.  If you are still using this you code is now broken.
152     Luckily you can just stop using it and likely everything will work
153     under the new PSGI support built into Catalyst for several years.
154   - 'abort_chain_on_error_fix' now defaults to true.  If this behavior
155     causes you issues, you can explicitly turn it off by setting it to a 
156     non true defined value (0 is a good option here).
157   - When throwing an http style exception, make sure we properly flush the
158     existing log and report other errors in the error stack.
159
160 5.90069_001
161   - Set encoding on STDERR when encoding is set in config
162   - documentation and test fixes
163
164 5.90065 - 2014-06-04
165   - The Catalyst::Log object now has 'autoflush' (which defaults to true) and
166     causes log messages to be written out in real-time. This is helpful for the
167     test/dev server to be able to see messages during startup as well as before
168     the end of the request when the log is flushed.
169   - Fix spelling, grammar and structural errors in POD
170   - Remove redundant ->setup call in t/head_middleware.t RT#95361
171   - Fix test failures when running under CATALYST_DEBUG. RT#95358
172
173 5.90064 - 2014-05-05
174   - Fix for mindless broken tests on Win32 (Haarg++).
175   - Happy Cinco de Mayo!
176
177 5.90063 - 2014-05-01
178   - 'end' and other special actions won't catch HTTP style exceptions anymore.
179   - Fix bug where Catalyst did not properly detect the terminal width when in
180     debug mode and thus making the debug output narrow and hard to read.
181   - Documentation corrections for Util methods around localized PSGI $env.
182   - Improvements to auto detection of terminal width.
183   - Updating deprecation list to include Class::Load and ensure_class_loaded
184   - Added a few docs around middleware and corrected the order that middleware
185     is loaded when registering it via ->setup_middleware instead of via
186     configuration.
187   - Added a test case to make sure default middleware order is correct.
188 s
189 5.90062 - 2014-04-14
190   - HTTP::Exception objects were not properly bubbled up to middleware since
191     there was some code in Catalyst that was triggering stringification.
192
193 5.90061 - 2014-03-10
194   - Reverted a change related to how plugins get initialized that was
195     introduced by a change in December.
196
197 5.90060 - 2014-02-07
198   - Same as 5.90059_006, just marking it as stable, no functional changes.
199
200
201 5.90059_006 - 2014-02-06
202   - MyApp->setup now returns $app to allow class method chaining.
203   - New Util helper functional localize $env to make it easier to mount PSIG
204     applications under controllers and actions.  See Catalyst::Utils/PSGI Helpers.
205   - NOTICE: Final Development release for Runner, unless significant issues are
206     raised.  Please test.
207
208 5.90059_005 - 2014-01-28
209   - Specify newest versions of some middleware in attempt to solve test errors
210     reported while installing.  
211 5.90059_004 - 2014-01-27
212   - Make sure IO handle objects do 'getline' before sending them to the
213     response callback, to properly support the PSGI specification.
214   - Added some backcompat code when setting a response body to an object
215     that does 'read' but not 'getline'.  Added deprecation notice for this
216     case.  Added docs to Catalyst::Delta.
217   - Catalyst::Delta contains a list of behaviors which will be considered
218     deprecated immediatelty.  Most items have workarounds and tweaks you can
219     make to avoid issues.  These deprecations are targeted for removal/enforcement
220     in the Catalyst 6 release.  Please review and give your feedback.
221   - More middleware to replace inline code (upasana++)
222   - Documentation around Exceptions and how we handle them.
223   - update copyright notices.
224
225 5.90059_003 - 2013-12-24
226   - More documentation about alternative ways to setup middleware.
227   - removed unneeded use of Devel::Dwarn in test case that was causing
228     fails to install (sorry).
229   - When finalizing caught errors, if the error conforms to the interface as
230     described by Plack::Middleware::HTTPExceptions, rethrow it and let the
231     middleware deal with it.
232
233 5.90059_002 - 2013-12-21
234   - We now pass a scalar or filehandle directly to you Plack handler, rather
235     than always use the streaming interface (we are still always using a
236     delayed response callback).  This means that you can make use of Plack
237     middleware like Plack::Middleware::XSendfile and we expect better use of
238     server features (when they exist) like correct use of chunked encoding or
239     properly non blocking streaming when running under a supporting server like
240     Twiggy.  See Catalyst::Delta for more.  This change might cause issues if
241     you are making heaving use of streaming (although in general we expect things
242     to work much better.
243   - In the case when we remove a content body from the response because you set
244     an information status or a no content type status, warn that we are doing so
245     when in debug mode.  You might see additional debugging information to help
246     you find and remove unneeded response bodies.
247   - Updated the code where Catalyst tries to guess a content length when you
248     fail to provide one.  This should cause less issues when trying to guess the
249     length of a funky filehandle.  This now uses Plack::Middleware::ContentLength
250   - Removed custom code to remove body content when the request is HEAD and
251     swapped it for Plack::Middleware::Head
252   - Merged fix for regressions from stable..
253
254 5.90059_001 - 2013-12-19
255   - Removed deprecated Regexp dispatch type from dependency list.  If you are
256     using Regex[p] type dispatching you need to add the standalone distribution
257    'Catalyst::DispatchType::Regex' to you build system NOW or you application
258    will be broken.
259
260 5.90053 - 2013-12-21
261   - Reverted a change in the previous release that moved the setup_log phase
262     to after setup_config.  This change was made to allow people to use
263     configuration that is late loaded (such as via the ConfigLoader Plugin)
264     to setup the plugin.  However it also broke the ability to use the log
265     during plugin setup (ie, it breaks lots of plugins).  Reverting the 
266     change.  See Catalyst::Delta for workarounds.
267
268 5.90052 - 2013-12-18
269
270   - Fixed first block of startup debug messages missing when using a custom
271     logger that gets set at runtime, for example by overriding finalize_config
272   - Give a more descriptive error message when trying to load middleware that
273     does not exist.
274   - Change the way we initialize plugins to fix a bug where when using the 
275     populare ConfigLoader plugin, configs merged are not available for setting
276     up middleware and data handlers (and probably other things as well).
277
278     NOTE: This change might cause issues if you had code that was relying on the
279     broken behavior.  For example external configuration that was being loaded to
280     late to have effect might now take effect.  Please test you code carefully and
281     be aware of this possible issue </NOTE>.
282
283   - You may now also call 'setup_middleware' as a package method if you think
284     that loading middleware via configuration is a weird or broken idea.
285   - Various POD formating fixed.
286   - Improved some documentation about what type of filehandles that ->body can
287     accept and issues that might arise.
288
289 5.90051 - 2013-11-06
290   - Be more skeptical of the existance of $request->env to fix a regression
291     introduced in Catalyst::Action::REST by the previous release
292
293 5.90050 - 2013-11-05
294   - Previously public predicates on the following attributes are now considered
295     private and their method names have been changed to follow Perl convention
296     for internal methods:
297
298       -- Catalyst::Request->has_io_fh ==> _has_io_fh
299       -- Catalyst::Request->has_env ==> _has_env
300       -- Catalyst::Response->has_write_fh ==> _has_write_fh
301
302     These are breaking changes but these methods were never documented and serve
303     no use for external code.  If you are using thing, you need to make the noted
304     change (but please consider finding another way to do what you are trying to
305     do).  t0m++ for code review of Hamburg branch.
306
307 5.90049_006 - 2013-11-04
308   - Fixed case where test could fail when Starman was partly installed (n0body++)
309   - Fixed missing date information in previous release
310
311 5.90049_005 - 2013-10-31
312   - NEW FEATURE:  New Controller action attribute 'Consumes', which allows you
313     to specify the content type of the incoming request.  This makes it easier
314     to create actions that only handle certain content type POST or PUT, such
315     as actions that only handle JSON or actions that only understand classic
316     HTML forms.
317   - NEW FEATURE: Request->body_data is now also populated from classic HTML 
318     Forms using CGI::Struct to support nested data.  For non nested data you
319     should use the classic ->body_parameters method.
320   - Removed PSGI $env keys that are added on the 'plack.request.*' namespace
321     since after discussion it was clear those keys are not part of the public
322     API.  Keys removed: 'plack.request.query', 'plack.request.body', 
323     'plack.request.merged' and 'plack.request.http.body'. Altered some test
324     cases to reflect this change.
325
326 5.90049_004 - 2013-10-18
327   - JSON Data handler looks for both JSON::MaybeXS and JSON, and uses
328     whichever is first (prefering to find JSON::MaybeXS).  This should
329     improve compatibility as you likely already have one installed.
330   - Fixed a warning in the server script (bokutin++)
331   - We now populate various Plack $env keys in order to play nice with
332     downstream middleware or plack apps (and to reduce processing if
333     those keys already exist).  Keys added:
334       - plack.request.query
335       - plack.request.body
336       - plack.request.merged
337       - plack.request.http.body
338     (NOTE: REMOVED IN 5.90049_005)
339   - If incoming input (from a POST or PUT) is not buffered, create the
340     buffer and set the correct psgi env keys to note this for downstream
341     psgi apps / middleware.  This should solve some issues where Catalyst
342     sucks up the body input but its not buffered so downstream apps can't
343     read it (for example FCGI does not buffer).  We now also try to make
344     sure the body content input is reset to the start of the filehandle
345     so that we are polite to downstream middleware /apps.
346   - NEW FEATURE: Catalyst::Response can now pull response from a PSGI
347     specification response.  This makes it easier to host external Plack
348     applications under Catalyst.  See Catalyst::Response->from_psgi_response
349   - NEW FEATURE: New configuration option 'use_hash_multivalue_in_request'
350     will populate $request methods 'parameters', 'body_parameters' and
351     'query_parameters' with an instance of Hash::MultiValue instead of a
352     HashRef.  This is used by Plack and is intended to reduce the need to
353     write defensive logic since you are never sure if an incoming parameter
354     is a scalar or arrayref.
355   - NEW FEATURE: We now experimentally support Net::Async::HTTP::Server
356     and IO-Async based event loops.  Examples will follow.
357
358 5.90049_003 - 2013-09-20
359   - Documented the new body_data method added in the previous release
360   - Merged from master many important bugfixes and forward compatiblity
361     updates, including:
362     - Use modern preferred method for Moose metaclass access and many other
363       small changes to how we use Moose for better forward compat (ether++)
364     - Killed some evil use of $@ (ether++)
365     - spelling fixes and documentation updates (ether++), (gerda++)
366     - use Test::Fatal over Test::Exception (ether++)
367     - Misc. test case fixes to modernize code (ether++)
368     - Added a first pass cpanfile, to try and make it easier to bootstrap
369       a development setup (ether++)
370
371 5.90049_002 - 2013-08-20
372   - Fixed loading middleware from project directory
373   - Fixed some pointless warnings when middleware class lacked VERSION
374   - NEW FEATURE: Declare global 'data_handlers' for parsing HTTP POST/PUT
375     alternative content, and created default JSON handler.  Yes, now Catalyst
376     handles JSON request content out of the box!  More docs eventually but
377     for now see the DATA HANDLERS section in Catalyst.pm (or review the test
378     case t/data_handler.t
379
380 5.90049_001 - 2013-07-26
381   - Declare PSGI compliant Middleware as part of your Catalyst Application via
382     a new configuration key, "psgi_middleware".
383   - Increased lowest allowed module version for Module::Pluggable to be 4.7 (up
384     from 3.4) to solve the fact this is no longer bundled with Perl in v5.18.
385
386 5.90042 - 2013-06-14
387   - Removed more places where an optional dependency shows up in the test
388     suite. Hopefully really fixed the unicode regression introduced in 5.90040
389   - reverted the change we introduced in 5.90040 where a unicode conversion
390     error warned instead of died.  Now it dies again, like in the stand alone
391     plugin
392   - More work to make sure nothing happens with encoding unless you explicitly
393     ask for encoding
394   - Code to hopefully fix an issue where file uploads using the unicode plugin
395     caused trouble.
396
397 5.90041 - 2013-06-14
398   - Bug fix release to fix regressions introduced in previous.  I would consider
399     this a likely upgrade and if you are having trouble with the previous I hope
400     this fixes all of them.
401   - Fix regression with the cored Unicode plugin that broke systems where you are
402     setting encoding type in an external configuration file
403   - Fixed circular dependency introduced when we cored the unicode plugin tests
404   - Fixed a longstanding problem with stats when locale uses , instead of . for
405     number decimals
406   - Fixed some docs that didn't properly date the previous release.
407
408 5.90040 - 2013-06-12
409   ! Stricter checking of attributes in Catalyst::DispatchType::Chained:
410     1) Only allow one of either :CaptureArgs or :Args
411     2) :CaptureArgs() argument must be numeric
412     3) :CaptureArgs() and :Args() arguments cannot be negative
413   - Add Devel::InnerPackage to dependencies, fixing tests on perl 5.17.11
414     as it's been removed from core. RT#84787
415   - New support for closing over the PSGI $writer object, useful for working
416     with event loops.
417   - lets you access a psgix.io socket, if your server supports it, for manual
418     handling of the client - server communication, such as for websockets.
419   - Fix waiting for the server to start in t/author/http-server.t
420   - new config flag 'abort_chain_on_error_fix' that exits immediately when a
421     action in an action chain throws and error (fixes issues where currently
422     the remaining actions are processed and the error is handled at chain
423     termination).
424   - Cored the Encoding plugin.  Now get unicode out of the box by just setting
425     $c->config->{encoding} = 'UTF-8'.  BACKCOMPAT WARNING: If you are using 
426     the Encoding plugin on CPAN, we skip it to avoid double encoding issues, so
427     you should remove it from your plugin list, HOWEVER the 'encoding' config
428     setting is now undef, rather than 'UTF-8' (this was done to avoid breaking
429     people's existing applications) so you should add the encoding setting to 
430     you global config.  There's some other changes between the stand alone
431     plugin and the cored version, if you use it be sure to see Catalyst::Upgrading
432     for more.
433   - minor documentation typo fixes and updates
434
435 5.90030 - 2013-04-12
436   ! POSSIBLE BREAKING CHANGE: Removed Regexp dispatch type from core, and put
437     it in an external package.  If you need Regexp dispatch types you should
438     add "Catalyst-DispatchType-Regex" as a distribution to your build system.
439   - make $app->uri_for and related methods return something sane, when called
440     as an application method, instead of a context method.  Now if you call
441     MyApp::Web->uri_for(...) you will get a generic URI object that you need to
442     resolve manually.
443   - documentation updates around forwarding to chained actions.
444   - Fixed bug when a PSGI engine need to use psgix logger.
445   - Added cpanfile as a way to notice we are a dev checkout.
446   - Added 'x-tunneled-method' HTTP Header method override to match features in
447     Catalyst::Action::REST and in other similar systems on CPAN.
448   - smarter valiation around action attributes.
449
450 5.90020 - 2013-02-22
451   ! Catalyst::Action now defines 'match_captures' so it is no long considered
452     an optional method.  This might break you code if you have made custom
453     action roles/classes where you define 'match_captures'.  You must change
454     your code to use a method modifier (such as 'around').
455   - New match method "Method($HTTP_METHOD)" where $HTTP_METHOD in (GET, POST,
456     PUT, HEAD, DELETE, OPTION) and shortcuts in controllers called "GET, POST
457     PUT, HEAD, DELETE, OPTION").  Tests and documentation.  Please note if you
458     are currently using Catalyst::ActionRole::MatchRequestMethods there may
459     be compatibility issues.  You should remove that actionrole since the built
460     in behavior is compatible on its own.
461   - Initial debug screen now shows HTTP Method Match info
462   - security fixes in the way we handle redirects
463   - Make Catalyst::Engine and Catalyst::Base immutable
464   - Some test and documentation improvements
465
466 5.90019 - 2012-12-04 21:31:00
467   - Fix for perl 5.17.6 (commit g7dc8663). RT#81601
468   - Fix for perl 5.8. RT#61122
469   - Remove use of MooseX::Types as MooseX::Types is broken on perl5.8
470     RT#77100 & RT#81121
471
472 5.90018 - 2012-10-23 20:55:00
473   - Changed code in test suite so it no longer trips up on recent changes to
474     HTTP::Message.
475
476 5.90017 - 2012-10-19 22:33:00
477   - Change Catalyst _parse_attrs so that when sub attr handlers:
478
479     1) Can return multiple pairs of new attributes.
480     2) Get their returned attributes passed through the correct attribute handler.
481
482     e.g sub _parse_Whatever_attr { return Chained => 'foo', PathPart => 'bar' }
483
484     Will now work because both new attributes are respected, and the Chained
485     attribute is passed to _parse_Chained_attr and fixed up correctly by that.
486
487   - In Catalyst::Test, don't mangle headers of non-HTML responses. RT#79043
488
489   - Refactor request and response class construction to add methods
490     that roles can hook to feed extra parameters into the constructor
491     of request or response classes.
492
493 5.90016 - 2012-08-16 15:35:00
494   - prepare_parameters is no longer an attribute builder.  It is now a method
495     that calls the correct underlying functionality (Bill Moseley++)
496   - Updated Makefile.PL to handle MacOXS tar
497   - Fix uri_for to handle a stringifiable object
498   - Fix model/view/controller methods to handle stringifiable objects
499   - Fix RT#78377 - IIS7 ignores response body for 3xx requests, which
500     causes (a different) response to be broken when using keepalive.
501     Fixed by applying Middleware which removes the response body and
502     content length that Catalyst supplies with redirects.
503
504 5.90015 - 2012-06-30 16:57:00
505   - Fix $c->finalize_headers getting called twice. RT#78090
506   - Fix test fails in Catalyst-Plugin-Session-State-Cookie. RT#76179
507   - Fix test fails in Catalyst-Plugin-StackTrace
508   - Fix test fails in Test-WWW-Mechanize-Catalyst
509
510 5.90014 - 2012-06-26 10:00:00
511
512   - Fix calling finalize_headers before writing body when using $c->write /
513     $c->res->write (fixes RT#76179).
514
515 5.90013 - 2012-06-21 10:40:00
516
517   - Release previous TRIAL as stable.
518   - We failed to note in the previous changelog that the Makefile.PL has been
519     improved to make it easier for authors to bootstrap a developer install
520     of Catalyst.
521
522 5.90013 - TRIAL 2012-06-07 20:21:00
523
524  New features:
525   - Merge Catalyst::Controller::ActionRole into Catalyst::Controller.
526
527  Bug fixes:
528   - Fix warnings in some matching cases for Action methods with
529     Args(), when using Catalyst::DispatchType::Chained
530
531   - Fix request body parameters to not be undef if no parameters
532     are supplied.
533
534   - Fix action_args config so that it can be specified in the
535     top level config.
536
537   - Fix t/author/http-server.t on Win32
538
539   - Fix use of Test::Aggregate to make tests faster.
540
541 5.90012 - 2012-05-16 09:59:00
542
543  Distribution META.yml changes:
544   - author key is now correct, rather than what Module::Install
545     mis-parses from the documentation.
546   - x_authority key added.
547
548  Bug fixes:
549   - Fix request body parameters being multiply rebuilt. Fixes both
550     RT#75607 and CatalystX::DebugFilter
551
552   - Make plugin de-duplication work as intended originally, as whilst
553     duplicate plugins are totally unwise, the C3 error given to the user
554     is less than helpful.
555
556   - Remove dependence on obscure behaviour in B::Hooks::EndOfScope
557     for backward compatibility. This fixes issues with behaviour changes
558     in bleadperl. RT#76437
559
560   - Work around Moose bug RT#75367 which breaks
561     Catalyst::Controller::DBIC::API.
562
563  Documentation:
564   - Fix documentation in Catalyst::Component to show attributes and
565     calling readers, rather than accessing elements in the $self->{} hash
566     directly.
567   - Add note in Catalyst::Component to strongly disrecommend $self->config
568   - Fix vague 'checkout' wording in Catalyst::Utils. RT#77000
569   - Fix documentation for the 'secure' method in Catalyst:Request. RT#76710
570
571 5.90011 - 2012-03-08 16:43:00
572
573  Bug fixes:
574   - Simplification of the previous changes to Catalyst::ScriptRunner
575     We now just push $FindBin::Bin/../lib to the @INC path again, but
576     only if one of the dist indicator files (Makefile.PL Build.PL or
577     dist.ini) can be found in $FindBin::Bin/../$_
578     This avoids heuristics when the app is unloaded and therefore
579     works better for extensions which have entire applications in
580     their test suites.
581   - Bug fix to again correctly detect checkouts in dist zilla using
582     applications.
583   - --background option for the server script now only closes
584     STDIN, STDOUT and STDERR. This fixes issues with Log::Dispatch
585     and other loggers which open a file handle when
586   - Change incorrect use of File::Spec->catdir to File::Spec->catfile
587     so that we work on platforms which care about this (VMS?)
588   - Make it more obvious if our PSGI server doesn't pass in a response
589     callback.
590
591 5.90010 - 2012-02-18 00:01:00
592
593  Bug fixes:
594   - Fix the previous fix to Catalyst::ScriptRunner which was resulting
595     in the lib directory not being pushed onto @INC.
596     This meant perl ./script/myapp_server.pl failed, however
597     perl -Ilib ./script/myapp_server.pl would succeed.
598
599 5.90009 - 2012-02-16 09:06:00
600
601  Bug fixes:
602   - Fix the debug page so that it works as expected with the latest
603     refactoring.
604
605   - The Catalyst::Utils::home function is used to find if the application
606     is a checkout in Catalyst::ScriptRunner. This means that a non-existant
607     lib directory that is relative to the script install location is not
608     included when not running from a checkout.
609
610   - Fix dead links to cpansearch.perl.org to point to metacpan.org.
611
612   - Require the latest version of B::Hooks::EndOfScope (0.10) to avoid an
613     issue with new versions of Module::Runtime (0.012) on perl 5.10
614     which stopped Catalyst::Controller from compiling.
615
616   - In Catalyst::Test, don't mangle headers of non-HTML responses. RT#79043
617
618 5.90008 - TRIAL 2012-02-06 20:49:00
619
620  New features and refactoring:
621   - Much of the Catalyst::Engine code has been moved into Catalyst::Request
622     and Catalyst::Response, to be able to better support asynchronous web
623     servers such as Twiggy, by making the application engine more reenterant.
624
625     This change is as a prequel to full asynchronous support inside Catalyst
626     for AnyEvent and IO::Async backends, which allow highly scaleable streaming
627     (for applications such as multi-part XML HTTPRequests, and Websockets).
628
629  Deprecations:
630   - This means that the $c->engine->env method to access the PSGI environment
631     is now deprecated. The accessor for the PSGI env is now on Catalyst::Request
632     as per applications which were using Catalyst::Engine::PSGI
633
634     Catalyst::Engine::PSGI is now considered fully deprecated.
635
636   - The private _dump method in Catalyst::Log is now deprecated. The dumper is
637     not pluggable and which dumper to use should be a user choice. Using
638     an imported Dump() or Dumper() function is less typing than $c->log->_dump
639     and as this method is unused anywhere else in Catalyst, it has been scheduled
640     for removal as a cleanup. Calling this method will now emit a stack trace
641     on first call (but not on subsequent calls).
642
643  Back compatibility fixes:
644   - Applications still using Catalyst::Engine::PSGI as they rely on
645     $c->request->env - this is now the provided (and recommended) way of
646     accessing the raw PSGI environment.
647
648  Tests:
649   - Spurious warnings have been removed from the test suite
650
651  Documentation:
652   - Fix the display of PROJECT FOUNDER and CONTRIBUTORS sections in the
653     documentation. These were erroneously being emitted when the Pod
654     was converted to HTML for search.cpan.org
655
656   - Fix documentation for the build_psgi_app app method. Previously the
657     documentation advised that it provided the psgi app already wrapped
658     in default middleware. This is not the case - it is the raw app psgi
659
660 5.90007 - 2011-11-22 20:35:00
661
662   New features:
663    - Implement a match_captures hook which, if it exists on an action,
664      is called with the $ctx and \@captures and is expected to return
665      true to continue the chain matching and false to stop matching.
666      This can be used to implement action classes or roles which match
667      conditionally (for example only matching captures which are integers).
668
669   Bug fixes:
670    - Lighttpd script name fix is only applied for lighttpd versions
671      < 1.4.23. This should fix non-root installs of lighttpd in versions
672      over that.
673    - Prepare_action is now inside a try {} block, so that requests containing
674      bad unicode can be appropriately trapped by
675      Catalyst::Plugin::Unicode::Encoding
676
677 5.90006 - 2011-10-25 09:18:00
678
679   New features:
680    - A new 'run_options' class data method has been added to Catalyst.pm
681      This is used to store all the options passed by scripts, allowing
682      application authors to add custom options to their scripts then
683      get them passed through to the application.
684
685   Doumentation:
686    - Clarify that if you manually write your own .psgi file, then optional
687      proxy support (via the using_frontend_proxy config value) will not be
688      enabled unless you explicitly apply the default middlewares from
689      Catalyst, or you apply the middleware manually.
690
691   Bug fixes:
692    - Fix issue due to perl internals bugs in 5.8 and 5.10 (not present in
693      other perl versions) require can pass the context inappropriately,
694      meaning that some methods of loading classes can fail due to void
695      context being passed throuh to make_immutable, causing it to not return
696      a value.
697      This bug caused loading Catalyst::Script::XXX to fail and is fixed
698      both by bumping the Class::Load dependency, and also adding an explicit
699      '1;' to the end of the classes, avoiding the context issue.
700
701    - Fix using_frontend_proxy support in mod_perl by using the psgi wrapped
702      in default middleware in mod_perl context, rather than the raw psgi.
703
704 5.90005 - 2011-10-22 13:35:00
705
706   New features:
707
708    - $c->uri_for_action can now take an array of CaptureArgs and Args
709      If you have an action which has both, then you can now say:
710      $c->uri_for_action('/myaction', [@captures, @args]);
711      whereas before you had to say:
712      $c->uri_for_action('/myaction', [@captures], @args);
713      The previous form is still supported, however in many cases it is
714      easier for the application code to not have to differentiate between
715      the two.
716
717    - Catalyst::ScriptRunner has been enhanced so that it will now
718      load and apply traits, making it easier to customise.
719      - MyApp::TraitFor::Script (if it exists) will be applied to all
720        scripts in the application.
721      - MyApp::TraitFor::Script::XXXX will be applied to the relevant script
722        (for example MyApp::TraitFor::Script::Server will be applied to
723        MyApp::Script::Server if it exists, or Catalyst::Script::Server
724        otherwise).
725
726   Documentation:
727
728    - Document how to get the vhost of the request in $c->req->hostname
729      to avoid confusion
730    - Remove documentation showing Global / Regex / Private actionsi
731      as whilst these still exist (and work), they are not recommended.
732    - Remove references to the -Engine flag.
733    - Remove references to the deprecated Catalyst->plugin method
734    - Spelling fixed (and tested) throughout the documentation
735    - Note that wrapping the setup method will not work with method modifiers
736      and provide an alternative.
737
738 5.90004 - 2011-10-11 17:12:00
739
740   Bug fixes:
741
742    - Don't guess engine class names when setting an engine through
743      MyApp->engine_class.
744
745 5.90003 - 2011-10-05 08:32:00
746   Bug fixes:
747
748    - Make default body reponses for 302s W3C compliant. RT#71237
749
750    - Fix issue where groups of attributes to override controller actions
751      in config would be (incorrectly) overwritten, if the parser for that
752      attribute mangled the contents of the attribute. This was found
753      with Catalyst::Controller::ActionRole, where Does => [ '+Foo' ]
754      would be transformed to Does => [ 'Foo' ] and written back to config,
755      whereas Does => '+Foo' would not be changed in config. RT#65463
756
757   Enhancements:
758
759    - Set a matching Content-type for the redirect if Catalyst sets the
760      body. This is for compatibility with a WatchGuard Firewall.
761
762   Backward compatibility fixes:
763
764    - Restore (an almost empty) Catalyst::Engine::HTTP to the dist for old
765      scripts which explictly require Catalyst::Engine::HTTP
766
767   Documentation fixes:
768
769    - Document Catalyst::Plugin::Authentication fails tests unless
770      you use the latest version with Catalyst 5.9
771
772    - Clarify that prepare is called as a class method
773
774    - Clarify use of uri_for further. RT#57011
775
776 5.90002 - 2011-08-22 21:44:00
777   Backward compatibility fixes:
778
779     - Deploying via mod_perl in some cases is fixed by making
780       Catalyst::EngineLoader detect mod_perl in more generic
781       circumstances.
782       https://github.com/miyagawa/Plack/issues/239
783
784   Documentation fixes:
785
786     - Fix incorrect example in Catalyst::PSGI.
787     - Add note that if you are using the PSGI engine, then $c->req->env
788       needs to become $c->engine->env when you upgrade.
789
790 5.90001 - 2011-08-15 22:42
791
792  Realise that we accidentally chopped a digit off the versioning scheme
793  without anyone noticing, which is a bad thing.
794
795  Feel like a fool. Well done t0m.
796
797  Cut another release.
798
799 5.9000 - 2011-08-15 22:18
800
801  See Catalyst::Delta for the major changes in this release.
802
803  Changelog since the last TRIAL release:
804
805    Backward compatibility fixes:
806
807     - Fix calling MyApp->engine_class to set the engine class manually.
808
809     - Re-add a $res->headers->{status} field to Catalyst::Test responses.
810       This _should_ be accessed with $c->res->code instead, but is here
811       for backward compatibility.
812
813    Documentation:
814
815     - Documentation which was in the now removed Catalyst::Engine::* classes
816       has been moved to Catalyst::Manual::Deployment
817
818    Changes:
819
820     - nginx specific behaviour is removed as it is not needed with any
821       web server configuration I can come up with (recommended config is
822       documented in Catalst::Manual::Deployment::nginx::FastCGI)
823
824 5.89003 2011-07-28 20:11:50 (TRIAL release)
825
826  Backward compatibility fixes:
827
828   - Application scripts which have not been upgraded to newer
829     Catalyst::Script::XXX style scripts have been fixed
830
831  Bug fixes:
832
833   - mod_perl handler fixed to work with application classes which have manually
834     been made immutable.
835
836   - Scripts now force the Plack engine choice manually, rather than relying
837     on auto-detection, as the automatic mechanism gets it wrong if (for
838     example) Coro is loaded.
839
840   - Server script option for --fork --keepalive are now handled by loading
841     the Starman server, rather than silently ignored.
842
843   - Server script options for --background and --pid are now fixed by
844     using MooseX::Deamonize
845
846   - Plack middlewares to deal with issues in Lighttpd and IIS6 are now
847     automatically applied to applications and deployments which need them
848     (when there is not a user written .psgi script available).
849     This fixes compatibility with previous stable releases for applications
850     deployed in these environments.
851
852  Enhancements:
853
854   - Catalyst::Test's remote_request method not uses Plack::Test to perform
855     the remote request.
856
857  Documentation:
858   - Added a Catalyst::PSGI manual page with information about writing a .psgi
859     file for your application.
860
861    - Catalyst::Uprading has been improved, and the status of old Catalyst
862      engines clarified.
863
864  Deprecations:
865   - Catalyst::Test's local_request function is now deprecated. You should just
866     use the normal request function against a local server instead.
867
868 5.80033 2011-07-24 16:09:00
869
870  Bug fixes:
871   - Fix Catalyst::Request so that the hostname accessor is not incorrectly
872     populated with 'localhost' if a reverse DNS lookup fails.
873
874   - Fix Path actions debug screen to display number of arguments
875
876   - Fix a regression that prevented configuring attributes for all actions using
877     ->config(actions => { '*' => \%attrs }) from working
878
879   - Append $\ in Catalyst::Response->print to more closely match
880     IO::Handle's behaviour.
881
882   - Fixed situation where a detach($action) from a forward within auto
883     was not breaking out correctly
884
885   - Fix the disable_component_resolution_regex_fallback config setting
886     to also work in the $c->component method.
887
888   - Handle users setting cookies with an undef value by not trying to
889     output that cookie (rather than trying to do so and causing an exception
890     as previously happened). A warning is logged if this occurs in debug
891     mode.
892   - Update tests to ignore $ENV{CATALYST_HOME} where required
893
894   - Change repository metadata to point at git.
895
896   - Clean namespaces in Catalyst::Request::Upload
897
898   - Catalyst::Test: Fixes to action_ok, action_redirect and action_notfound
899     test functions to be better documented, and have better default test
900     names.
901
902   - Update tests to ignore CATALYST_HOME env var.
903
904 5.89002 2011-03-02 11:30:00 (TRIAL release)
905
906  Bug fixes:
907   - Fix a couple of test failures caused by optional dependencies such as FCGI
908     not being installed.
909
910  Refactoring:
911   - Simplified the API for getting a PSGI application code reference for a
912     Catalyst application for use in, for example, .psgi files. See
913     Catalyst::Upgrading for details.
914
915 5.89001 2011-03-01 15:27:00 (TRIAL release)
916
917  Bug fixes:
918   - Fixed command-line argument passing in Catalyst::Script::FastCGI.
919
920   - Fixed Catalyst::Engine::Stomp compatibility. Applications using
921     Catalyst::Engine::Stomp are believed to continue working without
922     any changes with the new Catalyst major version.
923
924   - Fixed issues auto-loading engine with older scripts.
925
926  Known problems:
927   - Catalyst::Engine::Wx is officially unsupported and BROKEN. If you
928     are using this engine then please get in touch with us and we'll
929     be happy to help with the changes it needs to be compatible with
930     the new major version of Catalyst.
931
932  Documentation:
933   - The section of Catalyst::Upgrading describing how to upgrade to version 5.90
934     of Catalyst has been much improved.
935
936 5.80032 2011-02-23 01:10:00
937
938  Bug fixes:
939   - Fix compatibility issue with code which was testing the value of
940     $c->res->body multiple times. Previously this would cause the value
941     to be built, and ergo cause the $c->res->has_body predicate to start
942     returning true.
943     Having a response body is indicated by $c->res->body being defined.
944
945   - Fix bug with calling $upload->slurp multiple times in one request
946     not working as expected as the file handle wasn't returned to
947     the zero position. (Adam Sjøgren)
948
949   - Fix some weird perl 5.8 situations where $c can get squashed unexpectedly
950     in Catalyst::execute
951
952   - Fix chained dispatch where chains were being compared for length (number
953     of private parts in the chain) vs where they are being compared for
954     PathPart length (i.e. number of non-capturing URI elements in your path).
955
956     This bug meant that sometimes multiple Args or CaptureArgs (e.g. /*/*)
957     type paths would be preferred to those with fixed path elements
958     (e.g. /account/*)
959
960  New features:
961    - Add MYAPP_RESTARTER and CATALYST_RESTARTER environment variables to
962      allow the restarter class to be chosen per application or generally.
963
964      This feature was added to enable GUI restarters (such as the soon to
965      be released CatalystX::Restarter::GTK to be enabled more easily by
966      developers without changing their application code.
967
968 5.80031 2011-01-31 08:13:02
969
970  Bug fixes:
971   - Update dependency on MooseX::Role::WithOverloading to ensure that
972     a version which can deal with / depends on a new Package::Stash
973     is installed. (As if some other dependency is pulled in during upgrading
974     which results in new Package::Stash, then it can leave you with a broken
975     version of MooseX::Role::WithOverloading.
976
977   - Fix undef warning in Catalyst::Engine::FastCGI when writing an empty
978     body (e.g. doing a redirect)
979
980 5.89000 2011-01-24 09:28:45 (TRIAL release)
981
982  This is a development release from psgi branch of Catalyst-Runtime.
983
984  Removed features:
985
986   - All of the Catalyst::Engine::* namespace is now gone. Instead we only have
987     one Catalyst::Engine class speaking the PSGI protocol natively. Everything
988     the various Catalyst::Engine:: classes did before is now supposed to happen
989     through PSGI handlers such as Plack::Handler::FCGI,
990     Plack::Handler::HTTP::Server::PSGI, Plack::Handler::Apache2, and so
991     on. However, deployment can still work the same as it did before. The
992     catalyst scripts still exist and continue to work.
993
994     If you find anything that either doesn't work anymore as it did before or
995     anything that could be done before with the various Catalyst::Engine::
996     classes, but can't be done anymore with the single PSGI Catalyst::Engine
997     class, please tell us *now*.
998
999 5.80030 2011-01-04 13:13:02
1000
1001  New features:
1002   - Add a --proc_title option to the FCGI script to set the process
1003     title.
1004   - Allow the response body to be set to `undef' explicitly to indicate the
1005     absence of a body. It can be used to indicate that no body should be sent at
1006     all and processing of views should be skipped. This is especially useful for
1007     things like X-Sendfile, which now no longer require providing fake response
1008     bodies to suppress view processing. In order for this to work, you will also
1009     have upgrade Catalyst::Action::RenderView to at least version 0.15.
1010
1011  Bug fixes:
1012   - Deal correctly with GLOB file handles in the response body (setting
1013     the Content-Length header appropriately)
1014   - Chained dispatch has been fixed to always prefer paths
1015     with the minimum number of captures (rather than the
1016     maximum number of actions). This means that (for example)
1017     a URI path /foo/* made out of 2 actions will take preference
1018     to a URI path /*/* made out of 3 actions. Please check your applications
1019     if you are using chained action and please write new test to report
1020     failing case.
1021   - Stop relying on bugs in the pure-perl version of Package::Stash. New
1022     versions of Package::Stash load Package::Stash::XS if
1023     available. Package::Stash::XS fixes some of the bugs of the pure-perl
1024     version, exposing our faulty assumption and breaking things. We now work
1025     with both old and new versions of Package::Stash, both with and without
1026     Package::Stash::XS being installed. Older versions of Catalyst-Runtime also
1027     work with both old and new versions of Package::Stash, but only if
1028     Package::Stash::XS is *not* installed.
1029
1030  Documentation:
1031   - Clarify that when forwarding or detaching, the end action associated
1032     with the original dispatched action will be run afterwards (fallen)
1033
1034 5.80029 2010-10-03 16:39:00
1035
1036  New features:
1037   - Add a warning when $c->view is called and cannot locate a default_view
1038     or current_view. This clarifies the logging when ::RenderView gets
1039     confused.
1040
1041  Warning fixes:
1042   - Deal warning in with Moose >= 1.15 if you add a method called 'meta' to a
1043     class which already has one by using _add_meta_method.
1044
1045 5.80028 2010-09-28 20:49:00
1046
1047  Bug fixes:
1048   - use Class::MOP in Catalyst::Utils.
1049
1050   - Do not keep a reference to a closed over context in ctx_request, allowing
1051     the caller to dispose of the request context at their leisure.
1052
1053   - Changes to be compatible with bleadperl
1054
1055 5.80027 2010-09-01 22:14:00
1056
1057  Bug fixes:
1058   - Fix an issue with newly added test cases which depended on Catalyst::Action::RenderView
1059
1060 5.80026 2010-09-01 15:14:00
1061
1062  Bug fixes:
1063   - Fix so that CATALYST_EXCEPTION_CLASS in MyApp is always respected by
1064     not loading Catalyst::Exception in Utils.pm BEGIN, because some Scripts::*
1065     load Utils before MyApp.pm
1066
1067   - Fix warnings with new Moose versions about "excludes" during role
1068     application
1069
1070   - Fix warning from MooseX::Getopt regarding duplicate "help" aliases.
1071
1072   - parse_on_demand fixed when used in conjunction with debug mode.
1073     A regression was introduced in 5.80022 which would cause the body
1074     to always be parsed for logging at the end of the request when in
1075     debug mode. This has been fixed so that if the body has not been parsed
1076     by the time the request is logged, then the body is omitted.
1077
1078   - Fix show_internal_actions config setting producing warnings in debug
1079     mode (RT#59738)
1080
1081   - Make Catalyst::Test::local_request() set the response base from base href
1082     in the returned document so that links can be resolved correctly by
1083     Test::WWW::Mechanize::Catalyst
1084
1085  Refactoring:
1086    - moved component name sort that happens in setup_components to
1087      locate_components to allow methods to wrap around locate_components
1088
1089  Documentation:
1090     - Fix some typos
1091
1092     - Advertise Catalyst::Plugin::SmartURI
1093
1094
1095 5.80025 2010-07-29 01:50:00
1096
1097  New features:
1098   - An 'action_class' method has been added to Catalyst::Controller to
1099     allow controller base classes, roles or traits
1100     (e.g. Catalyst::Controller::ActionRole) to more easily override
1101     the default action creation.
1102
1103  Bug fixes:
1104   - Fix the --mech and --mechanize options to the myapp_create.pl script
1105     to operate correctly by fixing the options passed down into the script.
1106   - Fix controllers with no method attributes (where the action definitions
1107     are entirely contained in config). RT#58057
1108   - Fix running as a CGI under IIS at non-root locations.
1109   - Fix warning about "excludes" during role application
1110   - Fix warning from MooseX::Getopt regarding duplicate "help" aliases
1111
1112  Documentation:
1113   - Fix missing - in the docs when describing the --mechanize option at one
1114     point.
1115   - Explained the common practice how to access the component's config
1116     values.
1117   - Fixed typo in Catalyst/Script/Server.pm (RT #58474)
1118
1119 5.80024 2010-05-15 11:55:44
1120
1121   Bug fixes:
1122    - Revert the path resolution behaviour to how it used to work before
1123      Catalyst 5.80014_02, so that application paths are (by default)
1124      resolved from $ENV{PATH_INFO} and $ENV{SCRIPT_NAME}. This fixes backward
1125      compatibility breakage seen by a number of people since that release
1126      with mod_rewrite and SSI.
1127
1128   New features:
1129    - Add a use_request_uri_for_path config setting to optionally
1130      use the (more correct) $ENV{REQUEST_URI} path resolution behaviour.
1131
1132   Documentation:
1133    - Clarify the documentation for the Catalyst::Stats interface.
1134    - Copious documentation about the use_request_uri_for_path feature
1135      and the implications of setting this to true/false in
1136      Catalyst::Engine::CGI
1137
1138 5.80023 2010-05-07 23:50:27
1139
1140   Bug fixes:
1141    - Ensure to always cleanup temporary uploaded files in all cases, even
1142      when exceptions occur during request processing, using HTTP::Body's
1143      ->cleanup feature. (RT#41442)
1144    - Ensure that Catalyst::Engine::HTTP's options hash is defined before
1145      dereferencing it. (RT#49267)
1146    - Fix regex special characters in REDIRECT_URL variable breaking
1147      the request base. (2nd part of RT#24951)
1148    - Fix not stripping backslashes in DispatchType::Regex::uri_for_action
1149
1150   New features:
1151    - Setting __PACKAGE__->config(enable_catalyst_header => 1); in your MyApp.pm
1152      now enables the X-Catalyst header being printed when not in debug mode.
1153    - Require CGI::Simple::Cookie version 1.109 to ensure support for the
1154      HttpOnly flag
1155    - Allow the myapp_test.pl script to be given a list of paths which it
1156      will retrieve all of. (RT#53653)
1157    - Allow parameterized roles to be applied as plugins.
1158    - Allow requiring minimum versions of plugins when loading them.
1159
1160   Documentation:
1161    - The Catalyst::Test::get method is documented as returning the raw
1162      response bytes without any character decoding (RT#53678)
1163
1164   Cleanups:
1165    - Removal of $Catalyst::PRETTY_VERSION. Future releases will always have the
1166      full and unmangled version number, including trailing zeroes, in
1167      $Catalyst::VERSION.
1168
1169 5.80022 2010-03-28 19:43:01
1170
1171   New features:
1172    - Log an extra line in debug mode with the response status code,
1173      the content type and content length if available.
1174
1175   Refactoring / optimizations:
1176    - Display of the end of hit debug messages has been factored out into
1177      log_headers, log_request, log_request_headers, log_response,
1178      log_response_status_line and log_response_headers methods so that
1179      plugins which customise how much information is shown on the debug
1180      screen as easy to write.
1181    - Make all logging of request and response state get the information from
1182      $c->dump_these so that there is a unified point from which to hook
1183      in parameter filtering (for example).
1184    - $c->model/view/controller have become a lot faster for non-regexp names
1185      by using direct hash lookup instead of looping.
1186    - IP address => hostname mapping for the server is only done once and cached
1187      by Catalyst::Engine::HTTP to somewhat mitigate the problem of people
1188      developing on machines pointed at slow DNS servers.
1189
1190   Bugs fixed:
1191     - DispatchType::Index's uri_for_action only returns for actions registered
1192       with it (prevents 'index :Path' or similar resolving to the wrong URI)
1193     - Make sure to construct Upload objects properly, even if there are
1194       multiple Content-Type headers (Closes RT#55976).
1195
1196 5.80021 2010-03-03 23:02:01
1197
1198   Bug fixed:
1199    - $c->uri_for will now escape unsafe characters in captures
1200      ($c->request->captures) and correctly encode utf8 charracters.
1201
1202 5.80020 2010-02-04 06:51:18
1203
1204   New features:
1205     - Allow components to specify additional components to be set up by
1206       overriding the expand_modules method. (Oliver Charles)
1207
1208 5.80019 2010-01-29 01:04:09
1209
1210   Bug fixed:
1211    - Calls to $c->uri_for with private paths as strings (e.g.
1212      $c->uri_for('controller/action', 'arg1', 'arg2') ) no longer have
1213      / encoded to %2F. This is due to $c->uri_for('static', 'css/foo', $bar)
1214      which should not be encoded.
1215      Calls with an action object (rather than a string), or uri_for action
1216      will still encode / in args and captures to %2F
1217
1218    - The above noted / => %2F encoding in uri_for_action or uri_for with
1219      an action object has been fixed to not just encode the first slash in
1220      any set of args/captures.
1221
1222    - nginx and lighttpd FCGI requests with URI encoded sections as the first
1223      path part have been fixed to operate correctly.
1224
1225    - A source of bogus warnings in Catalyst::Component::BUILDARGS has been
1226      removed.
1227
1228   Documentation:
1229    - Improve the documentation about -Home and how Catalyst finds the home path
1230      for applications.
1231    - Various minor typo fixes.
1232
1233   New features:
1234    - Allow passing additional arguments to action constructors.
1235
1236 5.80018 2010-01-12 22:24:20
1237
1238   Bug fixed:
1239    - Call ->canonical on URI derived from $ENV{REQUEST_URI} to get
1240      paths correctly decoded. This bug was previously hidden by a bug
1241      in HTTP::Request::AsCGI.
1242
1243   Documentation:
1244    - Clarify that uri_for_action works on private paths, with example.
1245    - Clarify documentation about debug
1246
1247   Deprecations:
1248    - Saying use Catalyst::Test; (without an application name or () to stop
1249      the importer running is now deprecated and will issue a warning.
1250      You should be saying use Catalyst::Test ();
1251
1252 5.80017 2010-01-10 02:27:29
1253
1254   Documentation:
1255    - Fix docs for ->forward method when passed a class name - this should
1256      be a component name (e.g. View::HTML, not a full class name, like
1257      MyApp::View::HTML).
1258
1259   Bug fixes:
1260    - --daemon and -d options to Catalyst::Script::FastCGI are fixed.
1261    - Fix the debug dump for applications which use Catalyst::Plugin::Session
1262      (RT#52898)
1263    - Fix regression in the case where mod_rewrite is being used to rewrite
1264      requests into a path below your application base introduced with the
1265      %2F related fixes in 5.80014_02.
1266    - Do not crash on SIGHUP if Catalyst::Engine::HTTP->run is not passed the
1267      argv key in the options hash.
1268    - Correctly pass the arguments to Catalyst::Script::Server through to
1269      Catalyst::Engine::HTTP->run so that the server can restart itself
1270      with the correct options on SIGHUP.
1271    - Require new MooseX::MethodAttributes to be compatible with Moose
1272      versions >= 0.93_01
1273    - Require new MooseX::Role::WithOverloading to be compatible with Moose
1274      versions >= 0.93_01
1275
1276   Cleanups:
1277     - Stop suppressing warnings from Class::C3::Adopt::NEXT now that most plugins
1278       have been updated to not use NEXT. If you get warnings then please upgrade
1279       your components or log a bug with the component author if an upgrade is
1280       not available. The Class::C3::Adopt::NEXT documentation contains information
1281       about how to suppress the warnings in your application if you need to.
1282
1283 5.80016 2009-12-11 23:23:33
1284
1285   Bug fixes:
1286
1287    - Fix slurping a file to work correctly with binary on Win32 in the
1288      encoding test controller.
1289
1290   Bug fixes in the new scripts (for applications which have been upgraded):
1291
1292    - Allow --restartdirectory as an option for the Server script, for
1293      backwards compatibility. (Dave Rolsky)
1294    - The --host option for the server script defaulted to localhost, rather
1295      than listening on all interfaces, which was the previous default. (Dave
1296      Rolsky)
1297    - Restore -p option for pid file in the FastCGI server script.
1298    - Fix the script environment variables MYAPP_PORT and MYAPP_RELOAD RT#52604
1299    - Fix aliasing applications under non-root paths with mod_rewrite in
1300      some apache versions where %ENV{SCRIPT_NAME} is set to the real name of
1301      the script, by using $ENV{REDIRECT_URL} which contains the non-rewritten
1302      URI.
1303    - Fix usage display when myapp_create.pl is run with no arguments. RT#52630
1304
1305   New features:
1306
1307    - The __MOP__ hash element is suppressed from being dumped fully
1308      (and instead stringified) when dumping the error screen to be
1309      less packed with information of no use.
1310
1311   Documentation:
1312
1313    - Fix Pod nits (RT#52370)
1314
1315 5.80015 2009-12-02 15:13:54
1316   Bug fixes:
1317    - Fix bug in Catalyst::Engine which would cause a request parsing to end
1318      prematurely in the hypothetical case where calling $engine->read returned
1319      the single character '0'.
1320    - Fix failing tests when combined with new HTTP::Request::AsCGI
1321
1322   Documentation:
1323    - Improved documentation on read and read_chunk methods in Catalyst::Engine.
1324    - Fix reversal of SCRIPT_NAME and PATH_INFO in previously correct nginx
1325      FastCGI documentation introduced in _02.
1326
1327 5.80014_02 2009-12-01 00:55:23
1328   Bug fixes:
1329    - Fix reporting the wrong Content-Length if the response body is an
1330      upgraded string. Strings mean the same thing whether or not they are
1331      upgraded, may get upgraded even after they are encoded, and will
1332      produce the same output either way, but bytes::length returns too big
1333      values for upgraded strings containing characters >127
1334    - Fix t/live_fork.t with bleadperl (RT#52100)
1335    - Set $ENV{PATH_INFO} from $ENV{REQUEST_URI} combined with
1336      $ENV{SCRIPT_NAME} if possible. This is many web servers always fully
1337      decode PATH_INFO including URI reserved characters. This allows us to
1338      tell foo%2cbar from foo%252cbar, and fixes issues with %2F in paths
1339      being incorrectly decoded, resulting in too many path parts (rather
1340      than 1 path part containing a /, on some web servers (at least nginx).
1341      (RT#50082)
1342    - Require new HTTP::Request::AsCGI so that it fully decodes $ENV{PATH_INFO}
1343      in non CGI contexts. (RT#50082)
1344
1345   Refactoring / cleanups:
1346    - NoTabs and Pod tests moved to t/author so that they're not run
1347      (and then skipped) normally.
1348
1349   Documentation:
1350     - Fix Pod nits in Catalyst::Response (RT#51818)
1351
1352 5.80014_01 2009-11-22 20:01:23
1353
1354   Bug fixes:
1355    - Filehandle now forced to binmode in CGI and FastCGI engines. This appears
1356      to correct some UTF-8 issues, but may break people's code which relies
1357      on the old behaviour.
1358
1359   Refactoring / cleanups:
1360    - Plugins which inherit from Catalyst::Controller or Catalyst::Component
1361      are deprecated and now issue warnings.
1362
1363 5.80014 2009-11-21 02:51:14
1364
1365    Bug fixes:
1366     - Require MooseX::MethodAttributes 0.17. This in turn requires new
1367       MooseX::Types to stop warnings in Moose 0.91, and correctly supports
1368       role combination of roles containing attributed methods.
1369     - Catalyst::Dispatcher::dispatch_types no longer throws deprecated warnings
1370       as there is no recommended alternative.
1371     - Improved the suggested fix warning when component resolution uses regex
1372       fallback for fully qualified component names.
1373     - Catalyst::Test::local_request sets ->request on the response.
1374     - Log flush moved to the end of setup so that roles and plugins which
1375       hook setup_finalize can log things and have them appear in application
1376       startup, rather than with the first hit.
1377     - Require a newer version of LWP to avoid failing tests.
1378     - Stop warnings when actions are forwarded to during dispatch.
1379     - Remove warnings for using Catalyst::Dispatcher->dispatch_types as this is a
1380       valid method to publicly call on the dispatcher.
1381     - Args ($c->request->args) and CaptureArgs ($c->request->captrues)
1382       passed to $c->uri_for with an action object ($c->action) will now
1383       correctly round-trip when args or captures contain / as it is now
1384       correctly uri encoded to %2F.
1385
1386   Documentation:
1387     - Document no-args call to $c->uri_for.
1388     - Document all top level application configuration parameters.
1389     - Clarify how to fix actions in your application class (which is
1390       deprecated and causes warnings).
1391     - Pod fixes for ContextClosure.
1392     - Fix documentation for go/visit to reference captures and arguments
1393       in the correct order.
1394     - Update $c->forward and $c->state documentation to address scalar
1395       context.
1396     - Pod fix in Catalyst::Request (RT#51490)
1397     - Pod fixes to refer to ::Controller:: rather than ::C:: as the latter
1398       is deprecated (RT#51489)
1399
1400   New features:
1401     - Added disable_component_resolution_regex_fallback config option to
1402       switch off (deprecated) regex fallback for component resolution.
1403     - Added an nginx-specific behavior to the FastCGI engine to allow
1404       proper PATH_INFO and SCRIPT_NAME processing for non-root applications
1405     - Enable Catalyst::Utils::home() to find home within Dist::Zilla built
1406       distributions
1407     - Added the Catalyst::Exception::Interface role defining the interface
1408       exception classes need to implement.
1409     - Added Catalyst::Exception::Basic as a basic implementation of
1410       Catalyst::Exception::Interface and made the existing exception classes
1411       use it.
1412
1413   Refactoring / cleanups:
1414     - Remove documentation for the case_sensitive setting
1415     - Warning is now emitted at application startup if the case_sensitive
1416       setting is turned on. This setting is not used by anyone, not
1417       believed to be useful and adds unnecessary complexity to controllers
1418       and the dispatcher. If you are using this setting and have good reasons
1419       why it should stay then you need to be shouting, now.
1420     - Writing to $c->req->body now fails as doing this never makes sense.
1421
1422 5.80013 2009-09-17 11:07:04
1423
1424    Bug fixes:
1425      - Preserve immutable_options when temporarily making a class mutable in
1426        Catalyst::ClassData as this is needed by new Class::MOP.
1427        This could have potentially caused issues when using the deprecated runtime
1428        plugins feature in an application with plugins which define their own new
1429        method.
1430      - Require new Moose version and new versions of various dependencies
1431        to avoid warnings from newest Moose release.
1432      - Fix go / visit expecting captures and arguments in reverse order.
1433
1434   Documentation:
1435      - Rework the $c->go documentation to make it more clear.
1436      - Additional documentation in Catalyst::Upgrading covering more deprecation
1437        warnings.
1438
1439   Refactoring / cleanups:
1440      - Action methods in the application class are deprecated and applications
1441        using them will now generate a warning at startup.
1442      - The -short option has been removed from catalyst.pl, stopping new
1443        applications from being generated using the ::[MVC]:: naming scheme as
1444        this is deprecated and generates warnings. RT#49771
1445
1446 5.80012 2009-09-09 19:09:09
1447
1448   Bug fixes:
1449      - Fix t/optional_http-server.t test.
1450      - Fix t/optional_http-server-restart.t test.
1451      - Fix duplicate components being loaded at setup time, each component is
1452        now loaded at most once + tests.
1453      - Fix backward compatibility - hash key configured actions are stored in
1454        is returned to 'actions'.
1455      - Fix get_action_methods returning duplicate methods when a method is both
1456        decorated with method attributes and set as an action in config.
1457
1458   Refactoring / cleanups:
1459      - Reduce minimum supported perl version from 5.8.6 to 5.8.4 as there are
1460        many people still running/testing this version with no known issues.
1461
1462   Tests:
1463      - Make the optional_http_server.t test an author only test which must be
1464        run by authors to stop it being broken again.
1465      - Fix recursion warnings in the test suites.
1466
1467 5.80011 2009-08-23 13:48:15
1468
1469   Bug fixes:
1470       - Remove leftovers of the restarter engine. The removed code caused test
1471         failures, which weren't apparent for anyone still having an old version
1472         installed in @INC.
1473
1474 5.80010 2009-08-21 23:32:15
1475
1476   Bug fixes:
1477       - Fix and add tests for a regression introduced by 5.80008.
1478         Catalyst::Engine is now able to send out data from filehandles larger
1479         than the default chunksize of 64k again.
1480
1481 5.80009 2009-08-21 22:21:08
1482
1483   Bug fixes:
1484       - Fix and add tests for generating inner packages inside the COMPONENT
1485         method, and those packages being correctly registered as components.
1486         This fixes Catalyst::Model::DBIC among others.
1487
1488 5.80008 2009-08-21 17:47:30
1489
1490   Bug fixes:
1491        - Fix replace_constructor warning to actually work if you make your
1492          application class immutable without that option.
1493        - Depend on Module::Pluggable 3.9 to prevent a bug wherein components
1494          in inner packages might not be registered. This especially affected
1495          tests.
1496        - Catalyst::Engine::FastCGI - relax the check for versions of Microsoft
1497          IIS. Provides compatibility with Windows 2008 R2 as well as
1498          (hopefully) future versions.
1499        - In tests which depend on the values of environment variables,
1500          localise the environment, then delete only relevant environment
1501          variables (RT#48555)
1502        - Fix issue with Engine::HTTP not sending headers properly in some cases
1503          (RT#48623)
1504        - Make Catalyst::Engine write at least once when finalizing the response
1505          body from a filehandle, even if the write is empty. This avoids fail
1506          when trying to send out an empty response body from a filehandle.
1507        - Catalyst::Engine::HTTP - Accept a fully qualified absolute URI in the
1508          Request-URI of the Request-Line
1509
1510   Refactoring / cleanups:
1511        - Deleted the Restarter engine and its Watcher code. Use the
1512          new Catalyst::Restarter in a recent Catalyst::Devel instead.
1513        - New unit test for Catalyst::Action 'unit_core_action.t'
1514        - Bump minimum supported perl version from 5.8.1 to 5.8.6 as there are
1515          known issues with 5.8.3.
1516        - Debug output uses dynamic column sizing to create more readable output
1517          when using a larger $ENV{COLUMNS} setting. (groditi)
1518
1519   New features:
1520        - Added private_path method for Catalyst::Action
1521        - Allow uri_for($controller_instance) which will produce a URI
1522          for the controller namespace
1523        - Break setup_components into two more parts: locate_components and
1524          expand_component_module (rjbs)
1525        - Allow Components to return anon classed from their COMPONENT method
1526          correctly, and have action registration work on Controllers returned
1527          as such by adding a catalyst_component_name accessor for all components
1528          which returns the component instance's name to be used when building
1529          actions etc.
1530        - Adding X-Forwarded-Port to allow the frontend proxy to dictate the
1531          frontend port (jshirley)
1532        - Added Catalyst::Stats->created accessor for the time at the start of
1533          the request.
1534
1535   Documentation:
1536        - Fix POD to refer to ->config(key => $val), rather than
1537          ->config->{key} = $val, as the latter form is deprecated.
1538        - Clearer docs for the 'uri_for' method.
1539        - Fix POD refering to CGI::Cookie. We're using CGI::Simple::Cookie.
1540          (Forrest Cahoon)
1541
1542 5.80007 2009-06-30 23:54:34
1543
1544   Bug fixes:
1545        - Don't mangle query parameters passed to uri_for
1546          - Tests for this (Byron Young + Amir Sadoughi)
1547        - Inherited controller methods can now be specified in
1548          config->{action(s)}
1549        - Assigning an undef response body no longer produces warnings
1550        - Fix C3 incompatibility bug caused if you use Moose in MyApp.pm and
1551          add Catalyst to the right hand side of this in @ISA.
1552        - Make Catalyst.pm implement the Component::ApplicationAttribute
1553          interface so defining actions in MyApp.pm works again, if the
1554          actions have attributes that cause $self->_application to be used
1555          (like ActionClass).
1556
1557   New features:
1558        - Add optional second argument to uri_with which appends to existing
1559          params rather than replacing them. (foo=1 becomes foo=1&foo=2 when
1560          uri_with({ foo => 2 }, { mode => 'append' }) is called on a foo=1
1561          URI.
1562
1563 5.80006 2009-06-29 23:37:47
1564
1565   Bug fixes:
1566         - Revert change to URL encode things passed into $c->uri_for
1567           Args and CaptureArgs as this causes breakage to pre-existing
1568           applications.
1569         - Remove use of Test::MockObject as it doesn't install from CPAN
1570           in some environments.
1571         - Remove use of dclone to deep copy configs and replace with
1572           Catalyst::Utils::merge_hashes which has the same effect, of
1573           ensuring child classes don't inherit their parent's config,
1574           except works correctly with closures.
1575         - Add Class::C3::reinitialize into Catalyst::Test to avoid weird
1576           bugs in ctx_request (bokutin in RT#46459)
1577         - Fix issues with _parse_PathPrefix_attr method in Catalyst::Controller
1578           (jasonk in RT#42816)
1579         - Fix bugs with action sorting:
1580           - Path actions sorted so that the most specific wins.
1581           - Action methods named default and index fixed.
1582
1583   New features:
1584         - Use ~ as prefix for plugins or action classes which are located in
1585           MyApp::Plugin / MyApp::Action (mo)
1586         - Controller methods without attributes are now considered actions if
1587           they are specified in config->{action(s)} (mo)
1588         - Add Catalyst::Component::ContextClosure as an easy way to create code
1589           references, that close over the context, without creating leaks.
1590
1591   Refactoring / cleanups:
1592         - Clean namespaces in Catalyst::Exception*.
1593         - Turn Catalyst::Exception into an actual class and make the throw
1594           method create instances of it. They can still be used as normal
1595           strings, as before, as they are overloaded to stringify to their
1596           error message.
1597         - Add a rethrow method to Catalyst::Exception.
1598         - Add Catalyst::Exception::Detach and ::Go, and refactor detach() and
1599           go() to use them instead of magic, global strings.
1600           Fixes RT#47366
1601         - Clean up getting metaclass instance and making app class immutable
1602           again in Catalyst::Test
1603
1604 5.80005 2009-06-06 14:40:00
1605
1606   Behaviour changes:
1607         - Arguments ($c->req->args) in Chained dispatch are now automatically
1608           URL decoded to be consistent with Local/Path dispatch
1609
1610   Documentation:
1611         - Clarify correct techniques for Moose controllers (domm)
1612
1613   Bug fixes:
1614         - Further change pushing 'env' attribute down into Catalyst::Engine
1615           to make $c->engine->env work in all cases (kmx)
1616         - Also fix $c->engine->env in Catalyst::Test tests (kmx)
1617           - Tests for this
1618         - Fix Catalyst failing to start if any plugin changed $_ whilst
1619           loading
1620           - Tests for this
1621         - Be stricter about arguments to Args attributes for Chained actions,
1622           so that they blow up on load instead of causing undefined behavior
1623           later on
1624           - Tests for this
1625         - Prefer Path actions with a smaller (or set) number of Args (caelum)
1626           Bug reported here: http://stackoverflow.com/questions/931653/catalyst-action-that-matches-a-single-file-in-the-root-directory/933181#933181
1627           - Tests for this
1628
1629    New features:
1630         - Add $c->req->remote_user to disambiguate from $c->req->user (dwc)
1631         - Require MooseX::MethodAttributes 0.12 so that action methods
1632           (with attributes) can be used in / composed from Moose roles.
1633         - Allow the generation of cookies with the HTTPOnly flag set
1634           in Catalyst::Engine (kmx)
1635
1636 5.80004 2009-05-18 17:03:23
1637         - Rename the actions attribute in Catalyt::Controller to
1638           _controller_actions to avoid name clashes with application
1639           controller naming. (random)
1640         - Test for using Moose in components which have a non-Moose base class
1641           Fixed by 349cda in Moose 0.78
1642         - Fix deprecation message for Catalyst::Dispatcher to refer
1643           to the class actually calling the deprecated method. RT#45741
1644         - Clarify limitations of $request->base and $request->secure.
1645           (Phil Mitchell)
1646         - Add 'use Catalyst' to documentation for a Moose MyApp class as
1647           noted by dmaki.
1648         - Fix so that / (and other special characters) are URL encoded when
1649           passed into $c->uri_for as Args/CaptureArgs
1650         - Fix development server so that $c->engine->env returns the correct
1651           environment
1652         - Require Moose 0.78 to fix metaclass incompatibility issues
1653         - Require MooseX::MethodAttributes 0.10 and use
1654           Moose::Meta::Class->initialize rather than Moose->init_meta to fix
1655           bugs related to having a 'meta' method in your controller
1656         - Fix cases where your application failing to compile could cause perl
1657           to report 'Unknown Error'
1658         - Support adding Moose::Roles to the plugin list. These are applied to
1659           MyApp after plugins have been pushed onto @ISA
1660         - Fix calling $c->req->parameters as the first thing you do when
1661           parse_on_demand is on
1662
1663 5.80003 2009-04-29 16:23:53
1664         - Various POD tweaks. (hdp, dandv)
1665         - Fix formatting error in the regex fallback warning.
1666         - Convert the dispatcher's and restarter engine's BUILD method to
1667           attribute builders to not override the BUILD method from
1668           MooseX::Emulate::Class::Accessor::Fast.
1669         - Fix classes without metaclasses restarting, when not using
1670           B::Hooks::OP::Check::StashChange
1671         - Fix the unattached chain debug table for endpoints with no
1672           parents at all.
1673         - Turn off test aggregation by default. Only aggregate if the
1674           AGGREGATE_TESTS environment variable is set and a recent
1675           Test::Aggregate is available.
1676         - Bump to MooseX::MethodAttributes 0.09, to gain the
1677           get_nearest_methods_with_attributes method allowing methods without
1678           attributes in a subclass to override those with attributes in a
1679           superclass. This fixes CatalystX::CRUD's method of overriding /
1680           disabling functionality from base controllers.
1681         - Bump HTTP::Request::AsCGI dependency to avoid broken version
1682         - Bump Moose dependency to latest version to fix metaclass
1683           incompatibility issues in some cases.
1684         - Additional tests for setup_stats method.
1685         - Fix log levels in Catalyst::Log to be properly additive.
1686         - Fix RT#43375 by sorting results before testing them
1687         - Fixes for uri_for_action when using Catalyst::DispatchType::Regex
1688           + tests from RT#39369 (norbi)
1689         - Partial rewrite and reoganisation of the C3 docs in
1690           Catalyst::Upgrading based on feedback from kiffin
1691         - If you make your application class immutable and turn off
1692           constructor inlining, Catalyst will die and tell you pass
1693           the (replace_constructor => 1) argument to
1694           make_immutable. (Dave Rolsky)
1695
1696 5.80002 2009-04-22 01:28:36
1697         - Fix CATALYST_DEBUG and MYAPP_DEBUG environment variables
1698           turning debuging on if defined, rather than if set.
1699           They now force debugging on or off, taking precedence over
1700           configuration in your application.
1701           - Tests for this
1702         - pass replace_constructor to the immutable call to ensure
1703           applications get a Moose constructor rather than a C::A one
1704         - Fix issues with restarting the application class due to C3 failures
1705           on perl 5.10
1706         - Work around issues in Moose with initialization order of multiple
1707           levels of non-Moose classes inheriting from a Moose class
1708           - Test for this
1709         - Add backwards compatibility method for Catalyst::Log->body, which
1710           has been made private
1711         - Fix so that calling $c->req->parameters(undef) does not flatten
1712           the request parameters with undef + test
1713         - Fix so that width of table of unattached actions for debugging
1714           ::DispatchType::Chained varies according to your terminal width
1715           (Oleg Kostyuk)
1716         - Fix warning message about linearized @ISA in Catalyst::Component
1717           (Emanuele Zeppieri)
1718         - Require MX::MethodAttributes 0.06 to avoid issues with saying
1719           use base 'Catalyst::Controller'; use Moose; losing actions
1720         - Fix all of's typos in ::Upgrading and ::Delta (hobbs)
1721
1722 5.80001 2009-04-18 22:18
1723         - Don't inline the constructor for Catalyst::Log to avoid a
1724           warning on recent Moose versions.
1725         - Add delta documentation
1726         - Clean up recursion errors
1727         - Extra cross links in dispatch types POD (Ian Wells)
1728         - Test uri_with clears query params when they are set to undef
1729           (Ian Wells)
1730         - Complain about old Catalyst::Devel versions which generated
1731           ->setup(qw/-Debug... etc. as this is not recommended
1732
1733 5.8000_07 2009-04-12 13:37
1734         - Add the Catalyst::Dispatcher->dispatch_type method (ash)
1735         - Throw an exception rather than loading an app if an action
1736           tries to chain to itself
1737           - Tests for this
1738         - Change the $c->visit and $c->go methods to optionally take
1739           CaptureArgs, making them useful to call ActionChains with
1740           - Tests for this (radek)
1741         - Fix _invoke_as_component method to find the proper action instance
1742           for dispatchable actions so that ->visit or ->going to ActionChains
1743           with qw/Class::Name method_name/ works correctly
1744           - Tests for this (radek)
1745         - Added Catalyst::Test::ctx_request to be able to inspect
1746           the context object after a request is made (Jos Boumans)
1747         - debug() POD rewrite (jhannah)
1748         - Change the warning when you have conflicting components to
1749           present a list
1750         - Move NEXT use and testing deprecated features out to its own
1751           test application so that the main TestApp isn't polluted with
1752           spurious warnings
1753         - Add a warning for the old ::[MVC]:: style naming scheme
1754           - Test for this
1755         - Kill Class::C3::Adopt::NEXT warnings for the Catalyst:: namespace
1756           in production versions
1757         - Tidy up Catalyst::ClassData to ensure that all components get
1758           the correct metaclass
1759         - Make MyApp.pm restartable by unsetting setup_finished in
1760           the restarter process
1761         - Non-naive implementation of making mutable on restart using
1762           B::Hooks::OP::Check::StashChange if installed
1763           - Tests for this
1764         - Naive implementation of making all components mutable in the
1765           forked restart watcher process so native Moose apps using
1766           immutable restart correctly.
1767           - Tests for this
1768         - Bump Moose dependency to 0.70 so that we avoid nasty surprises
1769           with is_class_loaded and perl 5.80 when you Moosify MyApp.pm
1770         - Clarify that request arguments aren't unescaped automatically
1771           (Simon Bertrang) (Closes RT#41153)
1772         - Don't require C3 for the MRO test
1773         - Bump MX::Emulate::CAF prereq to support list assignment
1774         - Remove useless column in chained action debug table.
1775         - namespace::clean related cleanups
1776         - Import related cleanups and consistency fixes
1777         - Fix test suite TestApp /dump/env action
1778         - Add $res->code as alias for $res->status
1779         - Make Catalyst::ClassData compatible with the latest Class::MOP::Class
1780           changes. Also depend on the latest Class::MOP.
1781         - Add $c->uri_for_action method.
1782         - Don't stringify the meta method. Use its name instead.
1783         - Use MooseX::MethodAttributes::Inheritable to contain action
1784           attributes. This means that attributes are now represented in the MOP,
1785           allowing method modifiers on actions to work as expected.
1786         - Provide a reasonable API in Catalyst::Controller for working with
1787           and registering actions, allowing a controller sub-class to replace
1788           subroutine attributes for action declerations with an alternate
1789           syntax.
1790         - Instantiate correct sub-class of Moose::Meta::Class for non-Moose
1791           components where Catalyst forces the creation of a metaclass instance.
1792           This is more correct, and avoids metaclass incompatibility in complex
1793           cases
1794           - Tests for this
1795         - Use of deprecated Catalyst::Base now warns.
1796         - Add uri_with tests
1797
1798 5.8000_06 2009-02-04 21:00
1799         - Disallow writing to config after setup
1800         - Disallow calling setup more than once
1801         - Documentation fix regarding overloading of Engine and Dispatcher
1802           instances
1803         - Several documentation typo fixes
1804         - Stop Makefile.PL from warning about versions that fixed a conflict
1805         - Improved upgrading documentation
1806         - Seed the RNG in each FastCGI child process (Andrew Rodland)
1807         - Properly report dynamic bind port for the development server
1808           (Closes RT#38544)
1809         - Use the way documented by IO::Socket::INET to get the error message
1810           after trying to create a listening socket (Closes RT#41828)
1811         - Don't ignore SIGCHLD while handling requests with the dev server
1812           (Closes RT#42962)
1813
1814 5.8000_05 2008-29-01 00:00
1815         - Text::SimpleTable's go as wide as $ENV{COLUMNS} (jhannah)
1816           Patch written by Oleg Kostyuk <cub.uanic@gmail.com>
1817         - Improve docs for visit (mateu)
1818         - Add docs for finalize hook (dhoss)
1819         - Added ru/ua translations to error page
1820         - Improve the clarity and verbosity of the warning when component
1821           resolution uses regex fallback. (jhannah)
1822         - Handle leading CRLF in HTTP requests sometimes sent by IE6 in
1823           keep-alive requests.
1824         - Fixes for FastCGI with IIS 6.0 (janus)
1825         - Passing request method exported by Catalyst::Test an extra
1826           parameter used to be ignored, but started breaking if the parameter
1827           was not a hash in 5.8000_04. Extra parameter is now ignored if
1828           it isn't a hashref
1829         - Fix request argumentss getting corrupted if you override the
1830           dispatcher and call an action which detaches (for
1831           Catalyst::Plugin::Authorization::ACL)
1832         - Fix calling use Catalyst::Test 'MyApp' 'foo' which used to work,
1833           but stopped as the 2nd parameter can be an options hash now
1834         - Bump Moose dependency to fix make_immutable bug
1835         - Use compile time extends in Catalyst::Controller
1836         - Make Catalyst::Request::uploads attribute non-lazy, to fix
1837           test for Catalyst-Engine-Apache
1838         - Bump version of MooseX::Emulate::Class::Accessor::Fast
1839         - Stop using MooseX::Adopt::Class::Accessor::Fast by default, to stop
1840           breaking other packages which use Class::Accessor::Fast
1841         - Remove unused action_container_class attribute from
1842           Catalyst::Dispatcher
1843         - Replace {_body} instance access with calls to _body accessors
1844         - Add backwards compatibility alias methods for private attributes on
1845           Catalyst::Dispatcher which used to be public. Needed by
1846           Catalyst::Plugin::Server and  Catalyst::Plugin::Authorization::ACL
1847         - Fix return value of $c->req->body, which delegates to the body
1848           method on the requests HTTP::Body instance
1849           - Test for this
1850         - Fix calling $c->req->body from inside an overridden prepare_action
1851           method in a plugin, as used by Catalyst::Plugin::Server
1852           - Test for this
1853         - Fix assignment to Catalyst::Dispatcher's preload_dispatch_types and
1854           postload_dispatch_types attributes - assigning a list should later
1855           return a listref. Fixes Catalyst::Plugin::Server.
1856           - Tests for this
1857         - Change streaming test to serve itself rather than 01use.t, making
1858           test sync for engines easier
1859         - Refactor capturing of $app from Catalyst::Controller into
1860           Catalyst::Component::ApplicationAttribute for easier reuse in other
1861           components
1862         - Make the test suites YAML dependency optional
1863         - Make debug output show class name for the engine and dispatcher
1864           rather than the stringified ref.
1865         - Make MyApp immutable at the end of the scope after the setup
1866           method is called, fixing issues with plugins which have their
1867           own new methods by inlining a constructor on MyApp
1868           - Test for this and method modifiers in MyApp
1869         - Fix bug causing Catalyst::Request::Upload's basename method
1870           to return undef
1871           - Test for this (Carl Franks)
1872         - Fix loading of classes which do not define any symbols to not
1873           die, as it didn't in 5.70
1874           - Test for this
1875         - Bump MooseX::Emulate::Class::Accessor::Fast dependency
1876           to force new version which fixes a lot of plugins
1877         - Make log levels additive, and add documentation and tests
1878           for the setup_log method, which previously had none.
1879           Sewn together by from two patches provided by David E. Wheeler
1880         - Switch an around 'new' in Catalyst::Controller to a BUILDARGS
1881           method as it's much neater and more obvious what is going on
1882         - Add a clearer method on request and response _context
1883           attributes, and use if from ::Engine rather than deleting
1884           the key from the instance hash
1885         - Use handles on tree attribute of Catalyst::Stats to replace
1886           trivial delegation methods
1887         - Change the following direct hash accesses into attributes:
1888           Catalyst::Engine: _prepared_write
1889           Catalyst::Engine::CGI: _header_buf
1890           Catalyst::Engine::HTTP: options, _keepalive, _write_error
1891           Catalyst::Request: _path
1892           Catalyst::Stats: tree
1893         - Fix issues in Catalyst::Controller::WrapCGI
1894           and any other components which import (or define) their
1895           own meta method by always explicitly calling
1896           Class::MOP::Object->meta inside Catalyst
1897           - Add test for this
1898         - Add test case for the bug which is causing the
1899           Catalyst::Plugin::Authentication tests to fail
1900         - Fix a bug in uri_for which could cause it to generate paths
1901           with multiple slashes in them.
1902           - Add test for this
1903         - Fix SKIP block name in t/optional_http-server-restart.t,
1904           stopping 'Label not found for "last SKIP"' error from
1905           Test::More
1906         - Workaround max_redirect 0 bug in LWP
1907         - Move live_engine_response_print into aggregate
1908         - Fix dependency bug, s/parent/base/ in new test
1909         - Fix optional tests to run the live tests in the aggregate
1910           dir
1911         - Fix Catalyst->go error in remote tests
1912         - Fix upload test to work with remote servers, don't check for
1913           deleted files
1914         - Fix engine_request_uri tests to work on remote server with
1915           different URI
1916
1917 5.8000_04  2008-12-05 12:15:00
1918         - Silence Class::C3::Adopt::NEXT warnings in the test suite
1919         - Fix loads of 'used once, possible typo' warnings
1920         - Additional tests to ensure upload temp files are deleted
1921         - Remove use of NEXT from the test suite, except for one case
1922           which tests if Class::C3::Adopt::NEXT is working
1923         - Use a predicate to avoid recursion in cases where the uri
1924           method is overridden by a plugin, and calls the base method,
1925           for example Catalyst::Plugin::SmartURI
1926           - Test for this (caelum)
1927         - Compose the MooseX::Emulate::Class::Accessor::Fast role to
1928           Catalyst::Action, Catalyst::Request, and all other modules which
1929           inherit from Class::Accessor::Fast in 5.70.
1930           This fixes:
1931             - Catalyst::Controller::HTML::FormFu (zamolxes)
1932             - Catalyst::Request::REST
1933           - Test for this
1934         - Make hostname resolution lazy (Marc Mims)
1935         - Support mocking virtualhosts in test suite (Jason Gottshall)
1936         - Add README
1937         - Fix TODO list
1938         - Use Class::C3::Adopt::NEXT
1939         - Ignore C3 warnings on 5.10 when testing ensure_class_loaded
1940         - Add TODO test for chained bug (gbjk)
1941         - Fix list address in documentation (zarquon)
1942         - Fix ACCEPT_CONTEXT on MyApp, called as a class method
1943            - Test for this
1944         - Bump MooseX::Emulate::Class::Accessor::Fast version requirement to
1945           get more back compatibility
1946         - Improve documentation for $req->captures (caelum)
1947         - Fix a bug in Catalyst::Stats, stopping garbage being inserted into
1948           the stats if a user calls begin => but no end => (jhannah)
1949            - Test for this (jhannah)
1950         - Trim lines sooner in stats to avoid ugly Text::SimpleTable wrapping
1951           (jhannah)
1952         - Change Catalyst::ClassData to tweak the symbol table inline for
1953           performance after profiling
1954         - Fix POD typo in finalize_error (jhannah)
1955         - Add tests to ensure that we delete the temp files created by
1956           HTTP::Body's OctetStream parser
1957
1958 5.8000_03 2008-10-14 14:13:00
1959         - Fix forwarding to Catalyst::Action objects.
1960         - Fix links to the mailing lists (RT #39754 and Florian Ragwitz).
1961         - Use Class::MOP instead of Class::Inspector.
1962         - Change Catalyst::Test to use Sub::Exporter.
1963         - Fixed typo in Engine::HTTP::Restarter::Watcher causing -r to complain.
1964
1965 5.8000_02 2008-10-14 07:59:00
1966        - Fix manifest
1967
1968 5.8000_01 2008-10-13 22:52:00
1969         - Port to Moose
1970         - Added test for action stringify
1971         - Added test for component instances getting $self->{value} from config.
1972         - Add Catalyst::Response->print() method
1973         - Optionally aggregate tests using Test::Aggregate.
1974         - Additional docs for uri_for to mention how to use $c->action and
1975           $c->req->captures (jhannah)
1976         - List unattached chained actions in Debug mode.
1977         - Pod formatting fix for Engine::FastCGI (Oleg Kostyuk).
1978         - Add visit, a returning ->go
1979
1980 5.7XXXXXX XXXX
1981         - Workaround change in LWP that broke a cookie test (RT #40037)
1982         - Back out go() since that feature's been pushed to 5.80
1983         - Fix some Win32 test failures
1984         - Add pt translation of error message (wreis)
1985         - Make :Chained('../action') work
1986         - Add test actions
1987         - Chained doc improvements (rev 8326-8328)
1988
1989 5.7099_03 2008-07-20 10:10:00
1990         - Fix regressions for regexp fallback in model(), view() and controller()
1991         - Added the supplied argument to the regexp fallback warning for easier
1992           debugging
1993         - Ensure ACCEPT_CONTEXT is called for results from component()
1994
1995 5.7099_02 2008-07-16 19:10:00
1996         - Added PathPrefix attribute
1997         - Removed Catalyst::Build; we've long since moved to Module::Install
1998         - Updated Catalyst::Test docs to mention the use of HTTP::Request
1999           objects
2000
2001 5.7099_01 2008-06-25 22:36:00
2002         - Refactored component resolution (component(), models(), model(), et al). We now
2003           throw warnings for two reasons:
2004           1) model() or view() was called with no arguments, and two results are returned
2005              -- set default_(model|view), current_(model|view) or current_(model|view)_instance
2006              instead
2007           2) you call a component resolution method with a string, and it resorts to a regexp
2008              fallback wherein a result is returned -- if you really want to search, call the
2009              method with a regex as the argument
2010         - remove 0-length query string components so warnings aren't thrown (RT #36428)
2011         - Update HTTP::Body dep so that the uploadtmp config value will work (RT #22540)
2012         - Fix for LocalRegex when used in the Root controller
2013         - Get some of the optional_* tests working from dirs with spaces (RT #26455)
2014         - Fix Catalyst::Utils::home() when application .pm is in the current dir (RT #34437)
2015         - Added the ability to remove parameters in req->uri_with() by passing in
2016           an undef value (RT #34782)
2017         - Added $c->go, to do an internal redispatch to another action, while retaining the
2018           contents of the stash
2019
2020 5.7014  2008-05-25 15:26:00
2021         - Addition of .conf in restart regex in Catalyst::Engine::HTTP::Restarter::Watcher
2022         - Fix regression for relative uri_for arguments after a forward()
2023           introduced in 5.7013 (Peter Karman)
2024         - Fix regression for "sub foo : Path {}" in the root controller which
2025           was introduced when attempting to allow "0" as a Path.
2026
2027 5.7013  2008-05-16 18:20:00
2028         - Provide backwards compatability methods in Catalyst::Stats
2029         - Fix subdirs for scripts that run in subdirs more than one level deep.
2030         - Added test and updated docs for handling the Authorization header
2031           under mod_fastcgi/mod_cgi.
2032         - Fixed bug in HTTP engine where the connection was not closed properly if the
2033           client disconnected before sending any headers. (Ton Voon)
2034         - POD fix, IO::FileHandle => IO::Handle (RT #35690)
2035         - Fix grammar on welcome page (RT #33236)
2036         - Fix for Path('0') handling (RT #29334)
2037         - Workaround for Win32 and c3_mro.t (RT #26452, tested by Kenichi Ishigaki)
2038         - Fix for encoding query parameters
2039         - Fix Chained multiple test
2040
2041 5.7012  2007-12-16 23:44:00
2042         - Fix uri_for()'s and uri_with()'s handling of multibyte chars
2043           (Daisuke Murase)
2044         - Fix __PACKAGE__->config->{foo} = 'bar' case with subclassing
2045         - Add Catalyst::Stats (Jon Schutz)
2046         - Fixed a bug where ?q=bar=baz is decoded as q=>'bar', not 'bar=baz'.
2047           (Tatsuhiko Miyagawa, Masahiro Nagano)
2048         - Fixed a bug where -rr (restart regex) command line option could cause
2049           shell errors. (Aristotle Pagaltzis, Chisel Wright)
2050
2051 5.7011  2007-10-18 20:40:00
2052         - Allow multiple restart directories and added option to follow
2053           symlinks in the HTTP::Restarter engine (Sebastian Willert)
2054         - Fixed t/optional_http-server-restart.t so it actually tests
2055           if the server restarted or notified of an error (Sebastian Willert)
2056         - Return child PID from the HTTP engine when run with the 'background' option.
2057           (Emanuele Zeppieri)
2058         - Fixed bug in HTTP engine where writes could fail with
2059           'Resource temporarily unavailable'.
2060         - Fixed bug where %2b in query parameter is doubly decoded to ' ', instead of '+'
2061           (RT #30087, Gavin Henry, Tatsuhiko Miyagawa, Oleg Pronin)
2062         - Fixed bug where req->base and req->uri would include a port number when running
2063           in SSL mode.
2064         - Removed unnecessary sprintf in debug mode that caused warnings on locales where
2065           commas are used for decimal markers.
2066         - Improved error message for case when server picks up editor save
2067           files as module names. (James Mastros)
2068
2069 5.7010  2007-08-22 07:41:00
2070         - Resource forks in 5.7009
2071
2072 5.7009  2007-08-22 00:14:00
2073         - Moved Manual.pod to Manual.pm and clarified status of
2074           Catalyst-Manual dist
2075         - Doc patches to Catalyst::Controller
2076         - remove ignore_loaded from plugin load, commenting why
2077         - document the ignore_loaded feature in Catalyst::Utils
2078         - Add testing of inline plugins.
2079
2080 5.7008  2007-08-13 08:40:00
2081         - Added $c->request->query_keywords for getting the keywords
2082           (a query string with no parameters).
2083         - Add undef warning for uri_for.
2084         - Fix bug where a nested component would be setup twice.
2085         - Make ensure_class_loaded behave better with malformed class name.
2086         - Make _register_plugin use ensure_class_loaded.
2087         - Remove 'Argument "??" isn't numeric in sprintf' warning.
2088           (Emanuele Zeppieri)
2089         - Fixed a bug where Content-Length could be set to 0 if a filehandle
2090           object in $c->response->body did not report a size.
2091         - Fixed issue where development server running in fork mode did not
2092           properly exit after a write error.
2093           (http://rt.cpan.org/Ticket/Display.html?id=27135)
2094         - Remove warning for captures that are undef.
2095         - Fixed $c->read and parse_on_demand mode.
2096         - Fixed a bug with the HTTP engine where very large response bodies
2097           would not be sent properly.
2098
2099 5.7007  2007-03-13 14:18:00
2100         - Many performance improvements by not using URI.pm:
2101           * $c->uri_for (approx. 8x faster)
2102           * $c->engine->prepare_path (approx. 27x faster)
2103           * $c->engine->prepare_query_parameters (approx. 5x faster)
2104         - Updated HTTP::Body dependency to 0.9 which fixes the following issues:
2105           * Handle when IE sometimes sends an extra CRLF after the POST body.
2106           * Empty fields in multipart/form-data POSTs are no longer ignored.
2107           * Uploaded files with the name "0" are no longer ignored.
2108         - Sending SIGHUP to the dev server will now cause it to restart.
2109         - Allow "0" for a path in uri_for.
2110         - Performance and stability improvements to the built-in HTTP server.
2111         - Don't ignore file uploads if form contains a text field with the same name.
2112           (Carl Franks)
2113         - Support restart_delay of 0 (for use in the POE engine).
2114         - Skip body processing if we don't have a Content-Length header.
2115           Results in about a 9% performance increase when handling GET/HEAD
2116           requests.
2117         - Add a default body to redirect responses.
2118         - MyApp->model/view now looks at MyApp->config->{default_view/model}
2119           (Bogdan Lucaciu)
2120
2121 5.7006   2006-11-15 14.18
2122         - Updated manifest
2123         - Fix Slurp dependency
2124         - Updated HTTP::Body dependency to 0.6, 0.5 can break on large POST
2125           requests.
2126         - Skip utf8 fix for undef values in uri_with() and uri_for()
2127
2128 5.7005   2006-11-07 19:37:35
2129         - Fixed lighttpd tests to be properly skipped.
2130         - Moved IE workarounds to exist only in the HTTP engine.
2131         - Added installation instructions (from Catalyst-Manual dist)
2132
2133 5.7004   2006-11-06 20:48:35
2134         - Fix Engine::HTTP crash when using IE. (Jesper Krogh, Peter Edwards)
2135         - clean up Catalyst::Utils to handle some edge cases
2136         - Properly work around lighttpd PATH_INFO vs. SCRIPT_NAME bug
2137           (Mark Blythe)
2138         - add _application accessor to Catalyst::Base
2139         - Support current_view
2140         - Allow use of Catalyst::Test without app name (Ton Voon, Altinity)
2141         - Catalyst::Manual moved to its own package
2142         - Add option to FastCGI engine to send errors to stdout, not the web server
2143         - Use Module::Install's auto_install to install prerequisite modules
2144         - various documentation fixes and improvements
2145
2146 5.7003   2006-09-21 16:29:45
2147         - Additions and updates to tutorial
2148
2149 5.7002   2006-09-17 19:35:32
2150         - unescape captures to match args
2151         - fix for relative Chained under namespace '' (root)
2152         - fix for hashrefs in action attributes from config
2153         - fix for Chained to require correct number of CaptureArgs
2154
2155 5.7001   2006-07-19 23:46:54
2156         - fix for component loading
2157         - uri_for and uri_with now behave as they used to with non-
2158           array references
2159
2160 5.7000   2006-07-07 08:08:08
2161         - fix FCGI.pm warning message with FastCGI engine
2162         - bumped inc::Module::Install to 0.63 in Makefile.PL
2163         - fixes to uri_for_action for DispatchType::Chained
2164         - Further doc work.
2165         - Minor code cleanups
2166         - Changed catalyst.pl to depend on Catalyst::Devel
2167
2168 5.70_03  2006-06-28 16:42:00
2169         - fixup to registered plugins debug at app startup
2170         - refactored Catalyst::Utils::home
2171
2172 5.70_02  2006-06-27 11:51:00
2173         - Updated tutorial.
2174
2175 5.70_01  2006-06-26 10:49:00
2176
2177         - fixed a Catalyst::Base bug causing duplicate action registrations
2178         - modified DispatchTypes to support multiple registrations
2179         - added Catalyst::Runtime module as dist marker
2180         - added Catalyst::ActionChain and Chained DispatchType
2181         - removed retarded registration requirement in dispatcher
2182         - removed Module::Pluggable::Fast hack in favor of
2183           Module::Pluggable::Object
2184         - extended uri_for, added dispatcher->uri_for_action
2185         - added Catalyst::Base->action_for('methodname')
2186         - checked and tested :Args multimethod dispatch
2187         - added ability to set action attributes from controller config
2188         - added merge_config_hashes() as a convenience method
2189         - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
2190         - Removed test dependencies on Test::NoWarnings, Test::MockObject
2191         - Removed dependency on UNIVERSAL::require
2192         - Split out Catalyst::Helper into a new distribution
2193         - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
2194         - nuked each() out of core with prejudice (due to lurking buglets)
2195         - Added tests from phaylon for dispatcher precedence
2196         - Use Class::Inspector->loaded($class) instead of $class->can('can')
2197         - Added ActionClass attribute
2198         - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
2199         - Updated docs for Catalyst::Component
2200         - Separated execute and dispatch on Catalyst::Action
2201         - cleaned up logging and debug output
2202         - significant documentation revisions
2203         - Added warning for setup being called twice
2204         - Fix pod to use DBIC::Schema instead of DBIC model
2205         - Fix ->config failing to copy _config for subclassing
2206         - Updated log format
2207         - Updated debug dump
2208
2209 5.6902  2006-05-04 13:00:00
2210         - Remove tarballs and OSX metadata files.
2211
2212 5.6901  2006-05-03 11.17:00
2213         - Module::Install didn't overwrite META.yml.
2214
2215 5.6900  2006-05-03 11.17:00
2216         - Stupid pause indexer can't count.
2217         - Better fix for Catalyst::Test
2218         - more tests.
2219
2220 5.682   2006-04-27 13:51:00
2221         - Damn OSX attributes again :(
2222
2223 5.681   2006-04-27 08:47:00
2224         - Updated manifest.
2225         - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
2226
2227 5.68    2006-04-26 12:23:00
2228         - ConfigLoader: Updated to version 0.06
2229         - fixed undef warnings in uri_for() and uri_with()
2230         - Fixed Catalyst::Test to report errors on failed Class load
2231
2232 5.678   2006-04-24 12:30:00
2233         - Re-release of 5.67 without OSX metadata files.
2234
2235 5.67    2006-04-23 08:50:00
2236         - Added $c->req->uri_with() helper
2237         - ConfigLoader: Updated to version 0.05
2238         - Fix up Engine to avoid a new 5.8.8 warning
2239         - Added app name with :: support for PAR
2240         - Added $c->models/views/controllers
2241         - Static::Simple: Unescape the URI path before looking for the file.
2242           This fixes issues with files that have spaces.
2243         - Looping and recursion tests plus a fix
2244         - Added lots of API documentation. Refactored main pod.
2245         - Changed default behaviors for $c->model/$c->controller/$c->view
2246           to more sane settings.
2247         - added the clear_errors method - an alias for error(0)
2248         - Added tmpdir option for uploads (woremacx)
2249         - Applied patch from GEOFFR to allow normal filehandles.
2250         - Refactored Dispatcher internals for better readability and speedup
2251           (stress tests run 12% faster)
2252         - Allow $c->error to run as a class method
2253
2254 5.66    2006-03-10 17:48:00
2255         - Added Test::WWW::Mechanize::Catalyst support
2256         - Cleaned generated tests
2257         - Added Root controller concept
2258         - Updated ConfigLoader plugin to version 0.04
2259
2260 5.65    2006-02-21 10:34:00
2261         - Added plugin introspection.
2262         - Support optional hashref as last param for parameters in uri_for.
2263         - Updated tutorial to be more complete.
2264         - Applied args patch from antirice (Fixes Ticket #67)
2265
2266 5.64    2006-02-07 20:29:00
2267         - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
2268           was not run. (Eric Wong)
2269         - Cleaned up generated tests
2270         - Updated YAML support to use ConfigLoader
2271         - Fixed path dispatch to canonicalise correctly
2272             (see http://dev.catalyst.perl.org/ticket/62)
2273         - Added Catalyst::Manual::About
2274
2275 5.63    2006-01-22 00:00:00
2276         - Updated prereq versions
2277
2278 5.62    2006-01-17 16:30:00
2279         - Large update to the tutorial (castaway)
2280         - Added YAML config support
2281         - Added COMPONENT() and ACCEPT_CONTEXT() support
2282         - Action list in debug mode is now displayed as a tree in the
2283           correct execution order.
2284         - Fixed engine detection to allow custom mod_perl engines.
2285         - Static::Simple: Fixed bug in ignore_dirs under win32.
2286         - Display version numbers of loaded plugins. (Curtis Poe)
2287         - Added class and method for caught exception messages.
2288         - Updated PAR support to use "make catalyst_par",
2289           packages are no longer written by Makefile.PL.
2290         - Automatically determine Content-Length when serving a
2291           filehandle.
2292         - Exceptions now return status 500.
2293         - Updated for Module::Install 0.44.
2294         - Fixed additional file installation for multi level app names.
2295         - Added REDIRECT_URL support for applications running behind
2296           a RewriteRule in Apache. (Carl Franks)
2297         - Fixed FastCGI engine under win32. (Carl Franks)
2298         - FastCGI doc updates (Bill Moseley)
2299         - Bugfix for $c->model and friends (defined).
2300
2301 5.61    2005-12-02 00:00:00
2302         - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
2303
2304 5.60    2005-12-01 22:15:00
2305         - Fixed Path and index actions in the appclass,
2306           including those that attach to /
2307         - Index is now weighted higher than Path
2308         - Fixed restarter and -d debug switch in server.pl.
2309         - Added a warning if you attempt to retrieve a parameter
2310           using $c->req->params('foo').
2311         - Fixed the Module::Install::Catalyst @ISA bug
2312
2313 5.59    2005-11-30 13:25:00
2314         - Fixed shebang line for generated scripts
2315         - Fixed forward to classes ($c->forward(qw/MyApp foo/))
2316         - Wrap use block in begin to quelch C:C3 warnings
2317         - Removed scrollbar from debug output
2318         - Fixed catalyst_par_core() and catalyst_par_multiarch()
2319
2320 5.58    2005-11-24 10:51:00
2321         - Added ExtUtils::AutoInstall support
2322         - Allow overriding path in Catalyst::Helper.
2323         - Added -makefile to catalyst.pl to generate a new Makefile.PL.
2324         - Restored Catalyst::Build with a deprecation notice.
2325         - Improved PAR support
2326         - Replaced -short with auto-detection
2327         - Fixed prereqs, added File::Copy::Recursive
2328         - Static::Simple changes:
2329             - Made prepare_action play nice with other plugins by not short-
2330               circuiting.
2331             - Added tmpl to the ignored extensions.
2332             - Fixed security problem if req->path contained '..'.
2333
2334 5.57    2005-11-20 22:45:00
2335         - Updated uri_for to accept undef actions
2336         - Switched to Module::Install
2337         - Renamed tests for easier editing
2338         - Reformatted documentation
2339         - Renamed -nonew to -force
2340         - Added PAR support
2341         - Added keep-alive support and bug fixes to HTTP engine.
2342           (Sascha Kiefer)
2343         - Added daemonize option to FastCGI engine. (Sam Vilain)
2344
2345 5.56   2005-11-16 10:33:00
2346         - Fixed FastCGI engine to not clobber the global %ENV on each
2347           request. (Sam Vilain)
2348         - Updated benchmarking to work with detach
2349         - Fixed dispatcher, so $c->req->action(undef) works again
2350         - Updated Catalyst::Test to use HTTP::Request::AsCGI
2351         - Added -pidfile to external FastCGI server.
2352
2353 5.55    2005-11-15 12:55:00
2354         - Fixed multiple cookie handling
2355
2356 5.54    2005-11-14 22:55:00
2357         - Fixed a Module::Pluggable::Fast related bug
2358
2359 5.53    2005-11-14 15:55:00
2360         - Removed t/04prereq.t that was testing for non-required
2361           modules.
2362
2363 5.52    2005-11-14 10:57:00
2364         - Strip '..'s in static urls to fix security issue.
2365
2366 5.51    2005-11-14 00:45:00
2367         - Changed uri_for to use namespace instead of match.
2368
2369 5.50    2005-11-13 20:45:00
2370         - Fixed minor bugs.
2371         - Updated docs.
2372
2373 5.49_05 2005-11-12 20:45:00
2374         - Large update to the documentation. (David Kamholz)
2375         - Fixed args handling in forward()
2376         - Fixed forwarding to classes
2377         - Fixed catalyst.pl-generated Build.PL Makefile section.
2378         - Fixed relative forwarding
2379         - Fixed forward arrows in debug output
2380
2381 5.49_04 2005-11-09 23:00:00
2382         - Made context, dispatcher, engine, request and response classes
2383           configurable.
2384         - Added $c->stack.
2385         - Fixed dispatcher to ignore unknown attributes.
2386         - Improved format of startup debug log.
2387         - Updated built in server to restart on win32. (Will Hawes)
2388         - Fixed streaming write from a filehandle to stop writing
2389           if the browser is closed.
2390         - Added $c->controller, $c->model and $c->view shortcuts.
2391         - Switched to Text::SimpleTable.
2392
2393 5.49_03 2005-11-03 12:00:00
2394         - Fixed $c->req->{path} for backwards-compatibility.
2395         - Allow debug to be disabled via ENV as well as enabled.
2396         - Added -scripts option to catalyst.pl for script updating
2397         - Changed helpers to default to long types, Controller instead of C
2398         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
2399           base classes
2400         - Added JavaScript to debug screen to show and hide specific dumps
2401         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
2402         - Added multi process external FastCGI support
2403           (see myapp_fastcgi.pl -help) (Sam Vilain)
2404         - Restarter process in HTTP engine now properly exits when the
2405           parent app is shut down.
2406         - Improved performance of restarter loop while watching for
2407           changed files.
2408         - Restarter will now detect new files added to an app on systems
2409           that change directory mtimes when new files are created.
2410         - Restarter now properly handles modules that are deleted from an
2411           application.
2412         - Fixed memory leak in TestApp.
2413
2414 5.49_02 2005-10-26 12:39:00
2415         - Whole new dispatcher!
2416         - Added index action
2417         - Added path_to method
2418         - Added support for passing an IO::Handle object to $c->res->body.
2419           (Andrew Bramble)
2420         - Added a new welcome screen.
2421         - Included Catalyst buttons and icons in helper.
2422         - Added Static::Simple plugin to core.
2423         - Added self restarting test server
2424         - Added filename to debug output for uploaded files.
2425         - Fixed forwarding with embedded arguments.
2426         - Fixed handling of escaped query strings.
2427         - Added upload parameters back into $c->req->params.
2428         - Added multiple paths support to dispatcher
2429         - Fixed bug in req->path where changing the path added a trailing
2430           slash.
2431         - Removed req->handle and res->handle
2432         - Added prepare_body_chunk method as a hook for upload progress.
2433         - Fixed bug in uri_for method when base has no path.
2434         - Added automated tests for HTTP, CGI, and FastCGI servers.
2435
2436 5.49_01 2005-10-10 10:15:00
2437         - Refactored all internals, should be 99% compatible to previous
2438           versions.
2439         - *IMPORTANT* The Apache engines have been moved to a separate package
2440           for this release.  Please install Catalyst::Engine::Apache if you
2441           need Apache support.
2442
2443         - Added support for calling forward with arguments in the path, i.e.
2444           $c->forward('/foo/bar/arg1/arg2')
2445         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
2446           Raw query string is available as $c->req->uri->query.
2447         - Made $c->req->base a URI object.
2448         - Parameters with multiple values (?a=1&a=2) now display properly
2449           in the debug output.
2450         - Semi-colon separators in query strings now work properly.
2451         - Expanded documentation of catalyst.pl (Andrew Ford)
2452         - Added support for running as a backend server behind a frontend
2453           proxy so req->base and req->address are set properly.
2454         - Added an 'abort' method to the Log api, so that you can
2455           kill loggging for a whole request.
2456         - Added $c->uri_for method to simplify url handling.
2457         - Added more tests and reorganized the t directory.
2458         - Reimplemented core engines, all are now CGI based for better test
2459           coverage and maintainability.
2460         - Added fork support to built in test server.
2461         - Fixed all memory leaks.
2462         - Thread-related bug fixes and tests.  We now believe the Catalyst
2463           core to be thread-safe.
2464         - Added streaming IO support through $c->req->read() and
2465           $c->res->write()
2466         - Added MyApp->config->{parse_on_demand} (streaming input)
2467         - Added $c->req->handle and $c->res->handle
2468         - Improved documentation
2469         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
2470         - Fixed bug in dispatcher where an invalid path could call a valid
2471           action. (Andy Grundman)
2472         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
2473
2474 5.33  2005-08-10 15:25:00
2475         - Now with updated manifest.
2476
2477 5.32  2005-08-10 15:10:00
2478         - Dispatcher might fail if object returns false.
2479
2480 5.31  2005-06-04 12:35:00 (never released to CPAN)
2481
2482         - helpers now create .new files where files already exist and differ
2483         - fixed $Data::Dumper::Terse (Robin Berjon)
2484         - added arguments for detach
2485         - new credits section in POD
2486         - fixed detach to allow relative action names (Matt and Robert)
2487         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
2488
2489 5.30  2005-06-04 12:35:00
2490
2491         - Fixed a bug where it was not possible to $c->forward to a
2492           component
2493           that was not inheriting from Catalyst::Base.
2494         - Fix for inheritance bug.
2495         - Allow forward with arguments.
2496         - Updated cookbook
2497         - Allow overriding home/root in config.
2498         - make module build cons README automatically.
2499         - prettify home path by resolving '..' (Andy Grundman)
2500         - improved helper templates a bit, new naming scheme for tests.
2501         - added support for case sensitivity, MyApp->config->{case_sensitive}
2502         - added $c->detach for non-returning forwards
2503         - added unified error handling, Catalyst::Exception
2504         - added section on param handling in Intro.pod
2505         - added $c->request->cookie
2506         - added Catalyst::Setup
2507         - refactored Catalyst::import()
2508         - improved rendering of error messages in debug mode
2509         - fixed a bug in Catalyst::Helper::mk_dir
2510         - further doc changes, esp. to Intro.pod
2511
2512 5.23  2005-06-03 02:30:00
2513         - added support for non Catalyst::Base components to live in namespace
2514         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
2515
2516 5.22  2005-05-26 14:24:00
2517         - improved base locating in MP engines
2518         - improved error messages in C::E::HTTP::Daemon
2519         - hostnames are now resolved on demand unless provided by engine
2520         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
2521
2522 5.21  2005-05-24 14:56:00
2523         - fixed a bug in https detection
2524         - fixed auto chain finally
2525         - added MYAPP_HOME and CATALYST_HOME environment variables
2526
2527 5.20  2005-05-18 19:52:00
2528         - improved uploads and parameters
2529         - added $c->req->protocol and $c->req->secure
2530         - added $c->req->user and $c->req->uri
2531         - improved error message when forwarding to unknown module
2532         - fixed win32 installer
2533         - added deep recursion detection
2534         - fixed auto actions
2535         - fixed inheritance in dispatcher
2536         - allow whitespaces between brackets and quoted string
2537           in Path and Regex attributes
2538         - new helper templates
2539         - installer now supports install_base and destdir
2540         - allow multiple Catalyst apps to run on the same mod_perl
2541           instance (not the same app!)
2542         - fixed MP2 engines
2543         - removed apreq dependency from all MP engines
2544         - added support for MP registry scripts
2545         - added support for LocationMatch and ScriptAliasMatch in MP engines
2546         - added SpeedyCGI engine
2547
2548 5.10  2005-04-23 11:16:00
2549         - updated dependencies to require latest module::pluggable::fast
2550         - new installer for templates and stuff using Module::Build
2551         - scripts are now prefixed, for being installable
2552         IMPORTANT: You have to regenerate the script directory,
2553         remove Makefile.PL and add Build.PL
2554         - Added compat to install Module::Build if required.
2555         - Improved: Params handling with MP engines
2556         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
2557         - Fixed: Helper.pm on Win32 (Matt S Trout)
2558
2559 5.03  2005-04-19 20:35:00 (Revision 462)
2560         - fixed Test example (Torsten Seeman)
2561         - added Plugins chapter to manual
2562         - applied doc patch from Robert Boone <robert@rlb3.com>
2563         - improved Dispatcher error messages.
2564         - refactored so we don't need to include helper from
2565           Catalyst.pm - Fixes issues with FindBin
2566         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
2567         - added plugin() method for instant plugins
2568         - FCGI is no more considered experimental
2569
2570 5.02  2005-04-18 10:00:00
2571         - fixed manifest
2572
2573 5.01  2005-04-17 23:00:00
2574         - some documentation bugs fixed
2575         - added Catalyst::Utils
2576         - fixed regexp bug (Matt S Trout)
2577         - fixed upload bug with MP19
2578         - added $c->req->body
2579         - aliased $c->res->output to $c->res->body
2580         - Read AUTHOR from passwd or $ENV{AUTHOR} when
2581           generating code.
2582         - extended attribute handling
2583         - added global config for components
2584
2585 5.00  2005-04-15 18:00:00
2586         - new core to support inheritance trees
2587         - new syntax for action declaration
2588         - new helper system using TT2
2589         - problems with mod_perl2 fixed
2590         - added Test::Pod support
2591         - added new server backend with HTTP/1.1 support
2592         - added option to run tests against a remote server
2593         - renamed errors() to error()
2594         - more better docs
2595         - countless minor improvements
2596           IMPORTANT: This release is very incompatible to previous ones
2597           and you have to regenerate the helper scripts again...
2598
2599 4.34  2005-03-23 07:00:00 2005
2600         - added some messages to Makefile.PL
2601         - added Catalyst::Engine::Test
2602         - added Catalyst::Engine::CGI::NPH
2603         - simplified Catalyst::Log to be easier to implement/subclass
2604         - added cgi.pl
2605         - updated Catalyst::Test to use Catalyst::Engine::Test
2606         - updated helper scripts
2607           IMPORTANT: this will be the last time you'll have to regenerate
2608           the script directory. We promise!
2609
2610 4.33  2005-03-23 01:00:00 2005
2611         - documented the log() accessor method in Catalyst (Andrew Ford)
2612         - added optional arguments to Catalyst::Log methods (Andrew Ford)
2613         - removed cgi-server.pl
2614         - added fcgi.pl and Catalyst::Engine::FCGI
2615         - fixed an undef durng make test (Dan Sully)
2616         - new path test (Christian Hansen)
2617           IMPORTANT: you have to regenerate the script directory again
2618
2619 4.32  2005-03-22 02:10:00 2005
2620         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
2621
2622 4.31  2005-03-22 02:00:00
2623         - fixed inheritance (Christian Hansen)
2624         - previous release was borked!
2625           fixed that, but you have to regenerate the scripts again :(
2626
2627 4.30  2005-03-21 23:00:00
2628         - more documentation (Andrew Ford)
2629         - added connection informations (Christian Hansen)
2630         - HTTP::Request support in Catalyst::Test (Christian Hansen)
2631         - moved cgi.pl to nph-cgi.pl
2632         - added Catalyst::Engine::Server (Christian Hansen)
2633         - removed Catalyst::Test::server
2634         - updated helper scripts
2635           IMPORTANT: note that you have to regenerate script/server.pl,
2636           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
2637
2638 4.28  2005-03-19 22:00:00
2639         - fixed isa tree (Christian Hansen)
2640         - added script/cgi-server.pl, so no more server restarting after
2641           code changes
2642         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
2643
2644 4.27  2005-03-19 01:00:00
2645         - debug message for parameters
2646         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
2647         - some random fixes
2648         - new helper api for Catalyst::Helper::* support
2649           you have to update script/create.pl to use it
2650
2651 4.26  2005-03-16 10:00:00
2652         - fixed the weird bug that caused regex actions to fail on every
2653           second request
2654         - more debug messages
2655         - 100% pod coverage.
2656
2657 4.25  2005-03-12 18:00:00
2658         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
2659         - improved cgi engine docs (Christoper Hicks)
2660
2661 4.24  2005-03-12 01:00:00
2662         - updated cookbook example
2663         - fixed base for apache and https (Andrew Ruthven)
2664
2665 4.23  2005-03-09 20:00:00
2666         - no more regex actions in forward
2667         - added support for test directories t/m, t/v and t/c
2668
2669 4.22  2005-03-08 20:00:00
2670         - catch errors in application class
2671         - handle die properly.
2672
2673 4.21  2005-03-05 17:00:00
2674         - fixed docs
2675
2676 4.20  2005-03-04 22:00:00
2677         - moved bin to script
2678
2679 4.13  2005-03-03 11:00:00
2680         - improved documentation
2681         - pod coverage test for helper generated apps
2682         - new helper api
2683
2684 4.12  2005-03-02 11:00:00 2005
2685         - server_base sucks, removed
2686         - added $c->log->dump()
2687
2688 4.11  2005-03-02 11:00:00 2005
2689         - removed some warnings
2690         - improved docs
2691         - private prefixed actions override private non prefixed actions
2692         - added server_base
2693         - updated Catalyst::Manual::Intro
2694
2695 4.10  2005-03-02 10:00:00 2005
2696         - improved documentation
2697         - fixed upload bug
2698         - fixed prefixed private actions bug
2699         - fixed more little bugs
2700
2701 4.01  2005-03-01 10:00:00 2005
2702         - improved documentation
2703         - documentation fixes (Johan Lindstrom)
2704
2705 4.00  2005-02-27 22:00:00
2706         - more verbose debug messages, especially for forward()
2707         - implemented prefixed prvate actions, icluding built in
2708           !?default, !?begin and !?end
2709         - new Catalyst::Manual::Intro
2710         - new helpers, bin/catalyst
2711         - helper api
2712
2713 3.11  2005-02-23 21:00:00
2714         - added dependency to UNIVERSAL::require (Marcus Ramberg)
2715         - added a little workaround for a warning in Catalyst::Test
2716           (Marcus Ramberg)
2717         - improved documentation for actions
2718
2719 3.10  2005-02-19 20:00:00
2720         - removed roles management from Catalyst::Engine
2721           and added it to Catalyst::Plugin::Authentication::CDBI
2722
2723 3.04  2005-02-17 21:00:00
2724         - error reporting for app class
2725         - no more engine debug messages
2726         - class->method forwards get resolved now
2727
2728 3.03  2005-02-16 23:00:00
2729         - friendlier statistics
2730
2731 3.02  2005-02-16 22:00:00
2732         - fixed unintialized actions (Marcus Ramberg)
2733
2734 3.01  2005-02-16 20:30:00
2735         - better statistics
2736
2737 3.00  2005-02-16 20:00:00
2738         - real version number for CPAN.pm
2739         - fixed redirect in CGI engine
2740         - more statistics in debug logs
2741         - ? prefix for forward()
2742
2743 2.99_15  2005-02-02 22:00:00
2744         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
2745         - Replaced "Catched" with "Caught" in Catalyst::Engine
2746           (Gary Ashton Jones)
2747         - replaced _ with ! for private actions
2748         - added ? for prefixed actions
2749         - misc improvememts
2750
2751 2.99_14  2005-01-31 22:00:00 2005
2752         - arguments for _default
2753         - $c->entrance removed for more flexibility
2754         - added $c->req->method
2755
2756 2.99_13  2005-01-30 18:00:00 2005
2757         - POD fixes and improvements
2758
2759 2.99_12  2005-01-28 22:00:00 2005
2760         - first development release