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
2
2
3
3
{{$NEXT}}
4
4
5
+ 0.23 2014-08-11 10:22:40 PDT
6
+ - Changed the warning to error, when secret is not set.
7
+
5
8
0.22 2014-08-11 10:16:51 PDT
6
9
- Document the vunlerability of using this middleware without secret, and
7
10
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 52
52
}
53
53
}
54
54
},
55
- "release_status" : " stable " ,
55
+ "release_status" : " testing " ,
56
56
"resources" : {
57
57
"bugtracker" : {
58
58
"web" : " https://github.com/stevan/plack-middleware-session/issues"
64
64
"web" : " https://github.com/stevan/plack-middleware-session"
65
65
}
66
66
},
67
- "version" : " 0.22 " ,
67
+ "version" : " 0.23 " ,
68
68
"x_contributors" : [
69
69
" Graham Knop <[email protected] >" ,
70
70
" Lee Aylward <[email protected] >" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Middleware::Session;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.22 ' ;
5
+ our $VERSION = ' 0.23 ' ;
6
6
our $AUTHORITY = ' cpan:STEVAN' ;
7
7
8
8
use Plack::Util;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.22 ' ;
5
+ our $VERSION = ' 0.23 ' ;
6
6
our $AUTHORITY = ' cpan:STEVAN' ;
7
7
8
8
use Plack::Util::Accessor qw( session options ) ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::State;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.22 ' ;
5
+ our $VERSION = ' 0.23 ' ;
6
6
our $AUTHORITY = ' cpan:STEVAN' ;
7
7
8
8
use Digest::SHA1 ();
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::State::Cookie;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.22 ' ;
5
+ our $VERSION = ' 0.23 ' ;
6
6
our $AUTHORITY = ' cpan:STEVAN' ;
7
7
8
8
use parent ' Plack::Session::State' ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::Store;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.22 ' ;
5
+ our $VERSION = ' 0.23 ' ;
6
6
our $AUTHORITY = ' cpan:STEVAN' ;
7
7
8
8
use Plack::Util::Accessor qw[ _stash ] ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::Store::Cache;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.22 ' ;
5
+ our $VERSION = ' 0.23 ' ;
6
6
our $AUTHORITY = ' cpan:STEVAN' ;
7
7
8
8
use Scalar::Util qw[ blessed ] ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::Store::File;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.22 ' ;
5
+ our $VERSION = ' 0.23 ' ;
6
6
our $AUTHORITY = ' cpan:STEVAN' ;
7
7
8
8
use Storable ();
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Plack::Session::Store::Null;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.22 ' ;
5
+ our $VERSION = ' 0.23 ' ;
6
6
our $AUTHORITY = ' cpan:STEVAN' ;
7
7
8
8
sub new { bless {} => shift }
You can’t perform that action at this time.
0 commit comments