File tree Expand file tree Collapse file tree 10 files changed +13
-10
lines changed Expand file tree Collapse file tree 10 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ Revision history for Perl extension Plack::Middleware::Session
22
33{{$NEXT}}
44
5+ 0.23 2014-08-11 10:22:40 PDT
6+ - Changed the warning to error, when secret is not set.
7+
580.22 2014-08-11 10:16:51 PDT
69 - Document the vunlerability of using this middleware without secret, and
710 warn when secret is not set on the runtime. In the next release the default
Original file line number Diff line number Diff line change 5252 }
5353 }
5454 },
55- "release_status" : " stable " ,
55+ "release_status" : " testing " ,
5656 "resources" : {
5757 "bugtracker" : {
5858 "web" : " https://github.com/stevan/plack-middleware-session/issues"
6464 "web" : " https://github.com/stevan/plack-middleware-session"
6565 }
6666 },
67- "version" : " 0.22 " ,
67+ "version" : " 0.23 " ,
6868 "x_contributors" : [
6969 " Graham Knop <haarg@haarg.org>" ,
7070 " Lee Aylward <lee@laylward.com>" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Middleware::Session;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.22 ' ;
5+ our $VERSION = ' 0.23 ' ;
66our $AUTHORITY = ' cpan:STEVAN' ;
77
88use Plack::Util;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.22 ' ;
5+ our $VERSION = ' 0.23 ' ;
66our $AUTHORITY = ' cpan:STEVAN' ;
77
88use Plack::Util::Accessor qw( session options ) ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::State;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.22 ' ;
5+ our $VERSION = ' 0.23 ' ;
66our $AUTHORITY = ' cpan:STEVAN' ;
77
88use Digest::SHA1 ();
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::State::Cookie;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.22 ' ;
5+ our $VERSION = ' 0.23 ' ;
66our $AUTHORITY = ' cpan:STEVAN' ;
77
88use parent ' Plack::Session::State' ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::Store;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.22 ' ;
5+ our $VERSION = ' 0.23 ' ;
66our $AUTHORITY = ' cpan:STEVAN' ;
77
88use Plack::Util::Accessor qw[ _stash ] ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::Store::Cache;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.22 ' ;
5+ our $VERSION = ' 0.23 ' ;
66our $AUTHORITY = ' cpan:STEVAN' ;
77
88use Scalar::Util qw[ blessed ] ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::Store::File;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.22 ' ;
5+ our $VERSION = ' 0.23 ' ;
66our $AUTHORITY = ' cpan:STEVAN' ;
77
88use Storable ();
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::Store::Null;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.22 ' ;
5+ our $VERSION = ' 0.23 ' ;
66our $AUTHORITY = ' cpan:STEVAN' ;
77
88sub new { bless {} => shift }
You can’t perform that action at this time.
0 commit comments