aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-11-28 17:21:18 +0100
committerYves Senn <yves.senn@gmail.com>2013-11-28 17:24:15 +0100
commit7c6d99e81e05be57b884cbfed4e12986669bd5b4 (patch)
tree5c57f3b94be15c4b13565ccd02f961313dc913a2 /activerecord/CHANGELOG.md
parent8c944dea76cb24bc6d12a275f5afe548e65059a1 (diff)
downloadrails-7c6d99e81e05be57b884cbfed4e12986669bd5b4.tar.gz
rails-7c6d99e81e05be57b884cbfed4e12986669bd5b4.tar.bz2
rails-7c6d99e81e05be57b884cbfed4e12986669bd5b4.zip
first pass through CHANGELOGS to extract 4_1_release_notes. [ci skip]
Extract **notable changes**, **deprecations** and **removals** from each CHANGELOG. I tried to reference the commits and pull requests for new features and deprecations. In the process I also made some minor changes to the CHANGELOGS. The 4_1_release_notes guide is declared WIP.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 81e48862d4..104e8e3e40 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -23,7 +23,6 @@
*Brian Thomas Storti*
-
* Fix validation on uniqueness of empty association.
*Evgeny Li*
@@ -850,7 +849,7 @@
class Author < ActiveRecord::Base
has_many :posts
- has_many :taggings, :through => :posts
+ has_many :taggings, through: :posts
end
class Post < ActiveRecord::Base
@@ -865,7 +864,7 @@
class Author < ActiveRecord::Base
has_many :posts
- has_many :taggings, :through => :posts, :source => :tagging
+ has_many :taggings, through: :posts, source: :tagging
end
class Post < ActiveRecord::Base