Skip to content

Commit 1bfa28e

Browse files
committed
Add PR 767 to CHANGELOG.md, with some markdown lints.
1 parent 97c9aba commit 1bfa28e

1 file changed

Lines changed: 58 additions & 57 deletions

File tree

CHANGELOG.md

Lines changed: 58 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -7,88 +7,89 @@ 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-
* Rubygems MFA requirement for authors added to gemspec.
14-
* Fixed
15-
* None
10+
- Breaking Changes
11+
- None
12+
- Added
13+
- Rubygems MFA requirement for authors added to gemspec.
14+
- Fixed
15+
- [#767](https://github.com/binarylogic/authlogic/pull/767) - Adds support for Rails 7.1
1616

1717
## 6.4.2 (2021-12-21)
1818

19-
* Breaking Changes
20-
* None
21-
* Added
22-
* None
23-
* Fixed
24-
* [#743](https://github.com/binarylogic/authlogic/pull/743) - Fixed
19+
- Breaking Changes
20+
- None
21+
- Added
22+
- None
23+
- Fixed
24+
- [#743](https://github.com/binarylogic/authlogic/pull/743) - Fixed
2525
deprecation warning in Rails 7 re: `ActiveRecord::Base.default_timezone`
26-
* [#745](https://github.com/binarylogic/authlogic/pull/745) - Fixed more
26+
- [#745](https://github.com/binarylogic/authlogic/pull/745) - Fixed more
2727
deprecation warnings in Rails 7
2828

2929
## 6.4.1 (2021-02-22)
3030

31-
* Breaking Changes
32-
* None
33-
* Added
34-
* `Authlogic::Session::Base.session_fixation_defense` - Reset the Rack
31+
- Breaking Changes
32+
- None
33+
- Added
34+
- `Authlogic::Session::Base.session_fixation_defense` - Reset the Rack
3535
session ID after authentication, to protect against Session Fixation
3636
attacks. (https://guides.rubyonrails.org/security.html#session-fixation)
3737
Default: true
38-
* Fixed
39-
* None
38+
- Fixed
39+
- None
4040

4141
## 6.4.0 (2020-12-22)
4242

43-
* Breaking Changes
44-
* None
45-
* Added
46-
* [#734](https://github.com/binarylogic/authlogic/pull/734) - Support for
43+
- Breaking Changes
44+
- None
45+
- Added
46+
- [#734](https://github.com/binarylogic/authlogic/pull/734) - Support for
4747
string cookies when using TestCase and friends
48-
* Fixed
49-
* None
48+
- Fixed
49+
- None
5050

5151
## 6.3.0 (2020-12-17)
5252

53-
* Breaking Changes
54-
* None
55-
* Added
56-
* [#733](https://github.com/binarylogic/authlogic/pull/733) - Rails 6.1 support
57-
* `find_by_login_method` is deprecated in favor of `record_selection_method`,
53+
- Breaking Changes
54+
- None
55+
- Added
56+
- [#733](https://github.com/binarylogic/authlogic/pull/733) - Rails 6.1 support
57+
- `find_by_login_method` is deprecated in favor of `record_selection_method`,
5858
to avoid confusion with ActiveRecord's "Dynamic Finders".
59-
* Fixed
60-
* [#726](https://github.com/binarylogic/authlogic/issues/726) - Thread
59+
- Fixed
60+
- [#726](https://github.com/binarylogic/authlogic/issues/726) - Thread
6161
safety in `Authlogic::Session::Base.klass_name`
6262

6363
## 6.2.0 (2020-09-03)
6464

65-
* Breaking Changes
66-
* None
67-
* Added
68-
* [#684](https://github.com/binarylogic/authlogic/pull/684) - Use cookies
65+
- Breaking Changes
66+
- None
67+
- Added
68+
- [#684](https://github.com/binarylogic/authlogic/pull/684) - Use cookies
6969
only when available. Support for `ActionController::API`
70-
* Fixed
71-
* [#725](https://github.com/binarylogic/authlogic/pull/725) - `NoMethodError`
70+
- Fixed
71+
- [#725](https://github.com/binarylogic/authlogic/pull/725) - `NoMethodError`
7272
when setting `sign_cookie` or `encrypt_cookie` before `controller` is
7373
defined.
7474

7575
## 6.1.0 (2020-05-03)
7676

77-
* Breaking Changes
78-
* None
79-
* Added
80-
* [#666](https://github.com/binarylogic/authlogic/pull/666) -
77+
- Breaking Changes
78+
- None
79+
- Added
80+
- [#666](https://github.com/binarylogic/authlogic/pull/666) -
8181
Forwardported Authlogic::Session::Cookies.encrypt_cookie option
82-
* [#723](https://github.com/binarylogic/authlogic/pull/723) -
82+
- [#723](https://github.com/binarylogic/authlogic/pull/723) -
8383
Option to raise a `Authlogic::ModelSetupError` when your database is not
8484
configured correctly.
85-
* Fixed
86-
* None
85+
- Fixed
86+
- None
8787

8888
## 6.0.0 (2020-03-23)
8989

90-
* Breaking Changes, Major
91-
* There is no longer a default `crypto_provider`. We still recommend SCrypt,
90+
- Breaking Changes, Major
91+
92+
- There is no longer a default `crypto_provider`. We still recommend SCrypt,
9293
but don't want users of other providers to be forced to install it. You
9394
must now explicitly specify your `crypto_provider`, eg. in your `user.rb`.
9495

@@ -100,23 +101,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
100101

101102
gem "scrypt", "~> 3.0"
102103

103-
* Breaking Changes, Minor
104-
* To set your crypto provider, you must use `crypto_provider=`, not
104+
- Breaking Changes, Minor
105+
- To set your crypto provider, you must use `crypto_provider=`, not
105106
`crypto_provider`. The arity of the later has changed from -1 (one optional
106107
arg) to 0 (no arguments).
107-
* Added
108-
* [#702](https://github.com/binarylogic/authlogic/pull/702) - The ability to
108+
- Added
109+
- [#702](https://github.com/binarylogic/authlogic/pull/702) - The ability to
109110
specify "None" as a valid SameSite attribute
110-
* Fixed
111-
* [#686](https://github.com/binarylogic/authlogic/pull/686) - Respect
111+
- Fixed
112+
- [#686](https://github.com/binarylogic/authlogic/pull/686) - Respect
112113
the `log_in_after_create` setting when creating a new logged-out user
113-
* [#668](https://github.com/binarylogic/authlogic/pull/668) -
114+
- [#668](https://github.com/binarylogic/authlogic/pull/668) -
114115
BCrypt user forced to load SCrypt
115-
* [#697](https://github.com/binarylogic/authlogic/issues/697) - Add V2
116+
- [#697](https://github.com/binarylogic/authlogic/issues/697) - Add V2
116117
CryptoProviders for MD5 and SHA schemes that fix key stretching by hashing
117118
the byte digests instead of the hex strings representing those digests
118-
* Dependencies
119-
* Drop support for ruby 2.3 (reached EOL on 2019-04-01)
119+
- Dependencies
120+
- Drop support for ruby 2.3 (reached EOL on 2019-04-01)
120121

121122
## Previous major version
122123

0 commit comments

Comments
 (0)