CHANGELOG.md in acts_as_account-3.4.0 vs CHANGELOG.md in acts_as_account-3.4.1

- old
+ new

@@ -1,6 +1,15 @@ # Changes +## 2024-10-28 v3.4.1 + +* Improved account management features: + * Update `Journal.current.transfer` to return a boolean value indicating success. + * Modify `transfer()` method in `lib/acts_as_account/journal.rb` to + check the result of `postings.model.insert_all`. + * Validate the transfer result in `german_date_time_to_local` and `When /^I + transfer ...$` step definitions. + ## 2024-10-28 v3.4.0 * Improve Journaling for Transfer Operations: + Renamed `add_posting` to `build_posting` in `ActsAsAccount::Journal` + Replaced direct database insertion with two insert statements with a call to `model.insert_all` in `transfer` method