aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorBogdan Gusiev <agresso@gmail.com>2014-05-05 10:48:59 +0300
committerBogdan Gusiev <agresso@gmail.com>2014-05-05 16:45:16 +0300
commit7e20bdc20dd91e1195086a5f54178a01b74ebb31 (patch)
tree2cbd6950a407332e15006e009b3fd5de36b93ce9 /activerecord/CHANGELOG.md
parentf2003834c85db173ea436273b63315543b82f896 (diff)
downloadrails-7e20bdc20dd91e1195086a5f54178a01b74ebb31.tar.gz
rails-7e20bdc20dd91e1195086a5f54178a01b74ebb31.tar.bz2
rails-7e20bdc20dd91e1195086a5f54178a01b74ebb31.zip
Put back Relation#join method as a delegate to Array
This is a regression 4.0 -> 4.1 fix. In 4.1.0 Relation#join is delegated to Arel#SelectManager. In 4.0 series it is delegated to Array#join This patch puts back the behaviour of 4.0
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index e51b5b44cc..f78b68a4f3 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Revert the behaviour of AR::Relation#join changed through 4.0 => 4.1 to 4.0
+
+ In 4.1.0 Relation#join is delegated to Arel#SelectManager.
+ In 4.0 series it is delegated to Array#join
+
+ *Bogdan Gusiev*
+
* Log nil binary column values correctly.
When an object with a binary column is updated with a nil value