From 3691c23b8447071ba3f6aa6f6f9e30dd3bc2ed6f Mon Sep 17 00:00:00 2001 From: Mauro Mottini Date: Fri, 10 Sep 2021 11:50:27 -0300 Subject: [PATCH] [ci skip] v2.5.0 release * Update Gemfile.lock and version for 2.5.0 release. --- Gemfile.lock | 10 +++++----- NEWS.md | 12 ++++++++++++ lib/clearance/version.rb | 2 +- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index af954441..5b1d77e1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - clearance (2.4.0) + clearance (2.5.0) actionmailer (>= 5.0) activemodel (>= 5.0) activerecord (>= 5.0) @@ -84,7 +84,7 @@ GEM crass (1.0.6) database_cleaner (1.8.5) diff-lcs (1.4.4) - email_validator (2.2.2) + email_validator (2.2.3) activemodel erb_lint (0.0.34) activesupport @@ -99,12 +99,12 @@ GEM factory_bot_rails (6.1.0) factory_bot (~> 6.1.0) railties (>= 5.0.0) - ffi (1.14.2) + ffi (1.15.4) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake - globalid (0.4.2) - activesupport (>= 4.2.0) + globalid (0.5.2) + activesupport (>= 5.0) html_tokenizer (0.0.7) i18n (1.8.9) concurrent-ruby (~> 1.0) diff --git a/NEWS.md b/NEWS.md index 6df32398..4e69e410 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,18 @@ The noteworthy changes for each Clearance version are included here. For a complete changelog, see the git history for each version via the version links. +## [2.5.0] - September 10, 2021 + +### Fixed + +- Fix open redirect vulnerability + +### Changed + +- Rename default branch to `main` + +[2.4.0]: https://github.com/thoughtbot/clearance/compare/v2.3.1...v2.4.0 + ## [2.4.0] - March 5, 2021 ### Added diff --git a/lib/clearance/version.rb b/lib/clearance/version.rb index d2444ab6..0500025f 100644 --- a/lib/clearance/version.rb +++ b/lib/clearance/version.rb @@ -1,3 +1,3 @@ module Clearance - VERSION = "2.4.0".freeze + VERSION = "2.5.0".freeze end