Skip to content

Commit f952b9f

Browse files
committed
updated changelog and version for 12.0.0.beta.7 release, improved rollback handling in transactions
1 parent 3b96137 commit f952b9f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33
This file should follow the standards specified on [http://keepachangelog.com/]
44
This 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

docs/Testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

lib/active_graph/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ActiveGraph
2-
VERSION = '12.0.0.beta.6'
2+
VERSION = '12.0.0.beta.7'
33
end

0 commit comments

Comments
 (0)