CHANGELOG.md in activesupport-7.2.0.beta3 vs CHANGELOG.md in activesupport-7.2.0.rc1
- old
+ new
@@ -1,4 +1,27 @@
+## Rails 7.2.0.rc1 (August 06, 2024) ##
+
+* Fix `delegate_missing_to allow_nil: true` when called with implict self
+
+ ```ruby
+ class Person
+ delegate_missing_to :address, allow_nil: true
+
+ def address
+ nil
+ end
+
+ def berliner?
+ city == "Berlin"
+ end
+ end
+
+ Person.new.city # => nil
+ Person.new.berliner? # undefined local variable or method `city' for an instance of Person (NameError)
+ ```
+
+ *Jean Boussier*
+
## Rails 7.2.0.beta3 (July 11, 2024) ##
* Add `logger` as a dependency since it is a bundled gem candidate for Ruby 3.5
*Earlopain*