aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actioncable/CHANGELOG.md2
-rw-r--r--actionmailer/CHANGELOG.md2
-rw-r--r--actionpack/CHANGELOG.md2
-rw-r--r--actionview/CHANGELOG.md2
-rw-r--r--activejob/CHANGELOG.md2
-rw-r--r--activemodel/CHANGELOG.md5
-rw-r--r--activerecord/CHANGELOG.md2
-rw-r--r--activesupport/CHANGELOG.md2
-rw-r--r--guides/CHANGELOG.md5
-rw-r--r--railties/CHANGELOG.md2
10 files changed, 26 insertions, 0 deletions
diff --git a/actioncable/CHANGELOG.md b/actioncable/CHANGELOG.md
index bfc229d795..6b036dceb6 100644
--- a/actioncable/CHANGELOG.md
+++ b/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,
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index c281588864..604e332dad 100644
--- a/actionmailer/CHANGELOG.md
+++ b/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.
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 78da93a205..da96aef98b 100644
--- a/actionpack/CHANGELOG.md
+++ b/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"
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index 465c646ac7..d084f2b1e0 100644
--- a/actionview/CHANGELOG.md
+++ b/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:
diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md
index 229ef03879..913164fbc5 100644
--- a/activejob/CHANGELOG.md
+++ b/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.
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md
index 318e507ff1..fb7ab5cb40 100644
--- a/activemodel/CHANGELOG.md
+++ b/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.
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index d9fb5ec8ee..c1a8803457 100644
--- a/activerecord/CHANGELOG.md
+++ b/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.
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 2a5d203813..1a169d36be 100644
--- a/activesupport/CHANGELOG.md
+++ b/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
diff --git a/guides/CHANGELOG.md b/guides/CHANGELOG.md
index d58016053b..d35d0f1976 100644
--- a/guides/CHANGELOG.md
+++ b/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.
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 6d56a060af..40140c49f6 100644
--- a/railties/CHANGELOG.md
+++ b/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.