diff options
-rw-r--r-- | actionpack/CHANGELOG.md | 2 | ||||
-rw-r--r-- | actionview/CHANGELOG.md | 5 | ||||
-rw-r--r-- | activejob/CHANGELOG.md | 2 | ||||
-rw-r--r-- | activerecord/CHANGELOG.md | 5 | ||||
-rw-r--r-- | activesupport/CHANGELOG.md | 8 |
5 files changed, 13 insertions, 9 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index fbd6c5c747..c27ef2dc5f 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,4 +1,4 @@ -* Fix rake routes not showing the right format when +* Fix `rake routes` not showing the right format when nesting multiple routes. See #18373. diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index 40da3dc19b..201e118971 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,4 +1,5 @@ -* Do not put partial name to local_assigns when rendering without an object or a collection. +* Do not put partial name to `local_assigns` when rendering without + an object or a collection. *Henrik Nygren* @@ -124,7 +125,7 @@ *Angelo Capilleri* -* Allow entries without a link tag in AtomFeedHelper. +* Allow entries without a link tag in `AtomFeedHelper`. *Daniel Gomez de Souza* diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index 74f4c2588e..aba386c18e 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -11,7 +11,7 @@ *y-yagi* -* A generated job now inherents from `app/jobs/application_job.rb` by default. +* A generated job now inherits from `app/jobs/application_job.rb` by default. *Jeroen van Baarsen* diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 3663a6faa4..5b09101bca 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -3,7 +3,8 @@ *Alex Robbin* -* Correctly pass MySQL options when using structure_dump or structure_load +* Correctly pass MySQL options when using `structure_dump` or + `structure_load`. Specifically, it fixes an issue when using SSL authentication. @@ -11,7 +12,7 @@ * Dump indexes in `create_table` instead of `add_index`. - If the adapter supports indexes in create table, generated SQL is + If the adapter supports indexes in `create_table`, generated SQL is slightly more efficient. *Ryuta Kamizono* diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 3b905b1d24..4de0f2ae4c 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,9 +1,11 @@ -* Add Integer#positive? and Integer#negative? query methods in the vein of Fixnum#zero? - This makes it nicer to do things like bunch_of_numbers.select(&:positive?). +* Add `Integer#positive?` and `Integer#negative?` query methods + in the vein of `Fixnum#zero?`. + + This makes it nicer to do things like `bunch_of_numbers.select(&:positive?)`. *DHH* -* Encoding ActiveSupport::TimeWithZone to YAML now preserves the timezone information. +* Encoding `ActiveSupport::TimeWithZone` to YAML now preserves the timezone information. Fixes #9183. |