diff --git a/CHANGELOG.md b/CHANGELOG.md index b33ae671..eaa1c615 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,18 @@ complete changelog, see the git history for each version via the version links. ## [Unreleased] -[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.9.1...main +[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.9.2...main + +## [2.9.2] - November 14, 2024 +- Fix query params being clobbered by Clearance::BackDoor (#1041) Frederick Cheung + +[2.9.2]: https://github.com/thoughtbot/clearance/compare/v2.9.1...v2.9.2 ## [2.9.1] - October 29, 2024 - Update gemspec +[2.9.1]: https://github.com/thoughtbot/clearance/compare/v2.9.0...v2.9.1 + ## [2.9.0] - October 29, 2024 - Added Rails 7.2 and Ruby 3.3 to testing matrix and overhauled dummy app (#1032) Hamed Asghari diff --git a/Gemfile.lock b/Gemfile.lock index e259810d..a9a48ce2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - clearance (2.9.1) + clearance (2.9.2) actionmailer (>= 5.0) activemodel (>= 5.0) activerecord (>= 5.0) diff --git a/lib/clearance/version.rb b/lib/clearance/version.rb index 0ade6bb7..0dbb0f11 100644 --- a/lib/clearance/version.rb +++ b/lib/clearance/version.rb @@ -1,3 +1,3 @@ module Clearance - VERSION = "2.9.1".freeze + VERSION = "2.9.2".freeze end