diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2016-06-27 08:28:24 -0700 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2016-06-27 08:28:24 -0700 |
commit | bdf80369efa5f339531f5c8ace8f52f243e3bc1a (patch) | |
tree | 9bc9f87a40890698f0f3149a61f932c0857dd17d | |
parent | bec81dca8cdd4d0aff8565ac928f08ff44e97c30 (diff) | |
download | rails-bdf80369efa5f339531f5c8ace8f52f243e3bc1a.tar.gz rails-bdf80369efa5f339531f5c8ace8f52f243e3bc1a.tar.bz2 rails-bdf80369efa5f339531f5c8ace8f52f243e3bc1a.zip |
Add #16917 to 5.0.0 release notes
-rw-r--r-- | guides/source/5_0_release_notes.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/guides/source/5_0_release_notes.md b/guides/source/5_0_release_notes.md index 5639438b93..c3b5be6170 100644 --- a/guides/source/5_0_release_notes.md +++ b/guides/source/5_0_release_notes.md @@ -967,6 +967,13 @@ Please refer to the [Changelog][active-support] for detailed changes. * `ActiveSupport::Duration` now supports ISO8601 formatting and parsing. ([Pull Request](https://github.com/rails/rails/pull/16917)) +* `ActiveSupport::JSON.decode` now supports parsing ISO8601 local times when + `parse_json_times` is enabled. + ([Pull Request](https://github.com/rails/rails/pull/16917)) + +* `ActiveSupport::JSON.decode` now return `Date` objects for date strings. + ([Pull Request](https://github.com/rails/rails/pull/16917)) + * Added ability to `TaggedLogging` to allow loggers to be instantiated multiple times so that they don't share tags with each other. ([Pull Request](https://github.com/rails/rails/pull/9065)) |