Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.11.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index f49b307..a6dd14a 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for Perl extension Cookie-Baker

 {{$NEXT}}

+0.11 2019-06-07T06:27:50Z
+
+   - Supportt SameSite=None #15
+
 0.10 2018-09-21T07:40:25Z

    - Add samesite #13
  • Loading branch information
kazeburo committed Jun 7, 2019
1 parent 5980b08 commit d186b39
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl extension Cookie-Baker

{{$NEXT}}

0.11 2019-06-07T06:27:50Z

- Supportt SameSite=None https://github.com/kazeburo/Cookie-Baker/pull/15

0.10 2018-09-21T07:40:25Z

- Add samesite https://github.com/kazeburo/Cookie-Baker/pull/13
Expand Down
5 changes: 3 additions & 2 deletions META.json
Expand Up @@ -69,12 +69,13 @@
"web" : "https://github.com/kazeburo/Cookie-Baker"
}
},
"version" : "0.10",
"version" : "0.11",
"x_contributors" : [
"David Romano <unobe@cpan.org>",
"Ichinose Shogo <shogo82148@gmail.com>",
"Olaf Alders <olaf@wundersolutions.com>",
"Shoichi Kaji <skaji@cpan.org>"
"Shoichi Kaji <skaji@cpan.org>",
"kwry <kwrkwrr@gmail.com>"
],
"x_serialization_backend" : "JSON::PP version 2.27300_01",
"x_static_install" : 1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -78,9 +78,9 @@ There is no XS implementation of bake\_cookie yet.

- samesite

If defined as 'lax' or 'strict' (case-insensitive), sets the SameSite restriction for the cookie as described in the
If defined as 'lax' or 'strict' or 'none' (case-insensitive), sets the SameSite restriction for the cookie as described in the
[draft proposal](https://tools.ietf.org/html/draft-west-first-party-cookies-07), which is already implemented in
Chrome (v51), Opera (v38) and Firefox (v60).
Chrome (v51), Safari (v12), Edge (v16), Opera (v38) and Firefox (v60).

- crush\_cookie

Expand Down
2 changes: 1 addition & 1 deletion lib/Cookie/Baker.pm
Expand Up @@ -7,7 +7,7 @@ use base qw/Exporter/;
use URI::Escape;

BEGIN {
our $VERSION = "0.10";
our $VERSION = "0.11";
our @EXPORT = qw/bake_cookie crush_cookie/;
my $use_pp = $ENV{COOKIE_BAKER_PP};
if (!$use_pp) {
Expand Down

0 comments on commit d186b39

Please sign in to comment.