From: John Napiorkowski Date: Tue, 27 Jan 2015 01:06:03 +0000 (-0600) Subject: prep meta data for release X-Git-Tag: 0.40^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2790acd4de4b615e5353d69c09ca0f2f44b1654f;hp=fda03636c8dd39db2d3b855030255c1363eba2d9;p=catagits%2FCatalyst-Plugin-Session.git prep meta data for release --- diff --git a/Changes b/Changes index 5a3e222..6238e11 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Catalyst::Plugin::Session +0.40 2015-01-26 + - Add a flag so that a storage can finalize during finalize_header rather + than finalize_body. This is to enable storages that need to write to the + HTTP header (such as the cookie based store). + 0.39 2013-10-16 - Fixed a bug when "expiry_threshold" is non-zero, where changes to the session were not saved. diff --git a/lib/Catalyst/Plugin/Session.pm b/lib/Catalyst/Plugin/Session.pm index b078d5b..d6a6b9a 100644 --- a/lib/Catalyst/Plugin/Session.pm +++ b/lib/Catalyst/Plugin/Session.pm @@ -14,7 +14,7 @@ use List::Util qw/ max /; use namespace::clean -except => 'meta'; -our $VERSION = '0.39'; +our $VERSION = '0.40'; $VERSION = eval $VERSION; my @session_data_accessors; # used in delete_session