All Versions
73
Latest Version
Avg Release Cycle
62 days
Latest Release
351 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v2.1.4 Changes
January 22, 2019๐ Improvements:
- Avoid instantiating model class during
counter_culture
call (#246)
- Avoid instantiating model class during
-
v2.1.3 Changes
January 19, 2019๐ Bugfixes:
- Don't update running total on soft-deleted records (#244)
-
v2.1.2 Changes
December 07, 2018๐ Bugfixes:
- Properly handle
destroy
andreally_destroy
when using Paranoia (#239)
- Properly handle
-
v2.1.1 Changes
November 07, 2018๐ Bugfixes:
- Don't double-decrement when discarding and then hard-destroying a record (#237)
-
v2.1.0 Changes
October 19, 2018๐ Bugfixes:
- Fix behavior with Models that are part of a module (ex:
Users::Admin
) (#234)
- Fix behavior with Models that are part of a module (ex:
-
v2.0.1 Changes
August 21, 2018๐ Bugfixes:
- Properly set timestamps of PaperTrail versions (#224, #225, #226)
-
v2.0.0 Changes
June 12, 2018๐ฅ Breaking changes:
- execute_after_commit was removed
- Removed workaround for incorrect counts when triggering updates from an
after_create
hook. Your options if this applies to you:- continue using counter_culture 1.12.0
- upgrade to Rails 5.1.5 which fixes the underlying issue in Rails
- avoid triggering further updates on the same model in
after_create
; simply set the attribute inbefore_create
instead
๐ Bugfixes:
- Multiple updates in one transaction will now be processed correctly (#222)
-
v1.12.0 Changes
June 08, 2018๐ Improvements:
- Adds support for the Discard soft-delete gem (#220)
-
v1.11.0 Changes
May 04, 2018๐ Bugfixes:
- Fix
with_papertrail
behavior while still addressing the deprecation warning, and actually recording the correct counts (#218, see airblade/paper_trail#1076)
- Fix
-
v1.10.1 Changes
April 20, 2018๐ Improvements:
- Added the ability to update timestamps while fixing count by passing
touch: true
tocounter_culture_fix_counts
(#212)
- Added the ability to update timestamps while fixing count by passing