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
/
relation
Commit message (
Expand
)
Author
Age
Files
Lines
*
Update docs `ActiveRecord::FinderMethods#find`
suginoy
2017-11-28
1
-3
/
+4
*
Provide arguments to RecordNotFound
Nikita Misharin
2017-11-25
1
-5
/
+9
*
Update `exists?` documentation
Nikolai B
2017-11-14
1
-1
/
+2
*
Merge pull request #27947 from mastahyeti/unsafe_raw_sql
Matthew Draper
2017-11-14
2
-1
/
+14
|
\
|
*
push order arg checks down to allow for binds
Ben Toews
2017-11-09
1
-27
/
+6
|
*
deal with Array arguments to #order
Ben Toews
2017-11-09
1
-1
/
+13
|
*
convert order arg to string before checking if we can reverse it
Ben Toews
2017-11-09
1
-0
/
+4
|
*
use << instead of #concat in #reverse_sql_order because we might be working w...
Ben Toews
2017-11-09
1
-1
/
+1
|
*
try using regexes
Ben Toews
2017-11-09
2
-28
/
+5
|
*
allow table name and direction in string order arg
Ben Toews
2017-11-09
2
-25
/
+32
|
*
call enforce_raw_sql_whitelist on @klass so it works with FakeKlass
Ben Toews
2017-11-09
1
-2
/
+2
|
*
work with actual string when reversing order
Ben Toews
2017-11-09
1
-0
/
+3
|
*
allow Arel.sql() for pluck
Ben Toews
2017-11-09
2
-53
/
+21
|
*
add config to check arguments to unsafe AR methods
Ben Toews
2017-11-09
2
-14
/
+77
*
|
Merge pull request #30980 from sobrinho/sobrinho/arel-star-ignored-columns
Rafael França
2017-11-13
1
-0
/
+2
|
\
\
|
*
|
Do not use `Arel.star` when `ignored_columns`
Jon Moss
2017-11-13
1
-0
/
+2
*
|
|
Relation merging should keep joining order
Ryuta Kamizono
2017-11-11
1
-10
/
+8
*
|
|
Consolidate duplicated `to_ary`/`to_a` definitions in `Relation` and `Collect...
Ryuta Kamizono
2017-11-10
1
-1
/
+1
*
|
|
Ensure `apply_join_dependency` for subqueries in `from` and `where`
Ryuta Kamizono
2017-11-10
2
-0
/
+7
*
|
|
Move Attribute and AttributeSet to ActiveModel
Lisa Ugray
2017-11-09
2
-4
/
+4
|
|
/
|
/
|
*
|
Ensure `apply_join_dependency` for `collection_cache_key` if eager-loading is...
Ryuta Kamizono
2017-11-06
2
-3
/
+3
|
/
*
Fix duplicate aliases when using both INNER/LEFT JOINs
Ryuta Kamizono
2017-10-23
1
-3
/
+4
*
[Active Record] require => require_relative
Akira Matsuda
2017-10-21
5
-15
/
+15
*
Fix `COUNT(DISTINCT ...)` for `GROUP BY` with `ORDER BY` and `LIMIT`
Ryuta Kamizono
2017-10-14
1
-1
/
+1
*
Joined tables in association scope doesn't use the same aliases with the pare...
Ryuta Kamizono
2017-10-09
1
-11
/
+11
*
Remove meaningless named `construct_relation_for_association_calculations`
Ryuta Kamizono
2017-10-09
2
-6
/
+3
*
Fix `relation.exists?` with has_many through associations
Ryuta Kamizono
2017-10-09
1
-4
/
+4
*
Remove passing redundant `self` to internal `apply_join_dependency` etc
Ryuta Kamizono
2017-10-09
1
-13
/
+12
*
Decouple building `AliasTracker` from `JoinDependency`
Ryuta Kamizono
2017-10-08
3
-3
/
+5
*
Use __callee__ to pass alias instead of original method name
meganemura
2017-10-05
1
-1
/
+1
*
Treat `Set` as an `Array` in `Relation#where`
Sean Griffin
2017-09-26
1
-0
/
+1
*
Ensure `1 AS one` for SQL Server with calculations.
Ken Collins
2017-09-22
1
-1
/
+1
*
Remove unused explicit delegation to `klass` in `relation`
Ryuta Kamizono
2017-09-14
1
-2
/
+1
*
Don't use `quoted_table_name` in `limited_ids_for`
Ryuta Kamizono
2017-09-14
1
-1
/
+3
*
`quoted_table_name` doesn't respect table alias
Ryuta Kamizono
2017-09-14
1
-1
/
+1
*
Make `in_batches` queries to preparable
Ryuta Kamizono
2017-09-14
1
-3
/
+10
*
PERF: Recover `ActiveRecord::pluck` performance.
Guo Xiang Tan
2017-09-06
1
-14
/
+17
*
Merge pull request #30377 from keepcosmos/delegate-missing-methods
Matthew Draper
2017-08-31
1
-2
/
+2
|
\
|
*
Delegate :rindex, :slice, :rotate to 'records'
keepcosmos
2017-08-24
1
-2
/
+2
*
|
Should be appear deprecation message for every call (#29649)
Ryuta Kamizono
2017-08-27
1
-8
/
+0
*
|
Should work inverse association when eager loading
Ryuta Kamizono
2017-08-25
1
-10
/
+1
|
/
*
Merge pull request #30169 from awortham/awortham/awortham/fix-sql-distinct-bug
Rafael Mendonça França
2017-08-14
1
-0
/
+3
|
\
|
*
Ensure sum honors distinct on has_many through
Aaron Wortham
2017-08-14
1
-0
/
+3
*
|
Completes ActiveRecord::Batches.find_each example [ci skip]
Marc Rendl Ignacio
2017-08-13
1
-1
/
+6
|
/
*
Merge pull request #30126 from chopraanmol1/support_for_has_many_and_has_one_...
Rafael França
2017-08-11
1
-2
/
+2
|
\
|
*
Changed join_fk private method to join_foreign_key public method
chopraanmol1
2017-08-09
1
-1
/
+1
|
*
Currently if relation object are passed to where condition for has one or has...
chopraanmol1
2017-08-08
1
-2
/
+2
*
|
Merge pull request #29720 from gaurish/ar_find_error_message_improvement
Rafael França
2017-08-11
1
-3
/
+3
|
\
\
|
|
/
|
/
|
|
*
Return Not found Ids in ActiveRecord::NotFound
Gaurish Sharma
2017-07-29
1
-3
/
+3
*
|
Merge pull request #29914 from kamipo/relation_merger_should_not_fill_empty_v...
Matthew Draper
2017-08-02
2
-19
/
+22
|
\
\
[next]