formatting pass through CHANGELOGS. [ci skip]

This commit is contained in:
Yves Senn 2014-05-16 09:03:26 +02:00
parent 16a8a68b7e
commit 8109dc8067
4 changed files with 10 additions and 8 deletions

View File

@ -26,9 +26,11 @@
* Change `asset_path` to use File.join to create proper paths:
Before:
https://some.host.com//assets/some.js
becomes
After:
https://some.host.com/assets/some.js

View File

@ -1,4 +1,4 @@
* Add plural and singular form for length validator's default messages
* Add plural and singular form for length validator's default messages.
*Abd ar-Rahman Hamid*

View File

@ -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*

View File

@ -7,7 +7,7 @@
convert a value that is an `ActiveSupport::SafeBuffer` introduced
in 2da9d67.
For more info see #15064.
See #15064.
*Mark J. Titorenko*