release notes: adds a couple of blank lines to get the markup right

This commit is contained in:
Xavier Noria 2011-08-31 01:52:43 -07:00
parent 73263f6c81
commit d7be97ec31
1 changed files with 2 additions and 0 deletions

View File

@ -346,6 +346,7 @@ has_many :things, :conditions => proc { "foo = #{bar}" } # after
Inside the proc, +self+ is the object which is the owner of the association, unless you are eager loading the association, in which case +self+ is the class which the association is within. Inside the proc, +self+ is the object which is the owner of the association, unless you are eager loading the association, in which case +self+ is the class which the association is within.
You can have any "normal" conditions inside the proc, so the following will work too: You can have any "normal" conditions inside the proc, so the following will work too:
<ruby> <ruby>
has_many :things, :conditions => proc { ["foo = ?", bar] } has_many :things, :conditions => proc { ["foo = ?", bar] }
</ruby> </ruby>
@ -353,6 +354,7 @@ has_many :things, :conditions => proc { ["foo = ?", bar] }
* Previously +:insert_sql+ and +:delete_sql+ on +has_and_belongs_to_many+ association allowed you to call 'record' to get the record being inserted or deleted. This is now passed as an argument to the proc. * Previously +:insert_sql+ and +:delete_sql+ on +has_and_belongs_to_many+ association allowed you to call 'record' to get the record being inserted or deleted. This is now passed as an argument to the proc.
* Added <tt>ActiveRecord::Base#has_secure_password</tt> (via <tt>ActiveModel::SecurePassword</tt>) to encapsulate dead-simple password usage with BCrypt encryption and salting. * Added <tt>ActiveRecord::Base#has_secure_password</tt> (via <tt>ActiveModel::SecurePassword</tt>) to encapsulate dead-simple password usage with BCrypt encryption and salting.
<ruby> <ruby>
# Schema: User(name:string, password_digest:string, password_salt:string) # Schema: User(name:string, password_digest:string, password_salt:string)
class User < ActiveRecord::Base class User < ActiveRecord::Base