aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-05-16 09:03:26 +0200
committerYves Senn <yves.senn@gmail.com>2014-05-16 09:03:26 +0200
commit8109dc8067a0e25933cd5cbc6adba365504ea054 (patch)
tree6f308844915168ff21b4a60e3eb33342dd9f983b /activerecord
parent16a8a68b7eb71e57fc457750758d2dc8e978584b (diff)
downloadrails-8109dc8067a0e25933cd5cbc6adba365504ea054.tar.gz
rails-8109dc8067a0e25933cd5cbc6adba365504ea054.tar.bz2
rails-8109dc8067a0e25933cd5cbc6adba365504ea054.zip
formatting pass through CHANGELOGS. [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 3474a983e1..5647204859 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -46,13 +46,13 @@
* Fix `PostgreSQLAdapter::OID::Float#type_cast` to convert Infinity and
NaN PostgreSQL values into a native Ruby `Float::INFINITY` and `Float::NAN`
- Example:
+ Before:
- # Before
Point.create(value: 1.0/0)
Point.last.value # => 0.0
- # After
+ After:
+
Point.create(value: 1.0/0)
Point.last.value # => Infinity
@@ -78,7 +78,7 @@
HABTM should fall back to using the normal CollectionAssociation's size
calculation if the collection is not cached or loaded.
- Fixes #14913 and #14914.
+ Fixes #14913, #14914.
*Fred Wu*
@@ -280,7 +280,7 @@
* Auto-generate stable fixture UUIDs on PostgreSQL.
- Fixes: #11524
+ Fixes #11524.
*Roderick van Domburg*