Add CHANGELOG headers for Rails 5.0.0.beta1

This commit is contained in:
eileencodes 2015-12-18 15:58:25 -05:00
parent cbf827bc9c
commit 099ddfdefd
10 changed files with 50 additions and 0 deletions

View File

@ -1,3 +1,8 @@
## Rails 5.0.0.beta1 (December 18, 2015) ##
* No changes.
* Added to Rails!
*DHH*

View File

@ -1,3 +1,8 @@
## Rails 5.0.0.beta1 (December 18, 2015) ##
* No changes.
* `config.force_ssl = true` will set
`config.action_mailer.default_url_options = { protocol: 'https' }`

View File

@ -1,3 +1,8 @@
## Rails 5.0.0.beta1 (December 18, 2015) ##
* No changes.
* Deprecate `redirect_to :back` in favor of `redirect_back`, which accepts a
required `fallback_location` argument, thus eliminating the possibility of a
`RedirectBackError`.

View File

@ -1,3 +1,8 @@
## Rails 5.0.0.beta1 (December 18, 2015) ##
* No changes.
* `I18n.translate` helper will wrap the missing translation keys
in a <span> tag only if `debug_missing_translation` configuration
be true. Default value is `true`. For example in `application.rb`:

View File

@ -1,3 +1,8 @@
## Rails 5.0.0.beta1 (December 18, 2015) ##
* No changes.
* Fixed serializing `:at` option for `assert_enqueued_with`
and `assert_performed_with`.

View File

@ -1,3 +1,8 @@
## Rails 5.0.0.beta1 (December 18, 2015) ##
* No changes.
* Validate multiple contexts on `valid?` and `invalid?` at once.
Example:

View File

@ -1,3 +1,8 @@
## Rails 5.0.0.beta1 (December 18, 2015) ##
* No changes.
* Order the result of `find(ids)` to match the passed array, if the relation
has no explicit order defined.

View File

@ -1,3 +1,8 @@
## Rails 5.0.0.beta1 (December 18, 2015) ##
* No changes.
* 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.

View File

@ -1,3 +1,8 @@
## Rails 5.0.0.beta1 (December 18, 2015) ##
* No changes.
* Add code of conduct to contributing guide
*Jon Moss*

View File

@ -1,3 +1,8 @@
## Rails 5.0.0.beta1 (December 18, 2015) ##
* No changes.
* Newly generated plugins get a `README.md` in Markdown.
*Yuji Yaginuma*