mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
a191321f7b
Ref: 668673f779
Now that Zeitwerk is the only autoloader, there no reason
to add autoloaded paths to `$LOAD_PATH`.
18 lines
756 B
Markdown
18 lines
756 B
Markdown
* No longer add autoloaded paths to `$LOAD_PATH`.
|
|
|
|
This means it won't be possible to load them with a manual `require` call, the class or module can be referenced instead.
|
|
|
|
Reducing the size of `$LOAD_PATH` speed-up `require` calls for apps not using `bootsnap`, and reduce the
|
|
size of the `bootsnap` cache for the others.
|
|
|
|
*Jean Boussier*
|
|
|
|
* Remove default `X-Download-Options` header
|
|
|
|
This header is currently only used by Internet Explorer which
|
|
will be discontinued in 2022 and since Rails 7 does not fully
|
|
support Internet Explorer this header should not be a default one.
|
|
|
|
*Harun Sabljaković*
|
|
|
|
Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/railties/CHANGELOG.md) for previous changes.
|