From ddaa5ad8de3e1d0bad7114eded641d6d13c692c3 Mon Sep 17 00:00:00 2001 From: Tatsuhiko Miyagawa Date: Mon, 11 Aug 2014 10:22:49 -0700 Subject: [PATCH] 0.23 --- Changes | 3 +++ META.json | 4 ++-- lib/Plack/Middleware/Session.pm | 2 +- lib/Plack/Session.pm | 2 +- lib/Plack/Session/State.pm | 2 +- lib/Plack/Session/State/Cookie.pm | 2 +- lib/Plack/Session/Store.pm | 2 +- lib/Plack/Session/Store/Cache.pm | 2 +- lib/Plack/Session/Store/File.pm | 2 +- lib/Plack/Session/Store/Null.pm | 2 +- 10 files changed, 13 insertions(+), 10 deletions(-) diff --git a/Changes b/Changes index f1e09eb..34f8b17 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,9 @@ Revision history for Perl extension Plack::Middleware::Session {{$NEXT}} +0.23 2014-08-11 10:22:40 PDT + - Changed the warning to error, when secret is not set. + 0.22 2014-08-11 10:16:51 PDT - Document the vunlerability of using this middleware without secret, and warn when secret is not set on the runtime. In the next release the default diff --git a/META.json b/META.json index 787ca06..642f6dc 100644 --- a/META.json +++ b/META.json @@ -52,7 +52,7 @@ } } }, - "release_status" : "stable", + "release_status" : "testing", "resources" : { "bugtracker" : { "web" : "https://github.com/stevan/plack-middleware-session/issues" @@ -64,7 +64,7 @@ "web" : "https://github.com/stevan/plack-middleware-session" } }, - "version" : "0.22", + "version" : "0.23", "x_contributors" : [ "Graham Knop ", "Lee Aylward ", diff --git a/lib/Plack/Middleware/Session.pm b/lib/Plack/Middleware/Session.pm index 8e3c661..84da2d7 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.22'; +our $VERSION = '0.23'; our $AUTHORITY = 'cpan:STEVAN'; use Plack::Util; diff --git a/lib/Plack/Session.pm b/lib/Plack/Session.pm index 8eed636..4553066 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.22'; +our $VERSION = '0.23'; 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 d96e3ad..d4189a0 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.22'; +our $VERSION = '0.23'; our $AUTHORITY = 'cpan:STEVAN'; use Digest::SHA1 (); diff --git a/lib/Plack/Session/State/Cookie.pm b/lib/Plack/Session/State/Cookie.pm index 6dfdcb8..4d76300 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.22'; +our $VERSION = '0.23'; our $AUTHORITY = 'cpan:STEVAN'; use parent 'Plack::Session::State'; diff --git a/lib/Plack/Session/Store.pm b/lib/Plack/Session/Store.pm index 152fedb..915bb01 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.22'; +our $VERSION = '0.23'; 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 604e6b3..3a16299 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.22'; +our $VERSION = '0.23'; 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 910c098..8b9a074 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.22'; +our $VERSION = '0.23'; our $AUTHORITY = 'cpan:STEVAN'; use Storable (); diff --git a/lib/Plack/Session/Store/Null.pm b/lib/Plack/Session/Store/Null.pm index a16f5a2..fd48995 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.22'; +our $VERSION = '0.23'; our $AUTHORITY = 'cpan:STEVAN'; sub new { bless {} => shift }