From cfa87afb9032d0a0978b47f34448539ce360252e Mon Sep 17 00:00:00 2001 From: Tieg Zaharia Date: Sun, 3 May 2020 10:56:38 -0400 Subject: [PATCH] Release 6.1.0 --- CHANGELOG.md | 11 ++++++++++- README.md | 12 ++++++------ lib/authlogic/version.rb | 2 +- 3 files changed, 17 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b2cfbd1..6006c62b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +* Breaking Changes + * None +* Added + * None +* Fixed + * None + +## 6.1.0 (2020-05-03) + * Breaking Changes * None * Added @@ -31,7 +40,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. gem "scrypt", "~> 3.0" * Breaking Changes, Minor - * To set your crypto provider, you must use `crypto_provider=`, not + * To set your crypto provider, you must use `crypto_provider=`, not `crypto_provider`. The arity of the later has changed from -1 (one optional arg) to 0 (no arguments). * Added diff --git a/README.md b/README.md index 2935fea3..a3837d26 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ An unobtrusive ruby authentication library based on ActiveRecord. | Version | Documentation | | ----------- | ------------- | | Unreleased | https://github.com/binarylogic/authlogic/blob/master/README.md | -| 6.0.0 | https://github.com/binarylogic/authlogic/blob/v6.0.0/README.md | -| 5.1.0 | https://github.com/binarylogic/authlogic/blob/v5.1.0/README.md | +| 6.1.0 | https://github.com/binarylogic/authlogic/blob/v6.1.0/README.md | +| 5.2.0 | https://github.com/binarylogic/authlogic/blob/v5.2.0/README.md | | 4.5.0 | https://github.com/binarylogic/authlogic/blob/v4.5.0/README.md | | 3.7.0 | https://github.com/binarylogic/authlogic/blob/v3.7.0/README.md | | 2.1.11 | https://github.com/binarylogic/authlogic/blob/v2.1.11/README.rdoc | @@ -407,9 +407,9 @@ end ### 2.e. SameSite Cookie Attribute The SameSite attribute tells browsers when and how to fire cookies in first- or third-party situations. SameSite is used by a variety of browsers to identify whether or not to allow a cookie to be accessed. -Up until recently, the standard default value when SameSite was not explicitly defined was to allow cookies in both first- and third-party contexts. However, starting with Chrome 80+, the SameSite attribute will not default to Lax behavior meaning cookies will only be permitted in first-party contexts. +Up until recently, the standard default value when SameSite was not explicitly defined was to allow cookies in both first- and third-party contexts. However, starting with Chrome 80+, the SameSite attribute will not default to Lax behavior meaning cookies will only be permitted in first-party contexts. -Authlogic can allow you to explicitly set the value of SameSite to one of: Lax, Strict, or None. Note that when setting SameSite to None, the `secure` flag must also be set (secure is the default in Authlogic). +Authlogic can allow you to explicitly set the value of SameSite to one of: Lax, Strict, or None. Note that when setting SameSite to None, the `secure` flag must also be set (secure is the default in Authlogic). Reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#SameSite @@ -487,8 +487,8 @@ in `authlogic/session/base.rb`. | Version | branch | ruby | activerecord | | ------- | ------------ | -------- | ------------- | -| 6.0 | 6-0-stable | >= 2.4.0 | >= 5.2, < 6.1 | -| 5.1 | 5-1-stable | >= 2.3.0 | >= 5.2, < 6.1 | +| 6.1 | 6-1-stable | >= 2.4.0 | >= 5.2, < 6.1 | +| 5.2 | 5-2-stable | >= 2.3.0 | >= 5.2, < 6.1 | | 4.5 | 4-5-stable | >= 2.3.0 | >= 4.2, < 5.3 | | 4.3 | 4-3-stable | >= 2.3.0 | >= 4.2, < 5.3 | | 4.2 | 4-2-stable | >= 2.2.0 | >= 4.2, < 5.3 | diff --git a/lib/authlogic/version.rb b/lib/authlogic/version.rb index 185656a0..08c5463e 100644 --- a/lib/authlogic/version.rb +++ b/lib/authlogic/version.rb @@ -17,6 +17,6 @@ module Authlogic # # @api public def self.gem_version - ::Gem::Version.new("6.0.0") + ::Gem::Version.new("6.1.0") end end