Skip to content

Commit 7d02233

Browse files
committed
Bump version to 2.6.2
[ci skip]
1 parent 630f175 commit 7d02233

File tree

3 files changed

+33
-23
lines changed

3 files changed

+33
-23
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,20 @@ complete changelog, see the git history for each version via the version links.
55

66
## [Unreleased]
77

8-
[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.6.1...main
8+
[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.6.2...main
9+
10+
## [2.6.2] January 15, 2024
11+
- Fix typo in Clearance::Token docs (#1000) Gabe Berke-Williams
12+
- Add CODEOWNERS file (#994)
13+
- Add support for Rails 7.1 (#995) Samuel Giddens
14+
- Fix for setup & CI for Rails 7.1 support, update "MiniTest" to "Minitest",
15+
add handling for different versions of Rack::Utils.set_cookie_header!, remove
16+
deprecated active record handling in application.rb (#998)
17+
- Update argon2 to v2.2.0 (#989) Georg Leciejewski
18+
- Prefer literal hash creation notation (#984) Ivan Marynych
19+
- Add Ruby 3.2.2 to testing matrix (#991)
20+
- Replace mentions of NEWS.md with CHANGELOG.md (#982)
21+
- Fix broken thoughtbot logo on README.md
922

1023
## [2.6.1] - September 23, 2022
1124
- Document how to report security issues

Gemfile.lock

Lines changed: 18 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
clearance (2.6.1)
4+
clearance (2.6.2)
55
actionmailer (>= 5.0)
66
activemodel (>= 5.0)
77
activerecord (>= 5.0)
@@ -59,11 +59,11 @@ GEM
5959
bundler
6060
rake
6161
thor (>= 0.14.0)
62-
argon2 (2.2.0)
62+
argon2 (2.3.0)
6363
ffi (~> 1.15)
6464
ffi-compiler (~> 1.0)
6565
ast (2.4.2)
66-
bcrypt (3.1.18)
66+
bcrypt (3.1.20)
6767
better_html (1.0.16)
6868
actionview (>= 4.0)
6969
activesupport (>= 4.0)
@@ -91,9 +91,9 @@ GEM
9191
activerecord (>= 5.a)
9292
database_cleaner-core (~> 2.0.0)
9393
database_cleaner-core (2.0.1)
94+
date (3.3.4)
9495
diff-lcs (1.5.0)
95-
digest (3.1.0)
96-
email_validator (2.2.3)
96+
email_validator (2.2.4)
9797
activemodel
9898
erb_lint (0.1.1)
9999
activesupport
@@ -109,39 +109,37 @@ GEM
109109
factory_bot_rails (6.2.0)
110110
factory_bot (~> 6.2.0)
111111
railties (>= 5.0.0)
112-
ffi (1.15.5)
112+
ffi (1.16.3)
113113
ffi-compiler (1.0.1)
114114
ffi (>= 1.0.0)
115115
rake
116-
globalid (1.0.0)
117-
activesupport (>= 5.0)
116+
globalid (1.2.1)
117+
activesupport (>= 6.1)
118118
html_tokenizer (0.0.7)
119119
i18n (1.10.0)
120120
concurrent-ruby (~> 1.0)
121121
loofah (2.18.0)
122122
crass (~> 1.0.2)
123123
nokogiri (>= 1.5.9)
124-
mail (2.7.1)
124+
mail (2.8.1)
125125
mini_mime (>= 0.1.1)
126+
net-imap
127+
net-pop
128+
net-smtp
126129
matrix (0.4.2)
127130
method_source (1.0.0)
128131
mini_mime (1.1.2)
129132
mini_portile2 (2.8.0)
130133
minitest (5.15.0)
131-
net-imap (0.2.3)
132-
digest
134+
net-imap (0.4.9)
135+
date
133136
net-protocol
134-
strscan
135-
net-pop (0.1.1)
136-
digest
137+
net-pop (0.1.2)
137138
net-protocol
139+
net-protocol (0.2.2)
138140
timeout
139-
net-protocol (0.1.3)
140-
timeout
141-
net-smtp (0.3.1)
142-
digest
141+
net-smtp (0.4.0)
143142
net-protocol
144-
timeout
145143
nokogiri (1.13.6)
146144
mini_portile2 (~> 2.8.0)
147145
racc (~> 1.4)
@@ -209,10 +207,9 @@ GEM
209207
activesupport (>= 5.2.0)
210208
smart_properties (1.17.0)
211209
sqlite3 (1.4.2)
212-
strscan (3.0.3)
213210
thor (1.2.1)
214211
timecop (0.9.5)
215-
timeout (0.3.0)
212+
timeout (0.4.1)
216213
tzinfo (2.0.4)
217214
concurrent-ruby (~> 1.0)
218215
unicode-display_width (2.1.0)

lib/clearance/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Clearance
2-
VERSION = "2.6.1".freeze
2+
VERSION = "2.6.2".freeze
33
end

0 commit comments

Comments
 (0)