trim extraneous space master
Graham Knop [Mon, 11 Jul 2022 09:20:22 +0000 (11:20 +0200)]
Changes
lib/Catalyst/Plugin/Session/State/Cookie.pm
maint/Makefile.PL.include

diff --git a/Changes b/Changes
index 30269dd..4848d28 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,6 @@
 Revision history for Perl extension Catalyst::Plugin::Session::State::Cookie
 
+0.18 - 2020-08-27
         - add SameSite support (RT#133009)
         - convert optional test using Test::WWW::Mechanize::Catalyst to
           mandatory test using Catalyst::Test
index 78be7f7..36448e6 100644 (file)
@@ -84,7 +84,7 @@ sub make_session_cookie {
 
     $cookie->{samesite} = $cfg->{cookie_samesite};
     $cookie->{samesite} = "Lax"
-        unless defined $cookie->{ samesite}; # default = Lax
+        unless defined $cookie->{samesite}; # default = Lax
 
     return $cookie;
 }
index 8fd36b0..f304d90 100644 (file)
@@ -1,4 +1,4 @@
-BEGIN { -e 'Distar' or system("git clone https://github.com/p5sagit/Distar.git") }
+BEGIN { -e 'Distar' or system qw(git clone https://github.com/p5sagit/Distar.git) }
 use lib 'Distar/lib';
 use Distar;