[Catalyst-commits] r12850 -
trunk/historical/Catalyst-Plugin-Session-FastMmap
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Tue Feb 9 03:10:58 GMT 2010
Author: t0m
Date: 2010-02-09 03:10:57 +0000 (Tue, 09 Feb 2010)
New Revision: 12850
Modified:
trunk/historical/Catalyst-Plugin-Session-FastMmap/Changes
trunk/historical/Catalyst-Plugin-Session-FastMmap/FastMmap.pm
trunk/historical/Catalyst-Plugin-Session-FastMmap/Makefile.PL
Log:
Deprecate and fix #49058
Modified: trunk/historical/Catalyst-Plugin-Session-FastMmap/Changes
===================================================================
--- trunk/historical/Catalyst-Plugin-Session-FastMmap/Changes 2010-02-09 02:59:19 UTC (rev 12849)
+++ trunk/historical/Catalyst-Plugin-Session-FastMmap/Changes 2010-02-09 03:10:57 UTC (rev 12850)
@@ -1,6 +1,9 @@
Revision history for Perl extension Catalyst::Plugin::Session::FastMmap.
-0.13 Xxx Xxx 00 00:00:00 EDT 2005
+0.13 Tue Feb 09 03:12:00 GMT 2010
+ - Deprecation notice added.
+ - Fix C3 merge errors (RT#49058)
+ - Change from NEXT to MRO::Compat
- Remove cookie expiriation since it introduced a bug.
- expanded documentation
Modified: trunk/historical/Catalyst-Plugin-Session-FastMmap/FastMmap.pm
===================================================================
--- trunk/historical/Catalyst-Plugin-Session-FastMmap/FastMmap.pm 2010-02-09 02:59:19 UTC (rev 12849)
+++ trunk/historical/Catalyst-Plugin-Session-FastMmap/FastMmap.pm 2010-02-09 03:10:57 UTC (rev 12850)
@@ -1,8 +1,8 @@
package Catalyst::Plugin::Session::FastMmap;
use strict;
-use base qw/Class::Data::Inheritable Class::Accessor::Fast/;
-use NEXT;
+use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
+use MRO::Compat;
use Cache::FastMmap;
use Digest::MD5;
use URI;
@@ -16,7 +16,7 @@
=head1 NAME
-Catalyst::Plugin::Session::FastMmap - FastMmap sessions for Catalyst
+Catalyst::Plugin::Session::FastMmap - [DEPRECATED] FastMmap sessions for Catalyst
=head1 DEPRECATION
Modified: trunk/historical/Catalyst-Plugin-Session-FastMmap/Makefile.PL
===================================================================
--- trunk/historical/Catalyst-Plugin-Session-FastMmap/Makefile.PL 2010-02-09 02:59:19 UTC (rev 12849)
+++ trunk/historical/Catalyst-Plugin-Session-FastMmap/Makefile.PL 2010-02-09 03:10:57 UTC (rev 12850)
@@ -11,7 +11,8 @@
Digest::MD5 => 0,
URI => 0,
URI::Find => 0,
- File::Temp => 0
+ File::Temp => 0,
+ MRO::Compat => 0,
},
VERSION_FROM => 'FastMmap.pm'
);
More information about the Catalyst-commits
mailing list