[Catalyst-commits] r13922 - in Catalyst-Runtime/5.80/branches/psgi:
. lib lib/Catalyst
rafl at dev.catalyst.perl.org
rafl at dev.catalyst.perl.org
Mon Jan 24 10:50:18 GMT 2011
Author: rafl
Date: 2011-01-24 10:50:18 +0000 (Mon, 24 Jan 2011)
New Revision: 13922
Modified:
Catalyst-Runtime/5.80/branches/psgi/Changes
Catalyst-Runtime/5.80/branches/psgi/lib/Catalyst.pm
Catalyst-Runtime/5.80/branches/psgi/lib/Catalyst/Runtime.pm
Log:
Version 5.89000
This is a trial release from the psgi branch.
Modified: Catalyst-Runtime/5.80/branches/psgi/Changes
===================================================================
--- Catalyst-Runtime/5.80/branches/psgi/Changes 2011-01-23 15:42:37 UTC (rev 13921)
+++ Catalyst-Runtime/5.80/branches/psgi/Changes 2011-01-24 10:50:18 UTC (rev 13922)
@@ -1,5 +1,24 @@
# This file documents the revision history for Perl extension Catalyst.
+5.89000 2011-01-24 09:28:45 (TRIAL release)
+
+ This is a development release from psgi branch of Catalyst-Runtime.
+
+ Removed features:
+
+ - All of the Catalyst::Engine::* namespace is now gone. Instead we only have
+ one Catalyst::Engine class speaking the PSGI protocol natively. Everything
+ the various Catalyst::Engine:: classes did before is now supposed to happen
+ through PSGI handlers such as Plack::Handler::FCGI,
+ Plack::Handler::HTTP::Server::PSGI, Plack::Handler::Apache2, and so
+ on. However, deployment can still work the same as it did before. The
+ catalyst scripts still exist and continue to work.
+
+ If you find anything that either doesn't work anymore as it did before or
+ anything that could be done before with the various Catalyst::Engine::
+ classes, but can't be done anymore with the single PSGI Catalyst::Engine
+ class, please tell us *now*.
+
5.80030 2011-01-04 13:13:02
New features:
Modified: Catalyst-Runtime/5.80/branches/psgi/lib/Catalyst/Runtime.pm
===================================================================
--- Catalyst-Runtime/5.80/branches/psgi/lib/Catalyst/Runtime.pm 2011-01-23 15:42:37 UTC (rev 13921)
+++ Catalyst-Runtime/5.80/branches/psgi/lib/Catalyst/Runtime.pm 2011-01-24 10:50:18 UTC (rev 13922)
@@ -7,7 +7,7 @@
# Remember to update this in Catalyst as well!
-our $VERSION = '5.80030';
+our $VERSION = '5.89000';
=head1 NAME
Modified: Catalyst-Runtime/5.80/branches/psgi/lib/Catalyst.pm
===================================================================
--- Catalyst-Runtime/5.80/branches/psgi/lib/Catalyst.pm 2011-01-23 15:42:37 UTC (rev 13921)
+++ Catalyst-Runtime/5.80/branches/psgi/lib/Catalyst.pm 2011-01-24 10:50:18 UTC (rev 13922)
@@ -81,7 +81,7 @@
# Remember to update this in Catalyst::Runtime as well!
-our $VERSION = '5.80030';
+our $VERSION = '5.89000';
sub import {
my ( $class, @arguments ) = @_;
More information about the Catalyst-commits
mailing list