index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
lib
/
active_record
/
associations
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove deprecated find_first and find_all.
Jeremy Kemper
2007-06-11
1
-19
/
+0
*
Remove deprecated push_with_attributes.
Jeremy Kemper
2007-06-11
1
-22
/
+5
*
with_scope is protected. Closes #8524.
Jeremy Kemper
2007-05-30
3
-7
/
+7
*
Sanitize Base#inspect. Closes #8392.
Jeremy Kemper
2007-05-18
1
-1
/
+2
*
Improve Performance of calling create on has_many :through associations by av...
Michael Koziarski
2007-04-26
1
-7
/
+5
*
Allow a polymorphic :source for has_many :through associations. Closes #7143...
Rick Olson
2007-03-13
1
-1
/
+11
*
Fix has_many :through << with custom foreign keys. Closes #6466, #7153.
Jeremy Kemper
2007-03-05
1
-1
/
+1
*
Aggregate reflection klass works with nested :class_name
Jeremy Kemper
2007-01-14
1
-1
/
+1
*
dry up some duplicated code
Jamis Buck
2007-01-11
1
-37
/
+21
*
treat create! like create and make sure the target is loaded first
Jamis Buck
2007-01-11
1
-0
/
+1
*
fix regression in has_one#create, that caused instances thus created to be or...
Jamis Buck
2007-01-11
1
-0
/
+4
*
Pushing a record on an association collection doesn't unnecessarily load all ...
Jeremy Kemper
2006-12-21
1
-4
/
+3
*
Remove side effects of [5684]
Tobias Lütke
2006-12-08
2
-4
/
+4
*
Consolidated different create and create! versions to call through to the bas...
Tobias Lütke
2006-12-06
2
-20
/
+42
*
AssociationCollection#any? takes a block [Michael Schoen]
Jeremy Kemper
2006-12-05
1
-3
/
+7
*
Add AssociationCollection#create! to be consistent with AssociationCollection...
Tobias Lütke
2006-12-05
1
-8
/
+15
*
Added counter optimization for AssociationCollection#any? so person.friends.a...
David Heinemeier Hansson
2006-12-05
1
-0
/
+4
*
Simplify association proxy implementation by factoring construct_scope out of...
Jeremy Kemper
2006-11-19
3
-30
/
+23
*
Don't inspect unloaded associations. Closes #2905.
Jeremy Kemper
2006-11-10
1
-0
/
+4
*
update deprecations to include alternative methods (where available)
Jamis Buck
2006-10-24
2
-3
/
+3
*
Fix has_many :through to add the appropriate conditions when going through an...
Rick Olson
2006-10-16
1
-2
/
+3
*
Add #delete support to has_many :through associations. Closes #6049 [Martin ...
Rick Olson
2006-10-09
1
-0
/
+18
*
Removes the ability for eager loaded conditions to be interpolated, since the...
Rick Olson
2006-10-09
1
-1
/
+1
*
The has_many create method works with polymorphic associations. Closes #6361.
Jeremy Kemper
2006-10-08
1
-4
/
+5
*
Deprecation: count class method should be called with an options hash rather ...
Jeremy Kemper
2006-09-26
1
-1
/
+1
*
has_one associations with a nil target may be safely marshaled. Closes #6279.
Jeremy Kemper
2006-09-26
1
-0
/
+2
*
Deprecation tests. Remove warnings for dynamic finders and for the foo_count ...
Jeremy Kemper
2006-09-15
1
-0
/
+2
*
Backed out of new_record? to new? transformation as it would screw up existin...
David Heinemeier Hansson
2006-09-05
8
-26
/
+26
*
Deprecated ActiveRecord::Base.new_record? in favor of ActiveRecord::Base.new?...
David Heinemeier Hansson
2006-09-05
8
-26
/
+26
*
Rename quote to quote_value so the name can be used in AR models. #3628 [Koz]
Michael Koziarski
2006-09-04
4
-5
/
+5
*
has_many :through conditions are sanitized by the associating class. Closes #...
Jeremy Kemper
2006-09-01
2
-3
/
+3
*
Pushing a record onto a has_many :through sets the association's foreign key ...
Jeremy Kemper
2006-08-20
1
-1
/
+2
*
unbraindeadify addition to has_many :through
Jeremy Kemper
2006-08-19
3
-9
/
+17
*
Pushing a record onto a has_many :through sets the association's foreign key ...
Jeremy Kemper
2006-08-19
1
-5
/
+13
*
Add records to has_many :through using <<, push, and concat by creating the a...
Jeremy Kemper
2006-08-18
1
-29
/
+69
*
Fixed a bug which would cause .save to fail after trying to access a empty ha...
Tobias Lütke
2006-08-16
1
-10
/
+9
*
Cache nil results for has_one associations so multiple calls don't call the d...
Rick Olson
2006-08-08
1
-2
/
+2
*
Formally deprecate rich associations. [Koz]
Michael Koziarski
2006-08-05
1
-1
/
+4
*
Calculate sum with SQL, not Enumerable on HasManyThrough Associations. [Dan P...
Rick Olson
2006-07-31
1
-1
/
+6
*
Allow #count through a has_many association to accept :include. [Dan Peterson]
Rick Olson
2006-07-24
1
-0
/
+1
*
fix association exception messages, fix them so the error messages actually d...
Rick Olson
2006-07-20
1
-1
/
+1
*
Add AssociationCollection#sum since the method_missing invokation has been sh...
Nicholas Seckar
2006-06-25
1
-0
/
+5
*
Fixed that has_many.create ended up with duplicate objects (closes #5250) [da...
David Heinemeier Hansson
2006-06-03
1
-1
/
+1
*
delegate AssociationProxy#to_param to the association target so that associat...
Rick Olson
2006-06-01
1
-1
/
+2
*
Fix the has_and_belongs_to_many #create doesn't populate the join for new rec...
Rick Olson
2006-05-29
1
-0
/
+11
*
Provide Association Extensions access to the instance that the association is...
Rick Olson
2006-05-28
1
-1
/
+13
*
Minor style tweaks
David Heinemeier Hansson
2006-05-21
2
-8
/
+4
*
Fixed that has_many collections shouldn't load the entire association to do b...
David Heinemeier Hansson
2006-05-21
2
-3
/
+35
*
uniq preserves order. References [4325].
Jeremy Kemper
2006-05-07
1
-1
/
+8
*
Allow :uniq => true with has_many :through associations.
Jeremy Kemper
2006-05-06
4
-36
/
+32
[next]