diff --git a/actioncable/CHANGELOG.md b/actioncable/CHANGELOG.md index df7937b27a7..64aea88588f 100644 --- a/actioncable/CHANGELOG.md +++ b/actioncable/CHANGELOG.md @@ -1,3 +1,8 @@ +## Rails 5.0.0.beta1 (December 18, 2015) ## + +* No changes. + + * Added to Rails! *DHH* \ No newline at end of file diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md index 0ecb0235bce..73ce989a5ac 100644 --- a/actionmailer/CHANGELOG.md +++ b/actionmailer/CHANGELOG.md @@ -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' }` diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index 8b2943af74c..3314a0b77d9 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -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`. diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index dc9ec974bb3..a397ac4417d 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -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 tag only if `debug_missing_translation` configuration be true. Default value is `true`. For example in `application.rb`: diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index 79235019fef..2caa073f683 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -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`. diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index a3368cd197a..3d722488e2e 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -1,3 +1,8 @@ +## Rails 5.0.0.beta1 (December 18, 2015) ## + +* No changes. + + * Validate multiple contexts on `valid?` and `invalid?` at once. Example: diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index dc5d2632dcd..dbf19c01da7 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -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. diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 70d671cd2dd..2656d3f1132 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -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. diff --git a/guides/CHANGELOG.md b/guides/CHANGELOG.md index 09fb7b1a0e6..16919784ad1 100644 --- a/guides/CHANGELOG.md +++ b/guides/CHANGELOG.md @@ -1,3 +1,8 @@ +## Rails 5.0.0.beta1 (December 18, 2015) ## + +* No changes. + + * Add code of conduct to contributing guide *Jon Moss* diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index bf4eae39b9b..d9d0136ad8b 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -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*