| Commit message (Expand) | Author | Age | Files | Lines |
... | |
| * | | Add DatabaseConfig Struct and associated methods | eileencodes | 2018-03-21 | 1 | -0/+39 |
| |/ |
|
* | | Merge pull request #32306 from danhuynhdev/feature/store-accessor-prefix | Andrew White | 2018-03-24 | 5 | -6/+50 |
|\ \ |
|
| * | | Add custom prefix to ActiveRecord::Store accessors | Tan Huynh | 2018-03-23 | 5 | -6/+50 |
* | | | Fix that `touch(:updated_at)` causes multiple assignments on the column | Ryuta Kamizono | 2018-03-23 | 2 | -1/+11 |
|/ / |
|
* | | Add `QueryingMethodsDelegationTest` to cover query methods delegation | Ryuta Kamizono | 2018-03-22 | 1 | -0/+28 |
* | | Merge pull request #32221 from composerinteralia/batch-predicate-builder | Ryuta Kamizono | 2018-03-22 | 1 | -10/+16 |
|\ \ |
|
| * | | Use PredicateBuilder for bind params in Batches | Daniel Colson | 2018-03-11 | 1 | -10/+16 |
* | | | Support mysql2 0.4.x and 0.5.x | Aaron Stone | 2018-03-20 | 1 | -1/+1 |
| |/
|/| |
|
* | | Merge pull request #32278 from saveriomiroddi/add_mysql_json_to_activerecord_... | Eileen M. Uchitelle | 2018-03-19 | 1 | -2/+2 |
|\ \ |
|
| * | | Add MySQL JSON reference to ActiveRecord::Store documentation | Saverio Miroddi | 2018-03-17 | 1 | -2/+2 |
* | | | Fix failing `QuotingTest#test_quoted_time_utc` | bogdanvlviv | 2018-03-19 | 1 | -2/+2 |
|/ / |
|
* | | Merge pull request #32271 from eileencodes/fix-three-tier-default-connection | Eileen M. Uchitelle | 2018-03-16 | 3 | -1/+52 |
|\ \ |
|
| * | | Fix connection handling with three-tier config | eileencodes | 2018-03-16 | 3 | -1/+52 |
| |/ |
|
* | | :scissors: | Rafael Mendonça França | 2018-03-16 | 1 | -1/+0 |
* | | Fix multiline expression indexes for postgresql (#31621) | fatkodima | 2018-03-16 | 3 | -3/+3 |
* | | Merge pull request #31250 from lsylvester/only-preload-misses-on-multifetch-c... | Kasper Timm Hansen | 2018-03-15 | 5 | -9/+66 |
|\ \ |
|
| * | | Only preload misses on multifetch cache | Lachlan Sylvester | 2018-03-06 | 5 | -9/+66 |
* | | | Merge pull request #32220 from rails/fix-time-columns-on-sqlite3 | Andrew White | 2018-03-15 | 6 | -5/+81 |
|\ \ \ |
|
| * | | | Ensure that leading date is stripped by quoted_time | Andrew White | 2018-03-11 | 2 | -4/+37 |
| * | | | Normalize date component when writing to time columns | Andrew White | 2018-03-11 | 2 | -1/+8 |
| * | | | Apply time column precision on assignment | Andrew White | 2018-03-11 | 2 | -0/+36 |
| | |/
| |/| |
|
* / | | Remove changelog header for unreleased version | Rafael Mendonça França | 2018-03-13 | 1 | -2/+0 |
|/ / |
|
* | | Merge pull request #32213 from yujideveloper/feature/delegate-ar-base-pick-to... | Ryuta Kamizono | 2018-03-09 | 2 | -1/+6 |
|\ \ |
|
| * | | Add `delegate :pick, to: :all` | Yuji Hanamura | 2018-03-09 | 2 | -1/+6 |
|/ / |
|
* | | Revert "PERF: Recover `changes_applied` performance (#31698)" | Sean Griffin | 2018-03-06 | 2 | -2/+5 |
* | | Fix dependence on has_one/belongs_to relationships | Fernando Gorodscy | 2018-03-06 | 4 | -1/+58 |
|/ |
|
* | update comment to reflect new supported patterns [ci skip] | Xavier Noria | 2018-03-06 | 1 | -0/+4 |
* | whitelist NULLS { FIRST | LAST } in order clauses | Xavier Noria | 2018-03-06 | 2 | -1/+28 |
* | Fix that after commit callbacks on update does not triggered when optimistic ... | Ryuta Kamizono | 2018-03-06 | 3 | -53/+42 |
* | Introduce `_update_row` to decouple optimistic locking concern from `Persiste... | Ryuta Kamizono | 2018-03-05 | 2 | -28/+45 |
* | Introduce `_delete_record` and use it for deleting a record | Ryuta Kamizono | 2018-03-05 | 2 | -21/+23 |
* | Prefer `_update_record` than `update_all` for updating a record | Ryuta Kamizono | 2018-03-05 | 2 | -28/+35 |
* | Refactor `_substitute_values` to be passed attribute names and values | Ryuta Kamizono | 2018-03-05 | 3 | -23/+15 |
* | `id_in_database` should be respected as primary key value for persisted records | Ryuta Kamizono | 2018-03-05 | 3 | -2/+41 |
* | Merge pull request #32165 from bogdanvlviv/fix-occurrences-Fixnum-Bignum | Ryuta Kamizono | 2018-03-05 | 4 | -16/+8 |
|\ |
|
| * | Fix occurrences Fixnum|Bignum | bogdanvlviv | 2018-03-04 | 4 | -16/+8 |
* | | `id_in_database` do not return nil value for persisted record | Ryuta Kamizono | 2018-03-04 | 2 | -4/+4 |
|/ |
|
* | Eager loading with polymorphic associations should behave consistently | Ryuta Kamizono | 2018-03-04 | 3 | -9/+9 |
* | Extract all `base_class.name` as `polymorphic_name` | Ryuta Kamizono | 2018-03-04 | 8 | -23/+43 |
* | Deprecate `active_support/core_ext/hash/compact` | yuuji.yaginuma | 2018-03-02 | 1 | -2/+0 |
* | Remove unnecessary `respond_to?(:report_on_exception)` checking | yuuji.yaginuma | 2018-03-02 | 3 | -6/+6 |
* | Ruby 2.4: take advantage of String#unpack1 | Jeremy Daer | 2018-03-01 | 2 | -2/+2 |
* | PostgreSQL adapter also supports bulk alter since #31331 [ci skip] | yuuji.yaginuma | 2018-03-02 | 1 | -1/+1 |
* | Remove staled comment for `JoinDependency#initialize` | Ryuta Kamizono | 2018-03-02 | 1 | -21/+0 |
* | Don't expose `verbose?` helper method | Ryuta Kamizono | 2018-03-02 | 1 | -6/+4 |
* | Use `delegate private: true` for `SchemaCreation` | Ryuta Kamizono | 2018-03-02 | 2 | -5/+3 |
* | Remove CHANGELOG entries which were backported to 5-2-stable | Ryuta Kamizono | 2018-02-28 | 1 | -14/+0 |
* | Alias `assign_attributes` to `attributes=` for `AttributeAssignment` | Ryuta Kamizono | 2018-02-28 | 1 | -5/+0 |
* | Don't include unused `ActiveSupport::Concern` | Ryuta Kamizono | 2018-02-28 | 1 | -1/+0 |
* | Fix a typo in activerecord/CHANGELOG.md | okkez | 2018-02-28 | 1 | -1/+1 |