Skip to content

Commit 7027e44

Browse files
tiegzjaredbeck
authored andcommitted
Release 6.1.0
1 parent 076bfd3 commit 7027e44

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
* Breaking Changes
11+
* None
12+
* Added
13+
* None
14+
* Fixed
15+
* None
16+
17+
## 6.1.0 (2020-05-03)
18+
1019
* Breaking Changes
1120
* None
1221
* Added
@@ -31,7 +40,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3140
gem "scrypt", "~> 3.0"
3241

3342
* Breaking Changes, Minor
34-
* To set your crypto provider, you must use `crypto_provider=`, not
43+
* To set your crypto provider, you must use `crypto_provider=`, not
3544
`crypto_provider`. The arity of the later has changed from -1 (one optional
3645
arg) to 0 (no arguments).
3746
* Added

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ An unobtrusive ruby authentication library based on ActiveRecord.
1818
| Version | Documentation |
1919
| ----------- | ------------- |
2020
| Unreleased | https://github.com/binarylogic/authlogic/blob/master/README.md |
21-
| 6.0.0 | https://github.com/binarylogic/authlogic/blob/v6.0.0/README.md |
22-
| 5.1.0 | https://github.com/binarylogic/authlogic/blob/v5.1.0/README.md |
21+
| 6.1.0 | https://github.com/binarylogic/authlogic/blob/v6.1.0/README.md |
22+
| 5.2.0 | https://github.com/binarylogic/authlogic/blob/v5.2.0/README.md |
2323
| 4.5.0 | https://github.com/binarylogic/authlogic/blob/v4.5.0/README.md |
2424
| 3.7.0 | https://github.com/binarylogic/authlogic/blob/v3.7.0/README.md |
2525
| 2.1.11 | https://github.com/binarylogic/authlogic/blob/v2.1.11/README.rdoc |
@@ -407,9 +407,9 @@ end
407407
### 2.e. SameSite Cookie Attribute
408408
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.
409409

410-
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.
410+
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.
411411

412-
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).
412+
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).
413413

414414
Reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#SameSite
415415

@@ -487,8 +487,8 @@ in `authlogic/session/base.rb`.
487487

488488
| Version | branch | ruby | activerecord |
489489
| ------- | ------------ | -------- | ------------- |
490-
| 6.0 | 6-0-stable | >= 2.4.0 | >= 5.2, < 6.1 |
491-
| 5.1 | 5-1-stable | >= 2.3.0 | >= 5.2, < 6.1 |
490+
| 6.1 | 6-1-stable | >= 2.4.0 | >= 5.2, < 6.1 |
491+
| 5.2 | 5-2-stable | >= 2.3.0 | >= 5.2, < 6.1 |
492492
| 4.5 | 4-5-stable | >= 2.3.0 | >= 4.2, < 5.3 |
493493
| 4.3 | 4-3-stable | >= 2.3.0 | >= 4.2, < 5.3 |
494494
| 4.2 | 4-2-stable | >= 2.2.0 | >= 4.2, < 5.3 |

lib/authlogic/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ module Authlogic
1717
#
1818
# @api public
1919
def self.gem_version
20-
::Gem::Version.new("6.0.0")
20+
::Gem::Version.new("6.1.0")
2121
end
2222
end

0 commit comments

Comments
 (0)