[Catalyst-commits] r11967 - in Catalyst-Runtime/5.80/trunk: . lib lib/Catalyst

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Sun Nov 22 13:08:47 GMT 2009


Author: t0m
Date: 2009-11-22 13:08:47 +0000 (Sun, 22 Nov 2009)
New Revision: 11967

Modified:
   Catalyst-Runtime/5.80/trunk/Changes
   Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm
   Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm
Log:
Changelog, adjust warning text, bump versions for a dev release. The 'we do get Class::C3::Adopt::NEXT warnings test is now broken, no idea why, will look later.

Modified: Catalyst-Runtime/5.80/trunk/Changes
===================================================================
--- Catalyst-Runtime/5.80/trunk/Changes	2009-11-22 13:04:50 UTC (rev 11966)
+++ Catalyst-Runtime/5.80/trunk/Changes	2009-11-22 13:08:47 UTC (rev 11967)
@@ -1,5 +1,16 @@
 # This file documents the revision history for Perl extension Catalyst.
 
+5.80014_01 UNRELEASED
+
+  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:

Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm	2009-11-22 13:04:50 UTC (rev 11966)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm	2009-11-22 13:08:47 UTC (rev 11967)
@@ -7,7 +7,7 @@
 
 # Remember to update this in Catalyst as well!
 
-our $VERSION='5.80014';
+our $VERSION='5.80014_01';
 
 $VERSION = eval $VERSION;
 

Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm	2009-11-22 13:04:50 UTC (rev 11966)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm	2009-11-22 13:08:47 UTC (rev 11967)
@@ -79,7 +79,7 @@
 
 # Remember to update this in Catalyst::Runtime as well!
 
-our $VERSION = '5.80014';
+our $VERSION = '5.80014_01';
 
 {
     my $dev_version = $VERSION =~ /_\d{2}$/;
@@ -2587,7 +2587,8 @@
         my $class = ref $proto || $proto;
 
         Class::MOP::load_class( $plugin );
-        $class->log->warn( "$plugin inherits from 'Catalyst::Component' - this kind of plugins are deprecated and will not work in 5.81" ) if $plugin->isa( 'Catalyst::Component' );
+        $class->log->warn( "$plugin inherits from 'Catalyst::Component' - this is decated and will not work in 5.81" )
+            if $plugin->isa( 'Catalyst::Component' );
         $proto->_plugins->{$plugin} = 1;
         unless ($instant) {
             no strict 'refs';




More information about the Catalyst-commits mailing list