aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorAlexey Muranov <alexey.muranov@gmail.com>2012-05-12 13:17:32 +0200
committerAlexey Muranov <alexey.muranov@gmail.com>2012-10-07 20:43:18 +0200
commitbf4d6a235367a4704fd341711806c170aa234f80 (patch)
treee2332c5a0203b0f79849fb8c1593bb60f6546e23 /activerecord/CHANGELOG.md
parentc9ccef554cb5f28d4c4b8d1eb8f5b4de6e25f341 (diff)
downloadrails-bf4d6a235367a4704fd341711806c170aa234f80.tar.gz
rails-bf4d6a235367a4704fd341711806c170aa234f80.tar.bz2
rails-bf4d6a235367a4704fd341711806c170aa234f80.zip
Add CHANGELOG entry for "Fixtures" -> "FixtureSet"
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md14
1 files changed, 13 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index ba292e7f0e..9abfe2e6fd 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,17 @@
## Rails 4.0.0 (unreleased) ##
+* Rename `ActiveRecord::Fixtures` class to `ActiveRecord::FixtureSet`.
+ Instances of this class normally hold a collection of fixtures (records)
+ loaded either from a single YAML file, or from a file and a folder
+ with the same name. This change make the class name singular and makes
+ the class easier to distinguish from the modules like
+ `ActiveRecord::TestFixtures`, which operates on multiple fixture sets,
+ or `DelegatingFixtures`, `::Fixtures`, etc.,
+ and from the class `ActiveRecord::Fixture`, which corresponds to a single
+ fixture.
+
+ *Alexey Muranov*
+
* The postgres adapter now supports tables with capital letters.
Fix #5920
@@ -635,7 +647,7 @@
*Michael Pearson*
* Added default order to `first` to assure consistent results among
- diferent database engines. Introduced `take` as a replacement to
+ different database engines. Introduced `take` as a replacement to
the old behavior of `first`.
*Marcelo Silveira*