From: Tatsuhiko Miyagawa Date: Wed, 3 Feb 2010 04:45:58 +0000 (-0800) Subject: Checking in changes prior to tagging of version 0.09_03. Changelog diff is: X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FWeb-Session.git;a=commitdiff_plain;h=983d87ddaca365aa9c57a973fa3a81fc8470f948 Checking in changes prior to tagging of version 0.09_03. Changelog diff is: diff --git a/Changes b/Changes index 56d41c5..692a13c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Plack::Middleware::Session +0.09_03 Tue Feb 2 20:42:56 PST 2010 + - Fixed so the default Cookie path is now correctly set to '/' + You can override that by setting path = undef in psgix.session.options. + (Reported by tomyhero) + 0.09_02 Sat Jan 30 23:13:50 PST 2010 - Fixed a bug in Cookie serialization where it breaks the response headers generated by applications (tomyhero) --- diff --git a/Changes b/Changes index 56d41c5..692a13c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Plack::Middleware::Session +0.09_03 Tue Feb 2 20:42:56 PST 2010 + - Fixed so the default Cookie path is now correctly set to '/' + You can override that by setting path = undef in psgix.session.options. + (Reported by tomyhero) + 0.09_02 Sat Jan 30 23:13:50 PST 2010 - Fixed a bug in Cookie serialization where it breaks the response headers generated by applications (tomyhero) diff --git a/lib/Plack/Middleware/Session.pm b/lib/Plack/Middleware/Session.pm index 8d9a3ee..bd92f55 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.09_02'; +our $VERSION = '0.09_03'; our $AUTHORITY = 'cpan:STEVAN'; use Plack::Util; diff --git a/lib/Plack/Session.pm b/lib/Plack/Session.pm index d59da4d..b403ac1 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.09_02'; +our $VERSION = '0.09_03'; 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 e40e1c2..7bdbec5 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.09_02'; +our $VERSION = '0.09_03'; our $AUTHORITY = 'cpan:STEVAN'; use Digest::SHA1 (); diff --git a/lib/Plack/Session/State/Cookie.pm b/lib/Plack/Session/State/Cookie.pm index 9be093c..aaa94de 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.09_02'; +our $VERSION = '0.09_03'; our $AUTHORITY = 'cpan:STEVAN'; use parent 'Plack::Session::State'; diff --git a/lib/Plack/Session/Store.pm b/lib/Plack/Session/Store.pm index fc9677d..5193d74 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.09_02'; +our $VERSION = '0.09_03'; 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 7a75e1d..bdcf9b0 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.09_02'; +our $VERSION = '0.09_03'; 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 a74e82a..2b7a660 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.09_02'; +our $VERSION = '0.09_03'; our $AUTHORITY = 'cpan:STEVAN'; use Storable (); diff --git a/lib/Plack/Session/Store/Null.pm b/lib/Plack/Session/Store/Null.pm index a68193b..5e46fed 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.09_02'; +our $VERSION = '0.09_03'; our $AUTHORITY = 'cpan:STEVAN'; sub new { bless {} => shift }