Skip to content

Commit ddaa5ad

Browse files
committed
0.23
1 parent fb923fc commit ddaa5ad

File tree

10 files changed

+13
-10
lines changed

10 files changed

+13
-10
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
58
0.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

META.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
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"
@@ -64,7 +64,7 @@
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 <[email protected]>",
7070
"Lee Aylward <[email protected]>",

lib/Plack/Middleware/Session.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Middleware::Session;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.22';
5+
our $VERSION = '0.23';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Plack::Util;

lib/Plack/Session.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.22';
5+
our $VERSION = '0.23';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Plack::Util::Accessor qw( session options );

lib/Plack/Session/State.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::State;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.22';
5+
our $VERSION = '0.23';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Digest::SHA1 ();

lib/Plack/Session/State/Cookie.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::State::Cookie;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.22';
5+
our $VERSION = '0.23';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use parent 'Plack::Session::State';

lib/Plack/Session/Store.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::Store;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.22';
5+
our $VERSION = '0.23';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Plack::Util::Accessor qw[ _stash ];

lib/Plack/Session/Store/Cache.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::Store::Cache;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.22';
5+
our $VERSION = '0.23';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Scalar::Util qw[ blessed ];

lib/Plack/Session/Store/File.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::Store::File;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.22';
5+
our $VERSION = '0.23';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
use Storable ();

lib/Plack/Session/Store/Null.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Session::Store::Null;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.22';
5+
our $VERSION = '0.23';
66
our $AUTHORITY = 'cpan:STEVAN';
77

88
sub new { bless {} => shift }

0 commit comments

Comments
 (0)