aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-02-01 18:03:21 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-02-01 18:03:21 -0200
commita60ccadbf0307e43b726044a02612a7995c81c05 (patch)
tree803f82178ac4a22123aa5f91e3d00120e60b1e94 /activesupport/CHANGELOG.md
parent682a579b25deb1142b8f445ad9ae0c661bc58564 (diff)
parentc87b27ebde4c5a0bc172ffce59faaadb20301dec (diff)
downloadrails-a60ccadbf0307e43b726044a02612a7995c81c05.tar.gz
rails-a60ccadbf0307e43b726044a02612a7995c81c05.tar.bz2
rails-a60ccadbf0307e43b726044a02612a7995c81c05.zip
Merge pull request #13911 from davidcelis/remove-bigdecimal-serialization
Deprecate custom BigDecimal serialization Conflicts: activesupport/CHANGELOG.md
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 1d6d80808b..fa2f2384f9 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,6 +1,14 @@
+* Deprecate custom `BigDecimal` serialization
+
+ Deprecate the custom `BigDecimal` serialization that is included when requiring
+ `active_support/all` as a fix for #12467. Let Ruby handle YAML serialization
+ for `BigDecimal` instead.
+
+ *David Celis*
+
* Fix parsing bugs in `XmlMini`
- Symbols or boolean parsing would raise an error for non string values (e.g.
+ Symbols or boolean parsing would raise an error for non string values (e.g.
integers). Decimal parsing would fail due to a missing requirement.
*Birkir A. Barkarson*