Skip to content

Commit

Permalink
0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Aug 11, 2014
1 parent fb923fc commit ddaa5ad
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
}
}
},
"release_status" : "stable",
"release_status" : "testing",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/stevan/plack-middleware-session/issues"
Expand All @@ -64,7 +64,7 @@
"web" : "https://github.com/stevan/plack-middleware-session"
}
},
"version" : "0.22",
"version" : "0.23",
"x_contributors" : [
"Graham Knop <[email protected]>",
"Lee Aylward <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Session.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Session.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Session/State.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Session/State/Cookie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Session/Store.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Session/Store/Cache.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Session/Store/File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Session/Store/Null.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit ddaa5ad

Please sign in to comment.