Hi everyone,
http://dev.rubyonrails.org/changeset/9247 just broke some stuff in my application in a fun way. I believe it only affects this very specific edge case, though:
class Picture belongs_to :user end
class User has_many :pictures, :dependent => :destroy belongs_to :picture # this is the picture used as his avatar end
Thanks to [9247], things get caught up in an infinite loop.
I'm not familiar with Rails internals enough to have a go at fixing this, but thought you may want to know.
Cheers, Hendrik