aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
...
| * | | Use public_send instead since respond_to? doesn't include private/protected m...Ryuta Kamizono2019-01-171-1/+1
| * | | Avoid using yield_self to make it easier to backportDylan Thacker-Smith2019-01-171-5/+4
| * | | activerecord: Use a simpler query condition for aggregates with one mappingDylan Thacker-Smith2019-01-172-8/+14
| |/ /
* | | Merge pull request #34966 from bogdanvlviv/ensure-ar-relation-exists-allows-p...Rafael Mendonça França2019-01-173-4/+14
|\ \ \
| * | | Ensure that AR::Relation#exists? allows only permitted paramsbogdanvlviv2019-01-173-7/+17
| |/ /
* | | Remove deprecated `#set_state` from the transaction objectRafael Mendonça França2019-01-173-29/+4
* | | Remove deprecated `#supports_statement_cache?` from the database adaptersRafael Mendonça França2019-01-173-11/+4
* | | Remove deprecated `#insert_fixtures` from the database adaptersRafael Mendonça França2019-01-175-43/+5
* | | Remove deprecated `ActiveRecord::ConnectionAdapters::SQLite3Adapter#valid_alt...Rafael Mendonça França2019-01-173-9/+4
* | | Do not allow passing the column name to `sum` when a block is passedRafael Mendonça França2019-01-173-9/+11
* | | Do not allow passing the column name to `count` when a block is passedRafael Mendonça França2019-01-173-9/+11
* | | Remove delegation of missing methods in a relation to arelRafael Mendonça França2019-01-173-20/+4
* | | Remove delegation of missing methods in a relation to private methods of the ...Rafael Mendonça França2019-01-173-12/+4
* | | Change `SQLite3Adapter` to always represent boolean values as integersRafael Mendonça França2019-01-175-63/+33
* | | Remove ability to specify a timestamp name for `#cache_key`Rafael Mendonça França2019-01-174-31/+10
* | | Remove deprecated `ActiveRecord::Migrator.migrations_path=`Rafael Mendonça França2019-01-173-17/+4
* | | Remove deprecated `expand_hash_conditions_for_aggregates`Rafael Mendonça França2019-01-173-46/+7
|/ /
* | Add foreign key to active_storage_attachments for `blob_id` via new migrationbogdanvlviv2019-01-161-0/+4
* | Refs #28025 nullify *_type column on polymorphic associations on :nu… (#28...Laerti2019-01-159-4/+63
* | Remove public `prevent_writes` writerRyuta Kamizono2019-01-151-5/+5
* | Deprecate `connection.visitor = ...` which is not released internal usageRyuta Kamizono2019-01-151-2/+6
* | Remove unused `Arel::Compatibility::Wheres`Ryuta Kamizono2019-01-152-36/+0
* | Merge pull request #34891 from gmcgibbon/ac_params_existsRafael França2019-01-144-0/+31
|\ \
| * \ Merge branch 'master' into ac_params_existsAaron Patterson2019-01-1124-96/+111
| |\ \
| * | | Allow strong params in ActiveRecord::Base#exists?Gannon McGibbon2019-01-074-0/+30
* | | | More exercise test cases for `not_between`Ryuta Kamizono2019-01-122-31/+84
| |/ / |/| |
* | | Merge pull request #34906 from gregnavis/add-endless-ranges-to-activerecordAaron Patterson2019-01-113-2/+18
|\ \ \
| * | | Support endless ranges in whereGreg Navis2019-01-113-2/+18
* | | | Remove `id_value` argument which is no longer passed to `sql_for_insert`Ryuta Kamizono2019-01-112-3/+3
* | | | Fix `test_case_insensitiveness` to follow up eb5fef5Ryuta Kamizono2019-01-111-9/+8
* | | | Refactor `bind_attribute` to expand an association to actual attributeRyuta Kamizono2019-01-112-5/+5
* | | | Refactor `build_relation` in the uniqueness validator to avoid low level pred...Ryuta Kamizono2019-01-113-27/+29
* | | | Merge pull request #34900 from gmcgibbon/fix_test_find_only_some_columnsEileen M. Uchitelle2019-01-091-2/+11
|\ \ \ \ | |/ / / |/| | |
| * | | Reset column info on original Topic in serialized attr testGannon McGibbon2019-01-091-2/+11
* | | | Enable `Lint/UselessAssignment` cop to avoid unused variable warnings (#34904)Ryuta Kamizono2019-01-098-12/+11
* | | | Revert "Revert "Merge pull request #34387 from yhirano55/rails_info_propertie...Kasper Timm Hansen2019-01-081-0/+3
* | | | Revert "Merge pull request #34387 from yhirano55/rails_info_properties_json"Kasper Timm Hansen2019-01-081-3/+0
|/ / /
* | | Consolidate the duplicated code that building range predicateRyuta Kamizono2019-01-085-36/+21
* | | :recycle: Fix mysql type map for enum and setbannzai2019-01-082-2/+6
|/ /
* | Merge pull request #34773 from eileencodes/share-fixture-connections-with-mul...Eileen M. Uchitelle2019-01-042-0/+57
|\ \
| * | Share the connection pool when there are multiple handlersEileen Uchitelle2019-01-032-0/+57
* | | Merge pull request #34858 from albertoalmagro/make-rails-compatible-accross-r...Ryuta Kamizono2019-01-042-7/+3
|\ \ \
| * | | Make average compatible accross Ruby versionsAlberto Almagro2019-01-041-1/+1
| * | | Revert "Fix NumericData.average test on ruby 2.6"Alberto Almagro2019-01-041-6/+2
* | | | Merge the redundant `when Symbol` case to the `when String, ...`Ryuta Kamizono2019-01-041-2/+1
* | | | 2x faster `connection.type_cast`Ryuta Kamizono2019-01-041-6/+1
|/ / /
* | | Merge pull request #33985 from eugeneius/attribute_methods_schema_cacheKasper Timm Hansen2019-01-036-1/+46
|\ \ \
| * | | Only define attribute methods from schema cacheEugene Kenny2018-09-286-1/+46
* | | | fix activerecord reaper_testVladimir Dementyev2019-01-021-1/+1
* | | | Merge pull request #34836 from kamipo/class_level_update_without_idsRyuta Kamizono2019-01-022-1/+17
|\ \ \ \ | |_|/ / |/| | |