releng for Session 0.10
Yuval Kogman [Tue, 1 Aug 2006 08:02:23 +0000 (08:02 +0000)]
Changes
lib/Catalyst/Plugin/Session.pm

diff --git a/Changes b/Changes
index ee07d30..2ce4b9f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Perl extension Catalyst::Plugin::Session
 
+0.10
+        - Implement a more well defined finalization order for Session stuff.
+          This solves a problem that was introduced by some value cleanups in
+          the 0.06 release.
+
 0.09
         - Fix Catalyst::Plugin::Session::Test::Store
 
index 89d23e6..093ae90 100644 (file)
@@ -12,7 +12,7 @@ use Digest              ();
 use overload            ();
 use Object::Signature   ();
 
-our $VERSION = "0.09";
+our $VERSION = "0.10";
 
 my @session_data_accessors; # used in delete_session
 BEGIN {
@@ -100,6 +100,9 @@ sub finalize {
 
 sub _save_session_id {
     my $c = shift;
+
+    # we already called set when allocating
+    # no need to tell the state plugins anything new
 }
 
 sub _save_session_expires {