From: Tatsuhiko Miyagawa Date: Tue, 29 Mar 2011 20:49:07 +0000 (-0700) Subject: Checking in changes prior to tagging of version 0.14. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f85f3f00f74bea6d4a3c1a05761e1e7ebf0f948f;hp=4804dac361810f70fd6c930d518c227ee64c8fb9;p=catagits%2FWeb-Session.git Checking in changes prior to tagging of version 0.14. Changelog diff is: diff --git a/Changes b/Changes index c65a04f..00decc7 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Plack::Middleware::Session +0.14 Tue Mar 29 13:48:42 PDT 2011 + - Support get_dbh callback in Store::DBI (kazeburo) + 0.13 Wed Dec 22 08:56:52 PST 2010 - Added WARNINGS to deprecate request parameter based session state from the default state - Added 'change_id' option for paranoids against session fixation (s-aska, nihen) --- diff --git a/Changes b/Changes index c65a04f..00decc7 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Plack::Middleware::Session +0.14 Tue Mar 29 13:48:42 PDT 2011 + - Support get_dbh callback in Store::DBI (kazeburo) + 0.13 Wed Dec 22 08:56:52 PST 2010 - Added WARNINGS to deprecate request parameter based session state from the default state - Added 'change_id' option for paranoids against session fixation (s-aska, nihen) diff --git a/lib/Plack/Middleware/Session.pm b/lib/Plack/Middleware/Session.pm index f6e65e7..a0eb4e2 100644 --- a/lib/Plack/Middleware/Session.pm +++ b/lib/Plack/Middleware/Session.pm @@ -2,7 +2,7 @@ package Plack::Middleware::Session; use strict; use warnings; -our $VERSION = '0.13'; +our $VERSION = '0.14'; our $AUTHORITY = 'cpan:STEVAN'; use Plack::Util; diff --git a/lib/Plack/Session.pm b/lib/Plack/Session.pm index 9a8ed98..dff6672 100644 --- a/lib/Plack/Session.pm +++ b/lib/Plack/Session.pm @@ -2,7 +2,7 @@ package Plack::Session; use strict; use warnings; -our $VERSION = '0.13'; +our $VERSION = '0.14'; our $AUTHORITY = 'cpan:STEVAN'; use Plack::Util::Accessor qw( session options ); diff --git a/lib/Plack/Session/State.pm b/lib/Plack/Session/State.pm index e3fdaeb..ed470d1 100644 --- a/lib/Plack/Session/State.pm +++ b/lib/Plack/Session/State.pm @@ -2,7 +2,7 @@ package Plack::Session::State; use strict; use warnings; -our $VERSION = '0.13'; +our $VERSION = '0.14'; our $AUTHORITY = 'cpan:STEVAN'; use Digest::SHA1 (); diff --git a/lib/Plack/Session/State/Cookie.pm b/lib/Plack/Session/State/Cookie.pm index d6042a4..c7c9bfe 100644 --- a/lib/Plack/Session/State/Cookie.pm +++ b/lib/Plack/Session/State/Cookie.pm @@ -2,7 +2,7 @@ package Plack::Session::State::Cookie; use strict; use warnings; -our $VERSION = '0.13'; +our $VERSION = '0.14'; our $AUTHORITY = 'cpan:STEVAN'; use parent 'Plack::Session::State'; diff --git a/lib/Plack/Session/Store.pm b/lib/Plack/Session/Store.pm index 5617904..e356ffe 100644 --- a/lib/Plack/Session/Store.pm +++ b/lib/Plack/Session/Store.pm @@ -2,7 +2,7 @@ package Plack::Session::Store; use strict; use warnings; -our $VERSION = '0.13'; +our $VERSION = '0.14'; our $AUTHORITY = 'cpan:STEVAN'; use Plack::Util::Accessor qw[ _stash ]; diff --git a/lib/Plack/Session/Store/Cache.pm b/lib/Plack/Session/Store/Cache.pm index 2b66989..75efb16 100644 --- a/lib/Plack/Session/Store/Cache.pm +++ b/lib/Plack/Session/Store/Cache.pm @@ -2,7 +2,7 @@ package Plack::Session::Store::Cache; use strict; use warnings; -our $VERSION = '0.13'; +our $VERSION = '0.14'; our $AUTHORITY = 'cpan:STEVAN'; use Scalar::Util qw[ blessed ]; diff --git a/lib/Plack/Session/Store/File.pm b/lib/Plack/Session/Store/File.pm index aca721f..7a846f9 100644 --- a/lib/Plack/Session/Store/File.pm +++ b/lib/Plack/Session/Store/File.pm @@ -2,7 +2,7 @@ package Plack::Session::Store::File; use strict; use warnings; -our $VERSION = '0.13'; +our $VERSION = '0.14'; our $AUTHORITY = 'cpan:STEVAN'; use Storable (); diff --git a/lib/Plack/Session/Store/Null.pm b/lib/Plack/Session/Store/Null.pm index d6d497d..cfb5df1 100644 --- a/lib/Plack/Session/Store/Null.pm +++ b/lib/Plack/Session/Store/Null.pm @@ -2,7 +2,7 @@ package Plack::Session::Store::Null; use strict; use warnings; -our $VERSION = '0.13'; +our $VERSION = '0.14'; our $AUTHORITY = 'cpan:STEVAN'; sub new { bless {} => shift }