File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33This file should follow the standards specified on [ http://keepachangelog.com/ ]
44This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
55
6+ ## [ 12.0.0.beta.7] (2026-03-19)
7+
8+ ### Fixed
9+ - Improved rollback handling in nested transactions to ensure the result of the block is returned even when a rollback is triggered.
10+
611## [ 12.0.0.beta.6] 2026-03-18
712
813## Added
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ If you are using RSpec you can perform tests in a transaction as you would using
8686 config.around do |example |
8787 ActiveGraph ::Base .transaction do |tx |
8888 example.run
89- tx.failure
89+ tx.rollback
9090 end
9191 end
9292
Original file line number Diff line number Diff line change 11module ActiveGraph
2- VERSION = '12.0.0.beta.6 '
2+ VERSION = '12.0.0.beta.7 '
33end
You can’t perform that action at this time.
0 commit comments