CHANGELOG.md in activesupport-5.0.0.rc2 vs CHANGELOG.md in activesupport-5.0.0
- old
+ new
@@ -1,7 +1,16 @@
-## Rails 5.0.0.rc2 (June 22, 2016) ##
+## Rails 5.0.0 (June 30, 2016) ##
+* Support parsing JSON time in ISO8601 local time strings in
+ `ActiveSupport::JSON.decode` when `parse_json_times` is enabled.
+ Strings in the format of `YYYY-MM-DD hh:mm:ss` (without a `Z` at
+ the end) will be parsed in the local timezone (`Time.zone`). In
+ addition, date strings (`YYYY-MM-DD`) are now parsed into `Date`
+ objects.
+
+ *Grzegorz Witek*
+
* `Date.to_s` doesn't produce too many spaces. For example, `to_s(:short)`
will now produce `01 Feb` instead of ` 1 Feb`.
Fixes #25251.
@@ -10,13 +19,10 @@
* Rescuable: If a handler doesn't match the exception, check for handlers
matching the exception's cause.
*Jeremy Daer*
-
-## Rails 5.0.0.rc1 (May 06, 2016) ##
-
* `ActiveSupport::Duration` supports weeks and hours.
[1.hour.inspect, 1.hour.value, 1.hour.parts]
# => ["3600 seconds", 3600, [[:seconds, 3600]]] # Before
# => ["1 hour", 3600, [[:hours, 1]]] # After
@@ -33,13 +39,10 @@
plugins that work with the internal `parts` hash will need to broaden
their time period handling to cover hours & weeks.
*Andrey Novikov*
-
-## Rails 5.0.0.beta4 (April 27, 2016) ##
-
* Time zones: Ensure that the UTC offset reflects DST changes that occurred
since the app started. Removes UTC offset caching, reducing performance,
but this is still relatively quick and isn't in any hot paths.
*Alexey Shein*
@@ -198,13 +201,10 @@
components and libraries to manage, and participate in, the execution of
application code, and the application reloading process.
*Matthew Draper*
-
-## Rails 5.0.0.beta3 (February 24, 2016) ##
-
* Deprecate arguments on `assert_nothing_raised`.
`assert_nothing_raised` does not assert the arguments that have been passed
in (usually a specific exception class) since the method only yields the
block. So as not to confuse the users that the arguments have meaning, they
@@ -229,13 +229,10 @@
* Fix regression in `Hash#dig` for HashWithIndifferentAccess.
*Jon Moss*
-
-## Rails 5.0.0.beta2 (February 01, 2016) ##
-
* Change `number_to_currency` behavior for checking negativity.
Used `to_f.negative` instead of using `to_f.phase` for checking negativity
of a number in number_to_currency helper.
This change works same for all cases except when number is "-0.0".
@@ -266,12 +263,9 @@
*Adam Roben*
* Add petabyte and exabyte numeric conversion.
*Akshay Vishnoi*
-
-
-## Rails 5.0.0.beta1 (December 18, 2015) ##
* Add thread_m/cattr_accessor/reader/writer suite of methods for declaring class and module variables that live per-thread.
This makes it easy to declare per-thread globals that are encapsulated. Note: This is a sharp edge. A wild proliferation
of globals is A Bad Thing. But like other sharp tools, when it's right, it's right.