Rails 7.2.3 (October 28, 2025)¶ ↑
-
Fixed compatibility with
redisgem5.4.1Jean Boussier
-
Fixed a possible race condition in
stream_from.OuYangJinTing
-
Ensure the Postgresql adapter always use a dedicated connection even during system tests.
Fix an issue with the Action Cable Postgresql adapter causing deadlock or various weird pg client error during system tests.
Jean Boussier
Rails 7.2.2.2 (August 13, 2025)¶ ↑
-
No changes.
Rails 7.2.2.1 (December 10, 2024)¶ ↑
-
No changes.
Rails 7.2.2 (October 30, 2024)¶ ↑
-
No changes.
Rails 7.2.1.2 (October 23, 2024)¶ ↑
-
No changes.
Rails 7.2.1.1 (October 15, 2024)¶ ↑
-
No changes.
Rails 7.2.1 (August 22, 2024)¶ ↑
-
No changes.
Rails 7.2.0 (August 09, 2024)¶ ↑
-
Bring
ActionCable::Connection::TestCookieJarin alignment withActionDispatch::Cookies::CookieJarin regards to setting the cookie value.Before:
cookies[:foo] = { value: "bar" } puts cookies[:foo] # => { value: "bar" }
After:
cookies[:foo] = { value: "bar" } puts cookies[:foo] # => "bar"
Justin Ko
-
Record ping on every Action Cable message.
Previously only
pingandwelcomemessage types were keeping the connection active. Now every Action Cable message updates thepingedAtvalue, preventing the connection from being marked as stale.yauhenininjia
-
Add two new assertion methods for Action Cable test cases:
assert_has_no_streamandassert_has_no_stream_for.These methods can be used to assert that a stream has been stopped, e.g. via
stop_streamorstop_stream_for. They complement the already existingassert_has_streamandassert_has_stream_formethods.assert_has_no_stream "messages" assert_has_no_stream_for User.find(42)
Sebastian Pöll, Junichi Sato
Please check 7-1-stable for previous changes.