From: Tatsuhiko Miyagawa Date: Wed, 22 Dec 2010 16:58:09 +0000 (-0800) Subject: Checking in changes prior to tagging of version 0.13. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c9cdee2320126174be4d978753b39a6d3888278f;p=catagits%2FWeb-Session.git Checking in changes prior to tagging of version 0.13. Changelog diff is: diff --git a/Changes b/Changes index 53f99b6..c65a04f 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Plack::Middleware::Session +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) + 0.12 Wed Jul 7 15:54:05 PDT 2010 - Improved documents (markstos, haarg) - Support httponly option (haarg) --- diff --git a/Changes b/Changes index 53f99b6..c65a04f 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Plack::Middleware::Session +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) + 0.12 Wed Jul 7 15:54:05 PDT 2010 - Improved documents (markstos, haarg) - Support httponly option (haarg) diff --git a/examples/counter-raw.psgi b/examples/counter-raw.psgi index 84d7fe4..40e6ee0 100755 --- a/examples/counter-raw.psgi +++ b/examples/counter-raw.psgi @@ -5,7 +5,7 @@ # Plack::Middleware::Session interface ($env->{'psgix.session'}) could # be wrapped and integrated as part of the request API. See Tatsumaki # (integrated via subclassing Plack::Request) and Dancer::Session::PSGI -# how to adapt Plack::Middleware::Session to web frameworks API. +# how to adapt Plack::Middleware::Session to web frameworks' APIs. # You're not recommended to write a new web application using this style. diff --git a/lib/Plack/Middleware/Session.pm b/lib/Plack/Middleware/Session.pm index 9f307af..f6e65e7 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.12'; +our $VERSION = '0.13'; our $AUTHORITY = 'cpan:STEVAN'; use Plack::Util; diff --git a/lib/Plack/Session.pm b/lib/Plack/Session.pm index 08b2b68..9a8ed98 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.12'; +our $VERSION = '0.13'; 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 4a5d381..e3fdaeb 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.12'; +our $VERSION = '0.13'; our $AUTHORITY = 'cpan:STEVAN'; use Digest::SHA1 (); diff --git a/lib/Plack/Session/State/Cookie.pm b/lib/Plack/Session/State/Cookie.pm index 28b1661..d6042a4 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.12'; +our $VERSION = '0.13'; our $AUTHORITY = 'cpan:STEVAN'; use parent 'Plack::Session::State'; diff --git a/lib/Plack/Session/Store.pm b/lib/Plack/Session/Store.pm index f4107f6..5617904 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.12'; +our $VERSION = '0.13'; 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 e127118..2b66989 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.12'; +our $VERSION = '0.13'; 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 c8c1ee3..aca721f 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.12'; +our $VERSION = '0.13'; our $AUTHORITY = 'cpan:STEVAN'; use Storable (); diff --git a/lib/Plack/Session/Store/Null.pm b/lib/Plack/Session/Store/Null.pm index c703de4..d6d497d 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.12'; +our $VERSION = '0.13'; our $AUTHORITY = 'cpan:STEVAN'; sub new { bless {} => shift }