README.md in snowplow_ruby_duid-1.1.0.prerelease.1 vs README.md in snowplow_ruby_duid-1.1.0

- old
+ new

@@ -14,16 +14,16 @@ The helper will be included in `ActionController::Base` when the gem is loaded. #### Configuration -Since 2020 some browsers require extra settings on cookies, like SameSite and secure settings. +Since 2020 some browsers require extra settings on cookies, like [SameSite](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite) and [secure](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#Secure) settings. -The library provides default values for these two settings(:none, true), that you can change: +The library provides default values for these two settings(:lax, false), that you can change: ```ruby -SnowplowRubyDuid::Configuration.same_site = :lax -SnowplowRubyDuid::Configuration.secure = false +SnowplowRubyDuid::Configuration.same_site = :none +SnowplowRubyDuid::Configuration.secure = true ``` ### Sinatra Add the following to `Sinatra::Base`