CHANGELOG.md in activesupport-6.0.1 vs CHANGELOG.md in activesupport-6.0.2.rc1
- old
+ new
@@ -1,5 +1,16 @@
+## Rails 6.0.2.rc1 (November 27, 2019) ##
+
+* Eager load translations during initialization.
+
+ *Diego Plentz*
+
+* Use per-thread CPU time clock on `ActiveSupport::Notifications`.
+
+ *George Claghorn*
+
+
## Rails 6.0.1 (November 5, 2019) ##
* `ActiveSupport::SafeBuffer` supports `Enumerator` methods.
*Shugo Maeda*
@@ -35,11 +46,11 @@
* Improve `Range#===`, `Range#include?`, and `Range#cover?` to work with beginless (startless)
and endless range targets.
*Allen Hsu*, *Andrew Hodgkinson*
-* Don't use `Process#clock_gettime(CLOCK_PROCESS_CPUTIME_ID)` on Solaris
+* Don't use `Process#clock_gettime(CLOCK_THREAD_CPUTIME_ID)` on Solaris.
*Iain Beeston*
## Rails 6.0.0 (August 16, 2019) ##
@@ -330,11 +341,11 @@
* Improve the logic that detects non-autoloaded constants.
*Jan Habermann*, *Xavier Noria*
-* Deprecate `ActiveSupport::Multibyte::Unicode#pack_graphemes(array)` and `ActiveSuppport::Multibyte::Unicode#unpack_graphemes(string)`
+* Deprecate `ActiveSupport::Multibyte::Unicode#pack_graphemes(array)` and `ActiveSupport::Multibyte::Unicode#unpack_graphemes(string)`
in favor of `array.flatten.pack("U*")` and `string.scan(/\X/).map(&:codepoints)`, respectively.
*Francesco RodrÃguez*
* Deprecate `ActiveSupport::Multibyte::Chars.consumes?` in favor of `String#is_utf8?`.
@@ -348,10 +359,10 @@
```
Will now correctly add 0.51 second and not 1 full second.
*Edouard Chin*
-* Deprecate `ActiveSupport::Multibyte::Unicode#normalize` and `ActiveSuppport::Multibyte::Chars#normalize`
+* Deprecate `ActiveSupport::Multibyte::Unicode#normalize` and `ActiveSupport::Multibyte::Chars#normalize`
in favor of `String#unicode_normalize`
*Francesco RodrÃguez*
* Deprecate `ActiveSupport::Multibyte::Unicode#downcase/upcase/swapcase` in favor of