From e6cc2daf3fba80c52ccb47d95731e72b065281ed Mon Sep 17 00:00:00 2001 From: Giovanni Martins Date: Mon, 24 Apr 2023 16:37:43 -0300 Subject: [PATCH 1/3] Preparing release 5.3.3 --- CHANGELOG.md | 5 +++++ README.md | 2 +- lib/audited/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a122fc01..b634191b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Audited ChangeLog +## 5.3.3 (2023-03-24) + +- Use RequestStore instead of Thread.current for thread-safe requests - @tiagocassio + [#669](https://github.com/collectiveidea/audited/pull/669) + ## 5.3.2 (2023-02-22) - Touch audit bug fixes - @mcyoung diff --git a/README.md b/README.md index 97a0e807..0b94f229 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Audited is currently ActiveRecord-only. In a previous life, Audited worked with Add the gem to your Gemfile: ```ruby -gem "audited", "~> 5.0" +gem "audited", "~> 5.3.3" ``` And if you're using ```require: false``` you must add initializers like this: diff --git a/lib/audited/version.rb b/lib/audited/version.rb index a0a01edf..1280d36f 100644 --- a/lib/audited/version.rb +++ b/lib/audited/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Audited - VERSION = "5.3.2" + VERSION = "5.3.3" end From 7fefaf53c626f48d6a1f481ebde5596b212b1f4a Mon Sep 17 00:00:00 2001 From: Daniel Morrison Date: Mon, 24 Apr 2023 16:38:42 -0400 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b634191b..b6b106de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ - Use RequestStore instead of Thread.current for thread-safe requests - @tiagocassio [#669](https://github.com/collectiveidea/audited/pull/669) +- Clean up Touch audits - @mcyoung, @akostadinov + [#668](https://github.com/collectiveidea/audited/pull/668) ## 5.3.2 (2023-02-22) From c61ec9c54d13eba60843c255615d982fde1053d2 Mon Sep 17 00:00:00 2001 From: Daniel Morrison Date: Mon, 24 Apr 2023 16:40:14 -0400 Subject: [PATCH 3/3] Update README.md Remove version number in install instructions. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b94f229..0274c4b6 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Audited is currently ActiveRecord-only. In a previous life, Audited worked with Add the gem to your Gemfile: ```ruby -gem "audited", "~> 5.3.3" +gem "audited" ``` And if you're using ```require: false``` you must add initializers like this: