reflect c03bba4 in CHANGELOGs

This commit is contained in:
Xavier Noria 2018-09-08 09:50:05 +02:00
parent 273e73dbcd
commit 5f35c60f84
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,12 @@
* Add support for tracing constant autoloads. Just throw
ActiveSupport::Dependencies.logger = Rails.logger
ActiveSupport::Dependencies.verbose = true
in an initializer.
*Xavier Noria*
* Maintain `html_safe?` on html_safe strings when sliced.
string = "<div>test</div>".html_safe

View File

@ -1,3 +1,7 @@
* New section _Troubleshooting_ in the _Autoloading and Reloading Constants_ guide.
*Xavier Noria*
* Rails 6 requires Ruby 2.4.1 or newer.
*Jeremy Daer*