0
* Enhance explanation with more examples for attr_accessible macro. Closes #8095 [fearoffish, Marcel Molina]
0
-* Update association/method mapping table to refected latest collection methods for has_many :through. Closes #8772 [
lifofifo]
0
+* Update association/method mapping table to refected latest collection methods for has_many :through. Closes #8772 [
Pratik Naik]
0
* Explain semantics of having several different AR instances in a transaction block. Closes #9036 [jacobat, Marcel Molina]
0
# Find posts with a high-rated comment.
0
Post.find(:all, :joins => :comments, :conditions => 'comments.rating > 3')
0
-* Associations: speedup duplicate record check. #10011 [
lifofifo]
0
+* Associations: speedup duplicate record check. #10011 [
Pratik Naik]
0
* Make sure that << works on has_many associations on unsaved records. Closes #9989 [hasmanyjosh]
0
* Fix regression where the association would not construct new finder SQL on save causing bogus queries for "WHERE owner_id = NULL" even after owner was saved. #8713 [Bryan Helmkamp]
0
-* Refactor association create and build so before & after callbacks behave consistently. #8854 [
lifofifo, mortent]
0
+* Refactor association create and build so before & after callbacks behave consistently. #8854 [
Pratik Naik, mortent]
0
* Quote table names. Defaults to column quoting. #4593 [Justin Lynn, gwcoffey, eadz, Dmitry V. Sabanin, Jeremy Kemper]
0
-* Alias association #build to #new so it behaves predictably. #8787 [
lifofifo]
0
+* Alias association #build to #new so it behaves predictably. #8787 [
Pratik Naik]
0
* Add notes to documentation regarding attr_readonly behavior with counter caches and polymorphic associations. Closes #9835 [saimonmoore, rick]
0
@@ -210,9 +210,9 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
0
* OpenBase: update for new lib and latest Rails. Support migrations. #8748 [dcsesq]
0
-* Moved acts_as_tree into a plugin of the same name on the official Rails svn
#9514 [lifofifo]
0
+* Moved acts_as_tree into a plugin of the same name on the official Rails svn
. #9514 [Pratik Naik]
0
-* Moved acts_as_nested_set into a plugin of the same name on the official Rails svn
#9516 [josh]
0
+* Moved acts_as_nested_set into a plugin of the same name on the official Rails svn
. #9516 [Josh Peek]
0
* Moved acts_as_list into a plugin of the same name on the official Rails svn [josh]
0
@@ -240,7 +240,7 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
0
* Perform a deep #dup on query cache results so that modifying activerecord attributes does not modify the cached attributes. [Rick]
0
-# Ensure that has_many :through associations use a count query instead of loading the target when #size is called. Closes #8800 [
lifo]
0
+# Ensure that has_many :through associations use a count query instead of loading the target when #size is called. Closes #8800 [
Pratik Naik]
0
* Added :unless clause to validations #8003 [monki]. Example:
0
@@ -252,11 +252,11 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
0
validates_presence_of :username, :unless => using_open_id?
0
validates_presence_of :password, :unless => using_open_id?
0
-* Fix #count on a has_many :through association so that it recognizes the :uniq option. Closes #8801 [
lifofifo]
0
+* Fix #count on a has_many :through association so that it recognizes the :uniq option. Closes #8801 [
Pratik Naik]
0
-* Fix and properly document/test count(column_name) usage. Closes #8999 [
lifofifo]
0
+* Fix and properly document/test count(column_name) usage. Closes #8999 [
Pratik Naik]
0
-* Remove deprecated count(conditions=nil, joins=nil) usage. Closes #8993 [
lifofifo]
0
+* Remove deprecated count(conditions=nil, joins=nil) usage. Closes #8993 [
Pratik Naik]
0
* Change belongs_to so that the foreign_key assumption is taken from the association name, not the class name. Closes #8992 [hasmanyjosh]
0
@@ -266,21 +266,21 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
0
belongs_to :visitor, :class_name => 'User' # => inferred foreign_key is visitor_id
0
-* Remove spurious tests from deprecated_associations_test, most of these aren't deprecated, and are duplicated in associations_test. Closes #8987 [
lifofifo]
0
+* Remove spurious tests from deprecated_associations_test, most of these aren't deprecated, and are duplicated in associations_test. Closes #8987 [
Pratik Naik]
0
-* Make create! on a has_many :through association return the association object. Not the collection. Closes #8786 [
lifofifo]
0
+* Make create! on a has_many :through association return the association object. Not the collection. Closes #8786 [
Pratik Naik]
0
* Move from select * to select tablename.* to avoid clobbering IDs. Closes #8889 [dasil003]
0
* Don't call unsupported methods on associated objects when using :include, :method with to_xml #7307, [manfred, jwilger]
0
-* Define collection singular ids method for has_many :through associations. #8763 [
lifofifo]
0
+* Define collection singular ids method for has_many :through associations. #8763 [
Pratik Naik]
0
* Array attribute conditions work with proxied association collections. #8318 [kamal, theamazingrando]
0
-* Fix polymorphic has_one associations declared in an abstract class. #8638 [
lifofifo, daxhuiberts]
0
+* Fix polymorphic has_one associations declared in an abstract class. #8638 [
Pratik Naik, Dax Huiberts]
0
-* Fixed validates_associated should not stop on the first error
#4276 [mrj/manfred/josh]
0
+* Fixed validates_associated should not stop on the first error
. #4276 [mrj, Manfred Stienstra, Josh Peek]
0
* Rollback if commit raises an exception. #8642 [kik, Jeremy Kemper]