From 0b6c0c37c3ac79c6e5523536c2e136439a8c5794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janko=20Marohni=C4=87?= Date: Tue, 9 Apr 2024 11:12:30 +0200 Subject: [PATCH] Bump to 1.14.0 --- CHANGELOG.md | 18 +++++++++++++++++- lib/rodauth/rails/version.rb | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55d954e..ed77584 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,20 @@ -## HEAD +## 1.14.0 (2024-04-09) + +* Allow declaring controller callbacks for specific Rodauth routes via `:only` and `:except` keyword arguments (@janko) + +* Instrument Rodauth controller and route name instead of `RodauthApp#call` on Rodauth requests (@janko) + +* Remove custom `#inspect` from Rodauth app middleware subclass in favour of Ruby 3.3+ `Module#set_temporary_name` (@janko) + +* Fix `data-turbo="false"` being added in the wrong place in reset password request form on login validation errors (@janko) + +* Fix format being inferred from `Accept` header instead URL path when calling `http_basic_auth` in the Rodauth middleware (@janko) + +* Allow referencing custom column attributes on `rails_account` before the account is persisted (@janko) + +* Retrieve auth class through the Rodauth app in generated account fixtures (@janko) + +* Use `include Rodauth::Rails.model` again in generated account model (@janko) * Avoid generated `convert_token_id_to_integer?` causing tokens to get silently rejected after switching to UUIDs (@janko) diff --git a/lib/rodauth/rails/version.rb b/lib/rodauth/rails/version.rb index 433186b..d09a857 100644 --- a/lib/rodauth/rails/version.rb +++ b/lib/rodauth/rails/version.rb @@ -1,5 +1,5 @@ module Rodauth module Rails - VERSION = "1.13.0" + VERSION = "1.14.0" end end