Catalyst-Runtime
view release on metacpan or search on metacpan
- fix -h option to catalyst scripts to mean --host as intended
5.90128 - 2020-09-11
- fix command to run psgi compile test if Catalyst not already installed
- improve debugging output on psgi compile test
5.90_127 - 2020-07-27
- fix TODO tests for uri_for as a class method
- silence warnings in tests
- remove developer prerequisites on Catalyst plugins
- cleanups and fixes for optional tests
- bump Moose prereq to 2.1400, and drop MooseX::Role::WithOverloading prereq
- stop warning about missing Term::Size::Any when it isn't useful
5.90126 - 2020-01-19
- fix for broken distribution
5.90125 - 2020-01-18
- Support samesite flag for cookies (mitchjacksontech++)
- utility method on Catalyst::Action 'equals'
- new predicate methods 'has_request' and 'has_response'. Useful in
plugins that might run bits before a request is finalized.
5.90124 - 2019-01-18
- Fix problem with from_psgi_response and streaming applications (
https://github.com/perl-catalyst/catalyst-runtime/pull/168).
5.90123 - 2018-11-27
- Fix emitting warnings when REMOTE_ADDR is undefined (RT#113388)
- Fix $c->req->hostname empty for IPv6 clients (RT#75731)
- split code to log stats report into a separate log_stats method (RT#127392)
5.90122 - 2018-11-03
- releasing as stable
5.90_121 - 2018-10-22
- use the :utf8_strict (PerlIO::utf8_strict) rather than :encoding file handle
layer to handle decoding uploads, as a performance boost.
- fix handling of decoding uploaded files. this fixes the usage of sysread
on :utf8 handles, and reenables the tests on all perl versions. Fixes CPAN
RT#125843. See also erl RT#133585.
- giving incorrect types to uri_for will warn to logs rather than via carp
- silence warning and error output from tests
5.90120 - 2018-10-19
- avoid problematic test using sysread() on :utf8 filehandles on dev perl
versions where this is fatal (starting with 5.29.4). see RT#125843.
5.90119 - 2018-09-24
- fix test for changes in MooseX::Getopt 0.73 (RT#127050)
5.90118 - 2018-05-01
- fix handling of fragments in uri_for when path is an unblessed string (GH#160)
- ensure catalyst.pl is included with dist
- drop IO::Scalar prereq
- include optional test prereqs as develop prereqs
- remove unused developer prereq on Catalyst::Engine::PSGI
- use namespace::clean consistently rather than namespace::autoclean
- use JSON for test metadata to avoid needing YAML
- use JSON::MaybeXS consistently in code
- drop unused prereq of HTTP::Request::AsCGI
- drop unneeded prereq of Class::Data::Inheritable
- fix tests to cope with changes in new versions of Time::HiRes
- POD typo and syntax fixes
5.90117 - 2018-01-21
- Fixed errors in distribution packaging
5.90116 - 2018-01-19
- Switch from Module::Install to Distar (solves problems that MI has with newer Perl) haarg++
- Killed Test::Aggregate since its clearly doomed
- PR135 - improved test cases for query keywork
- PR158 - improved docs for Catalyst::Test
- PR157 - improved error response for data_handlers
- PR156 - POD fixes
- PR154 - Few dependencies
- PR152 - Better support for HTTP Patch
5.90115 - 2017-05-01
- fixes for silent bad behavior in Catalyst::ScriptRole and 'ensure_class_loaded'
(hobbs++)
- do not require MXRWO if Moose is new enough to have cored it (ether++)
- documentation improvements (ether++)
- Encoding documentation improvements (colinnewell++)
- Improve documentation and test cases for 'abort_chain_on_error_fix' configuration
option (melmothx++)
- Better debug output when using Hash::MultiValue (tremor69++)
- Fixes for detecting debug terminal size (simonamor++)
5.90114 - 2016-12-19
- Fixed regression introduced in the last version (5.90113) which caused
application to hang when the action private name contained a string
like 'foo/bar..html'. If you are running 5.90113 you should consider this
a required update.
- Tweaked travis CI script.
5.90113 - 2016-12-15
- Fixed issue with $controller->action_for when targeting an action in
a namespace nested inside the current controller and the current controller
is a 'root' controller.
- Enhanced $controller->action_for so that you can reference the 'parent'
controller via relative path (eg ->action_for('../foo')).
- Backcompat fix for people that made the mistake of doing $c->{stash}
- Sort controllers in setup_actions so cross-controller precedence is
consistent.
5.90112 - 2016-07-25
- Spelling fixes from Debian group.
- Fixed regression introduced in last release that caused the code to crap out
if you set the encoding to 'undef'.
5.90111 - 2016-07-20
- Improved documentation around some of the unicode changes; tests (melmothx++)
5.90110 - 2016-07-20
- Better catching of HTTP style exceptions so that you can reliable use one to
override many core method.
- Documention on better ways to catch and handle Unicode errors
- We now check the unicode in your URL request queries and raise an error if the
check fails. This was done to be consistent with what we do in other parts of
the code (such as in args, or POSTed parameters). If this breaks your code in
- Make all logging of request and response state get the information from
$c->dump_these so that there is a unified point from which to hook
in parameter filtering (for example).
- $c->model/view/controller have become a lot faster for non-regexp names
by using direct hash lookup instead of looping.
- IP address => hostname mapping for the server is only done once and cached
by Catalyst::Engine::HTTP to somewhat mitigate the problem of people
developing on machines pointed at slow DNS servers.
Bugs fixed:
- DispatchType::Index's uri_for_action only returns for actions registered
with it (prevents 'index :Path' or similar resolving to the wrong URI)
- Make sure to construct Upload objects properly, even if there are
multiple Content-Type headers (Closes RT#55976).
5.80021 2010-03-03 23:02:01
Bug fixed:
- $c->uri_for will now escape unsafe characters in captures
($c->request->captures) and correctly encode utf8 characters.
5.80020 2010-02-04 06:51:18
New features:
- Allow components to specify additional components to be set up by
overriding the expand_modules method. (Oliver Charles)
5.80019 2010-01-29 01:04:09
Bug fixed:
- Calls to $c->uri_for with private paths as strings (e.g.
$c->uri_for('controller/action', 'arg1', 'arg2') ) no longer have
/ encoded to %2F. This is due to $c->uri_for('static', 'css/foo', $bar)
which should not be encoded.
Calls with an action object (rather than a string), or uri_for action
will still encode / in args and captures to %2F
- The above noted / => %2F encoding in uri_for_action or uri_for with
an action object has been fixed to not just encode the first slash in
any set of args/captures.
- nginx and lighttpd FCGI requests with URI encoded sections as the first
path part have been fixed to operate correctly.
- A source of bogus warnings in Catalyst::Component::BUILDARGS has been
removed.
Documentation:
- Improve the documentation about -Home and how Catalyst finds the home path
for applications.
- Various minor typo fixes.
New features:
- Allow passing additional arguments to action constructors.
5.80018 2010-01-12 22:24:20
Bug fixed:
- Call ->canonical on URI derived from $ENV{REQUEST_URI} to get
paths correctly decoded. This bug was previously hidden by a bug
in HTTP::Request::AsCGI.
Documentation:
- Clarify that uri_for_action works on private paths, with example.
- Clarify documentation about debug
Deprecations:
- Saying use Catalyst::Test; (without an application name or () to stop
the importer running is now deprecated and will issue a warning.
You should be saying use Catalyst::Test ();
5.80017 2010-01-10 02:27:29
Documentation:
- Fix docs for ->forward method when passed a class name - this should
be a component name (e.g. View::HTML, not a full class name, like
MyApp::View::HTML).
Bug fixes:
- --daemon and -d options to Catalyst::Script::FastCGI are fixed.
- Fix the debug dump for applications which use Catalyst::Plugin::Session
(RT#52898)
- Fix regression in the case where mod_rewrite is being used to rewrite
requests into a path below your application base introduced with the
%2F related fixes in 5.80014_02.
- Do not crash on SIGHUP if Catalyst::Engine::HTTP->run is not passed the
argv key in the options hash.
- Correctly pass the arguments to Catalyst::Script::Server through to
Catalyst::Engine::HTTP->run so that the server can restart itself
with the correct options on SIGHUP.
- Require new MooseX::MethodAttributes to be compatible with Moose
versions >= 0.93_01
- Require new MooseX::Role::WithOverloading to be compatible with Moose
versions >= 0.93_01
Cleanups:
- Stop suppressing warnings from Class::C3::Adopt::NEXT now that most plugins
have been updated to not use NEXT. If you get warnings then please upgrade
your components or log a bug with the component author if an upgrade is
not available. The Class::C3::Adopt::NEXT documentation contains information
about how to suppress the warnings in your application if you need to.
5.80016 2009-12-11 23:23:33
Bug fixes:
- Fix slurping a file to work correctly with binary on Win32 in the
encoding test controller.
Bug fixes in the new scripts (for applications which have been upgraded):
- Allow --restartdirectory as an option for the Server script, for
backwards compatibility. (Dave Rolsky)
- The --host option for the server script defaulted to localhost, rather
than listening on all interfaces, which was the previous default. (Dave
Rolsky)
- Restore -p option for pid file in the FastCGI server script.
- Fix the script environment variables MYAPP_PORT and MYAPP_RELOAD RT#52604
- Fix aliasing applications under non-root paths with mod_rewrite in
some Apache versions where %ENV{SCRIPT_NAME} is set to the real name of
the script, by using $ENV{REDIRECT_URL} which contains the non-rewritten
URI.
- Fix usage display when myapp_create.pl is run with no arguments. RT#52630
New features:
- The __MOP__ hash element is suppressed from being dumped fully
(and instead stringified) when dumping the error screen to be
less packed with information of no use.
Documentation:
- Fix Pod nits (RT#52370)
5.80015 2009-12-02 15:13:54
Bug fixes:
- Fix bug in Catalyst::Engine which would cause a request parsing to end
prematurely in the hypothetical case where calling $engine->read returned
the single character '0'.
- Fix failing tests when combined with new HTTP::Request::AsCGI
Documentation:
- Improved documentation on read and read_chunk methods in Catalyst::Engine.
- Fix reversal of SCRIPT_NAME and PATH_INFO in previously correct nginx
FastCGI documentation introduced in _02.
5.80014_02 2009-12-01 00:55:23
Bug fixes:
- Fix reporting the wrong Content-Length if the response body is an
upgraded string. Strings mean the same thing whether or not they are
upgraded, may get upgraded even after they are encoded, and will
produce the same output either way, but bytes::length returns too big
values for upgraded strings containing characters >127
- Fix t/live_fork.t with bleadperl (RT#52100)
- Set $ENV{PATH_INFO} from $ENV{REQUEST_URI} combined with
$ENV{SCRIPT_NAME} if possible. This is many web servers always fully
decode PATH_INFO including URI reserved characters. This allows us to
tell foo%2cbar from foo%252cbar, and fixes issues with %2F in paths
being incorrectly decoded, resulting in too many path parts (rather
than 1 path part containing a /, on some web servers (at least nginx).
(RT#50082)
- Require new HTTP::Request::AsCGI so that it fully decodes $ENV{PATH_INFO}
in non CGI contexts. (RT#50082)
Refactoring / cleanups:
- NoTabs and Pod tests moved to t/author so that they're not run
(and then skipped) normally.
Documentation:
- Fix Pod nits in Catalyst::Response (RT#51818)
5.80014_01 2009-11-22 20:01:23
Bug fixes:
- Filehandle now forced to binmode in CGI and FastCGI engines. This appears
to correct some UTF-8 issues, but may break people's code which relies
on the old behaviour.
Refactoring / cleanups:
- Plugins which inherit from Catalyst::Controller or Catalyst::Component
are deprecated and now issue warnings.
5.80014 2009-11-21 02:51:14
Bug fixes:
- Require MooseX::MethodAttributes 0.17. This in turn requires new
MooseX::Types to stop warnings in Moose 0.91, and correctly supports
role combination of roles containing attributed methods.
- Catalyst::Dispatcher::dispatch_types no longer throws deprecated warnings
as there is no recommended alternative.
- Improved the suggested fix warning when component resolution uses regex
fallback for fully qualified component names.
- Catalyst::Test::local_request sets ->request on the response.
- Log flush moved to the end of setup so that roles and plugins which
hook setup_finalize can log things and have them appear in application
startup, rather than with the first hit.
- Require a newer version of LWP to avoid failing tests.
- Stop warnings when actions are forwarded to during dispatch.
- Remove warnings for using Catalyst::Dispatcher->dispatch_types as this is a
valid method to publicly call on the dispatcher.
- Args ($c->request->args) and CaptureArgs ($c->request->captures)
passed to $c->uri_for with an action object ($c->action) will now
correctly round-trip when args or captures contain / as it is now
correctly uri encoded to %2F.
Documentation:
- Document no-args call to $c->uri_for.
- Document all top level application configuration parameters.
- Clarify how to fix actions in your application class (which is
deprecated and causes warnings).
- Pod fixes for ContextClosure.
- Fix documentation for go/visit to reference captures and arguments
in the correct order.
- Update $c->forward and $c->state documentation to address scalar
context.
- Pod fix in Catalyst::Request (RT#51490)
- Pod fixes to refer to ::Controller:: rather than ::C:: as the latter
is deprecated (RT#51489)
New features:
- Added disable_component_resolution_regex_fallback config option to
switch off (deprecated) regex fallback for component resolution.
- Be stricter about arguments to Args attributes for Chained actions,
so that they blow up on load instead of causing undefined behavior
later on
- Tests for this
- Prefer Path actions with a smaller (or set) number of Args (caelum)
Bug reported here: http://stackoverflow.com/questions/931653/catalyst-action-that-matches-a-single-file-in-the-root-directory/933181#933181
- Tests for this
New features:
- Add $c->req->remote_user to disambiguate from $c->req->user (dwc)
- Require MooseX::MethodAttributes 0.12 so that action methods
(with attributes) can be used in / composed from Moose roles.
- Allow the generation of cookies with the HTTPOnly flag set
in Catalyst::Engine (kmx)
5.80004 2009-05-18 17:03:23
- Rename the actions attribute in Catalyst::Controller to
_controller_actions to avoid name clashes with application
controller naming. (random)
- Test for using Moose in components which have a non-Moose base class
Fixed by 349cda in Moose 0.78
- Fix deprecation message for Catalyst::Dispatcher to refer
to the class actually calling the deprecated method. RT#45741
- Clarify limitations of $request->base and $request->secure.
(Phil Mitchell)
- Add 'use Catalyst' to documentation for a Moose MyApp class as
noted by dmaki.
- Fix so that / (and other special characters) are URL encoded when
passed into $c->uri_for as Args/CaptureArgs
- Fix development server so that $c->engine->env returns the correct
environment
- Require Moose 0.78 to fix metaclass incompatibility issues
- Require MooseX::MethodAttributes 0.10 and use
Moose::Meta::Class->initialize rather than Moose->init_meta to fix
bugs related to having a 'meta' method in your controller
- Fix cases where your application failing to compile could cause perl
to report 'Unknown Error'
- Support adding Moose::Roles to the plugin list. These are applied to
MyApp after plugins have been pushed onto @ISA
- Fix calling $c->req->parameters as the first thing you do when
parse_on_demand is on
5.80003 2009-04-29 16:23:53
- Various POD tweaks. (hdp, dandv)
- Fix formatting error in the regex fallback warning.
- Convert the dispatcher's and restarter engine's BUILD method to
attribute builders to not override the BUILD method from
MooseX::Emulate::Class::Accessor::Fast.
- Fix classes without metaclasses restarting, when not using
B::Hooks::OP::Check::StashChange
- Fix the unattached chain debug table for endpoints with no
parents at all.
- Turn off test aggregation by default. Only aggregate if the
AGGREGATE_TESTS environment variable is set and a recent
Test::Aggregate is available.
- Bump to MooseX::MethodAttributes 0.09, to gain the
get_nearest_methods_with_attributes method allowing methods without
attributes in a subclass to override those with attributes in a
superclass. This fixes CatalystX::CRUD's method of overriding /
disabling functionality from base controllers.
- Bump HTTP::Request::AsCGI dependency to avoid broken version
- Bump Moose dependency to latest version to fix metaclass
incompatibility issues in some cases.
- Additional tests for setup_stats method.
- Fix log levels in Catalyst::Log to be properly additive.
- Fix RT#43375 by sorting results before testing them
- Fixes for uri_for_action when using Catalyst::DispatchType::Regex
+ tests from RT#39369 (norbi)
- Partial rewrite and reorganization of the C3 docs in
Catalyst::Upgrading based on feedback from kiffin
- If you make your application class immutable and turn off
constructor inlining, Catalyst will die and tell you pass
the (replace_constructor => 1) argument to
make_immutable. (Dave Rolsky)
5.80002 2009-04-22 01:28:36
- Fix CATALYST_DEBUG and MYAPP_DEBUG environment variables
turning debugging on if defined, rather than if set.
They now force debugging on or off, taking precedence over
configuration in your application.
- Tests for this
- pass replace_constructor to the immutable call to ensure
applications get a Moose constructor rather than a C::A one
- Fix issues with restarting the application class due to C3 failures
on perl 5.10
- Work around issues in Moose with initialization order of multiple
levels of non-Moose classes inheriting from a Moose class
- Test for this
- Add backwards compatibility method for Catalyst::Log->body, which
has been made private
- Fix so that calling $c->req->parameters(undef) does not flatten
the request parameters with undef + test
- Fix so that width of table of unattached actions for debugging
::DispatchType::Chained varies according to your terminal width
(Oleg Kostyuk)
- Fix warning message about linearized @ISA in Catalyst::Component
(Emanuele Zeppieri)
- Require MX::MethodAttributes 0.06 to avoid issues with saying
use base 'Catalyst::Controller'; use Moose; losing actions
- Fix all of's typos in ::Upgrading and ::Delta (hobbs)
5.80001 2009-04-18 22:18
- Don't inline the constructor for Catalyst::Log to avoid a
warning on recent Moose versions.
- Add delta documentation
- Clean up recursion errors
- Extra cross links in dispatch types POD (Ian Wells)
- Test uri_with clears query params when they are set to undef
(Ian Wells)
- Complain about old Catalyst::Devel versions which generated
->setup(qw/-Debug... etc. as this is not recommended
5.8000_07 2009-04-12 13:37
- Add the Catalyst::Dispatcher->dispatch_type method (ash)
- Throw an exception rather than loading an app if an action
tries to chain to itself
- Tests for this
- Change the $c->visit and $c->go methods to optionally take
CaptureArgs, making them useful to call ActionChains with
- Tests for this (radek)
- Fix _invoke_as_component method to find the proper action instance
- Use Class::C3::Adopt::NEXT
- Ignore C3 warnings on 5.10 when testing ensure_class_loaded
- Add TODO test for chained bug (gbjk)
- Fix list address in documentation (zarquon)
- Fix ACCEPT_CONTEXT on MyApp, called as a class method
- Test for this
- Bump MooseX::Emulate::Class::Accessor::Fast version requirement to
get more back compatibility
- Improve documentation for $req->captures (caelum)
- Fix a bug in Catalyst::Stats, stopping garbage being inserted into
the stats if a user calls begin => but no end => (jhannah)
- Test for this (jhannah)
- Trim lines sooner in stats to avoid ugly Text::SimpleTable wrapping
(jhannah)
- Change Catalyst::ClassData to tweak the symbol table inline for
performance after profiling
- Fix POD typo in finalize_error (jhannah)
- Add tests to ensure that we delete the temp files created by
HTTP::Body's OctetStream parser
5.8000_03 2008-10-14 14:13:00
- Fix forwarding to Catalyst::Action objects.
- Fix links to the mailing lists (RT #39754 and Florian Ragwitz).
- Use Class::MOP instead of Class::Inspector.
- Change Catalyst::Test to use Sub::Exporter.
- Fixed typo in Engine::HTTP::Restarter::Watcher causing -r to complain.
5.8000_02 2008-10-14 07:59:00
- Fix manifest
5.8000_01 2008-10-13 22:52:00
- Port to Moose
- Added test for action stringify
- Added test for component instances getting $self->{value} from config.
- Add Catalyst::Response->print() method
- Optionally aggregate tests using Test::Aggregate.
- Additional docs for uri_for to mention how to use $c->action and
$c->req->captures (jhannah)
- List unattached chained actions in Debug mode.
- Pod formatting fix for Engine::FastCGI (Oleg Kostyuk).
- Add visit, a returning ->go
5.7XXXXXX XXXX
- Workaround change in LWP that broke a cookie test (RT #40037)
- Back out go() since that feature's been pushed to 5.80
- Fix some Win32 test failures
- Add pt translation of error message (wreis)
- Make :Chained('../action') work
- Add test actions
- Chained doc improvements (rev 8326-8328)
5.7099_03 2008-07-20 10:10:00
- Fix regressions for regexp fallback in model(), view() and controller()
- Added the supplied argument to the regexp fallback warning for easier
debugging
- Ensure ACCEPT_CONTEXT is called for results from component()
5.7099_02 2008-07-16 19:10:00
- Added PathPrefix attribute
- Removed Catalyst::Build; we've long since moved to Module::Install
- Updated Catalyst::Test docs to mention the use of HTTP::Request
objects
5.7099_01 2008-06-25 22:36:00
- Refactored component resolution (component(), models(), model(), et al). We now
throw warnings for two reasons:
1) model() or view() was called with no arguments, and two results are returned
-- set default_(model|view), current_(model|view) or current_(model|view)_instance
instead
2) you call a component resolution method with a string, and it resorts to a regexp
fallback wherein a result is returned -- if you really want to search, call the
method with a regex as the argument
- remove 0-length query string components so warnings aren't thrown (RT #36428)
- Update HTTP::Body dep so that the uploadtmp config value will work (RT #22540)
- Fix for LocalRegex when used in the Root controller
- Get some of the optional_* tests working from dirs with spaces (RT #26455)
- Fix Catalyst::Utils::home() when application .pm is in the current dir (RT #34437)
- Added the ability to remove parameters in req->uri_with() by passing in
an undef value (RT #34782)
- Added $c->go, to do an internal redispatch to another action, while retaining the
contents of the stash
5.7014 2008-05-25 15:26:00
- Addition of .conf in restart regex in Catalyst::Engine::HTTP::Restarter::Watcher
- Fix regression for relative uri_for arguments after a forward()
introduced in 5.7013 (Peter Karman)
- Fix regression for "sub foo : Path {}" in the root controller which
was introduced when attempting to allow "0" as a Path.
5.7013 2008-05-16 18:20:00
- Provide backwards compatibility methods in Catalyst::Stats
- Fix subdirs for scripts that run in subdirs more than one level deep.
- Added test and updated docs for handling the Authorization header
under mod_fastcgi/mod_cgi.
- Fixed bug in HTTP engine where the connection was not closed properly if the
client disconnected before sending any headers. (Ton Voon)
- POD fix, IO::FileHandle => IO::Handle (RT #35690)
- Fix grammar on welcome page (RT #33236)
- Fix for Path('0') handling (RT #29334)
- Workaround for Win32 and c3_mro.t (RT #26452, tested by Kenichi Ishigaki)
- Fix for encoding query parameters
- Fix Chained multiple test
5.7012 2007-12-16 23:44:00
- Fix uri_for()'s and uri_with()'s handling of multibyte chars
(Daisuke Murase)
- Fix __PACKAGE__->config->{foo} = 'bar' case with subclassing
- Add Catalyst::Stats (Jon Schutz)
- Fixed a bug where ?q=bar=baz is decoded as q=>'bar', not 'bar=baz'.
(Tatsuhiko Miyagawa, Masahiro Nagano)
- Fixed a bug where -rr (restart regex) command line option could cause
shell errors. (Aristotle Pagaltzis, Chisel Wright)
5.7011 2007-10-18 20:40:00
- Allow multiple restart directories and added option to follow
symlinks in the HTTP::Restarter engine (Sebastian Willert)
- Fixed t/optional_http-server-restart.t so it actually tests
if the server restarted or notified of an error (Sebastian Willert)
- Return child PID from the HTTP engine when run with the 'background' option.
(Emanuele Zeppieri)
- Fixed bug in HTTP engine where writes could fail with
- Automatically determine Content-Length when serving a
filehandle.
- Exceptions now return status 500.
- Updated for Module::Install 0.44.
- Fixed additional file installation for multi level app names.
- Added REDIRECT_URL support for applications running behind
a RewriteRule in Apache. (Carl Franks)
- Fixed FastCGI engine under win32. (Carl Franks)
- FastCGI doc updates (Bill Moseley)
- Bugfix for $c->model and friends (defined).
5.61 2005-12-02 00:00:00
- Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
5.60 2005-12-01 22:15:00
- Fixed Path and index actions in the appclass,
including those that attach to /
- Index is now weighted higher than Path
- Fixed restarter and -d debug switch in server.pl.
- Added a warning if you attempt to retrieve a parameter
using $c->req->params('foo').
- Fixed the Module::Install::Catalyst @ISA bug
5.59 2005-11-30 13:25:00
- Fixed shebang line for generated scripts
- Fixed forward to classes ($c->forward(qw/MyApp foo/))
- Wrap use block in begin to quelch C:C3 warnings
- Removed scrollbar from debug output
- Fixed catalyst_par_core() and catalyst_par_multiarch()
5.58 2005-11-24 10:51:00
- Added ExtUtils::AutoInstall support
- Allow overriding path in Catalyst::Helper.
- Added -makefile to catalyst.pl to generate a new Makefile.PL.
- Restored Catalyst::Build with a deprecation notice.
- Improved PAR support
- Replaced -short with auto-detection
- Fixed prereqs, added File::Copy::Recursive
- Static::Simple changes:
- Made prepare_action play nice with other plugins by not short-
circuiting.
- Added tmpl to the ignored extensions.
- Fixed security problem if req->path contained '..'.
5.57 2005-11-20 22:45:00
- Updated uri_for to accept undef actions
- Switched to Module::Install
- Renamed tests for easier editing
- Reformatted documentation
- Renamed -nonew to -force
- Added PAR support
- Added keep-alive support and bug fixes to HTTP engine.
(Sascha Kiefer)
- Added daemonize option to FastCGI engine. (Sam Vilain)
5.56 2005-11-16 10:33:00
- Fixed FastCGI engine to not clobber the global %ENV on each
request. (Sam Vilain)
- Updated benchmarking to work with detach
- Fixed dispatcher, so $c->req->action(undef) works again
- Updated Catalyst::Test to use HTTP::Request::AsCGI
- Added -pidfile to external FastCGI server.
5.55 2005-11-15 12:55:00
- Fixed multiple cookie handling
5.54 2005-11-14 22:55:00
- Fixed a Module::Pluggable::Fast related bug
5.53 2005-11-14 15:55:00
- Removed t/04prereq.t that was testing for non-required
modules.
5.52 2005-11-14 10:57:00
- Strip '..'s in static urls to fix security issue.
5.51 2005-11-14 00:45:00
- Changed uri_for to use namespace instead of match.
5.50 2005-11-13 20:45:00
- Fixed minor bugs.
- Updated docs.
5.49_05 2005-11-12 20:45:00
- Large update to the documentation. (David Kamholz)
- Fixed args handling in forward()
- Fixed forwarding to classes
- Fixed catalyst.pl-generated Build.PL Makefile section.
- Fixed relative forwarding
- Fixed forward arrows in debug output
5.49_04 2005-11-09 23:00:00
- Made context, dispatcher, engine, request and response classes
configurable.
- Added $c->stack.
- Fixed dispatcher to ignore unknown attributes.
- Improved format of startup debug log.
- Updated built in server to restart on win32. (Will Hawes)
- Fixed streaming write from a filehandle to stop writing
if the browser is closed.
- Added $c->controller, $c->model and $c->view shortcuts.
- Switched to Text::SimpleTable.
5.49_03 2005-11-03 12:00:00
- Fixed $c->req->{path} for backwards-compatibility.
- Allow debug to be disabled via ENV as well as enabled.
- Added -scripts option to catalyst.pl for script updating
- Changed helpers to default to long types, Controller instead of C
- Added Catalyst::Controller, Catalyst::Model and Catalyst::View
base classes
- Added JavaScript to debug screen to show and hide specific dumps
- Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
- Added multi process external FastCGI support
(see myapp_fastcgi.pl -help) (Sam Vilain)
- Restarter process in HTTP engine now properly exits when the
parent app is shut down.
- Improved performance of restarter loop while watching for
changed files.
- Restarter will now detect new files added to an app on systems
that change directory mtimes when new files are created.
- Restarter now properly handles modules that are deleted from an
5.02 2005-04-18 10:00:00
- fixed manifest
5.01 2005-04-17 23:00:00
- some documentation bugs fixed
- added Catalyst::Utils
- fixed regexp bug (Matt S Trout)
- fixed upload bug with MP19
- added $c->req->body
- aliased $c->res->output to $c->res->body
- Read AUTHOR from passwd or $ENV{AUTHOR} when
generating code.
- extended attribute handling
- added global config for components
5.00 2005-04-15 18:00:00
- new core to support inheritance trees
- new syntax for action declaration
- new helper system using TT2
- problems with mod_perl2 fixed
- added Test::Pod support
- added new server backend with HTTP/1.1 support
- added option to run tests against a remote server
- renamed errors() to error()
- more better docs
- countless minor improvements
IMPORTANT: This release is very incompatible to previous ones
and you have to regenerate the helper scripts again...
4.34 2005-03-23 07:00:00 2005
- added some messages to Makefile.PL
- added Catalyst::Engine::Test
- added Catalyst::Engine::CGI::NPH
- simplified Catalyst::Log to be easier to implement/subclass
- added cgi.pl
- updated Catalyst::Test to use Catalyst::Engine::Test
- updated helper scripts
IMPORTANT: this will be the last time you'll have to regenerate
the script directory. We promise!
4.33 2005-03-23 01:00:00 2005
- documented the log() accessor method in Catalyst (Andrew Ford)
- added optional arguments to Catalyst::Log methods (Andrew Ford)
- removed cgi-server.pl
- added fcgi.pl and Catalyst::Engine::FCGI
- fixed an undef durng make test (Dan Sully)
- new path test (Christian Hansen)
IMPORTANT: you have to regenerate the script directory again
4.32 2005-03-22 02:10:00 2005
- made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
4.31 2005-03-22 02:00:00
- fixed inheritance (Christian Hansen)
- previous release was borked!
fixed that, but you have to regenerate the scripts again :(
4.30 2005-03-21 23:00:00
- more documentation (Andrew Ford)
- added connection informations (Christian Hansen)
- HTTP::Request support in Catalyst::Test (Christian Hansen)
- moved cgi.pl to nph-cgi.pl
- added Catalyst::Engine::Server (Christian Hansen)
- removed Catalyst::Test::server
- updated helper scripts
IMPORTANT: note that you have to regenerate script/server.pl,
script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
4.28 2005-03-19 22:00:00
- fixed isa tree (Christian Hansen)
- added script/cgi-server.pl, so no more server restarting after
code changes
- reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
4.27 2005-03-19 01:00:00
- debug message for parameters
- Fix redirects (Christian Hansen <ch@ngmedia.com>)
- some random fixes
- new helper api for Catalyst::Helper::* support
you have to update script/create.pl to use it
4.26 2005-03-16 10:00:00
- fixed the weird bug that caused regex actions to fail on every
second request
- more debug messages
- 100% pod coverage.
4.25 2005-03-12 18:00:00
- correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
- improved cgi engine docs (Christoper Hicks)
4.24 2005-03-12 01:00:00
- updated cookbook example
- fixed base for apache and https (Andrew Ruthven)
4.23 2005-03-09 20:00:00
- no more regex actions in forward
- added support for test directories t/m, t/v and t/c
4.22 2005-03-08 20:00:00
- catch errors in application class
- handle die properly.
4.21 2005-03-05 17:00:00
- fixed docs
4.20 2005-03-04 22:00:00
- moved bin to script
4.13 2005-03-03 11:00:00
- improved documentation
- pod coverage test for helper generated apps
- new helper api
4.12 2005-03-02 11:00:00 2005
- server_base sucks, removed
- added $c->log->dump()
4.11 2005-03-02 11:00:00 2005
- removed some warnings
- improved docs
( run in 0.653 second using v1.01-cache-2.11-cpan-39bf76dae61 )