From: Tomas Doran Date: Sun, 22 Nov 2009 13:08:47 +0000 (+0000) Subject: Changelog, adjust warning text, bump versions for a dev release. The 'we do get Class... X-Git-Tag: 5.80014_01~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=c4efaa540364f8542780baf48ba13f87f003c986;hp=afdffc63da48adbb938a087c29cf5a4f28434ba4 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. --- diff --git a/Changes b/Changes index 7f57329..44ffcb5 100644 --- a/Changes +++ b/Changes @@ -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: diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 6f4ce37..2c16800 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -79,7 +79,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # 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 @@ the plugin name does not begin with C. 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'; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 0933fd5..d6ec44f 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008004; } # Remember to update this in Catalyst as well! -our $VERSION='5.80014'; +our $VERSION='5.80014_01'; $VERSION = eval $VERSION;