Skip to content

Commit

Permalink
Preparing for 5.0.0.beta3 release
Browse files Browse the repository at this point in the history
Adds changelog headers for beta3 release
  • Loading branch information
eileencodes committed Feb 24, 2016
1 parent 6852039 commit dbfa8fd
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions actioncable/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.0.beta3 (February 24, 2016) ##

* Added ActionCable::SubscriptionAdapter::EventedRedis.em_redis_connector/redis_connector and
ActionCable::SubscriptionAdapter::Redis.redis_connector factory methods for redis connections,
so you can overwrite with your own initializers. This is used when you want to use different-than-standard Redis adapters,
Expand Down
2 changes: 2 additions & 0 deletions actionmailer/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.0.beta3 (February 24, 2016) ##

* Add support to fragment cache in Action Mailer.

Now you can use fragment caching in your mailers views.
Expand Down
2 changes: 2 additions & 0 deletions actionpack/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.0.beta3 (February 24, 2016) ##

* Update session to have indifferent access across multiple requests.

session[:deep][:hash] = "Magic"
Expand Down
2 changes: 2 additions & 0 deletions actionview/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.0.beta3 (February 24, 2016) ##

* Collection rendering can cache and fetch multiple partials at once.

Collections rendered as:
Expand Down
2 changes: 2 additions & 0 deletions activejob/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.0.beta3 (February 24, 2016) ##

* Change the default adapter from inline to async. It's a better default as tests will then not mistakenly
come to rely on behavior happening synchronously. This is especially important with things like jobs kicked off
in Active Record lifecycle callbacks.
Expand Down
5 changes: 5 additions & 0 deletions activemodel/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.0.beta3 (February 24, 2016) ##

* No changes.


## Rails 5.0.0.beta2 (February 01, 2016) ##

* No changes.
Expand Down
2 changes: 2 additions & 0 deletions activerecord/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.0.beta3 (February 24, 2016) ##

* Ensure that mutations of the array returned from `ActiveRecord::Relation#to_a`
do not affect the original relation, by returning a duplicate array each time.

Expand Down
2 changes: 2 additions & 0 deletions activesupport/CHANGELOG.md
@@ -1,3 +1,5 @@
## 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
Expand Down
5 changes: 5 additions & 0 deletions guides/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.0.beta3 (February 24, 2016) ##

* No changes.


## Rails 5.0.0.beta2 (February 01, 2016) ##

* No changes.
Expand Down
2 changes: 2 additions & 0 deletions railties/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.0.beta3 (February 24, 2016) ##

* Alias `rake` with `rails_command` in the Rails Application Templates API
following Rails 5 convention of preferring "rails" to "rake" to run tasks.

Expand Down

0 comments on commit dbfa8fd

Please sign in to comment.