diff options
-rw-r--r-- | actionview/CHANGELOG.md | 4 | ||||
-rw-r--r-- | activemodel/CHANGELOG.md | 3 | ||||
-rw-r--r-- | activerecord/CHANGELOG.md | 12 |
3 files changed, 10 insertions, 9 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index e9daeca39d..bedbf78172 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,4 +1,4 @@ -* Change `asset_path` to use File.join to create proper paths (#14932): +* Change `asset_path` to use File.join to create proper paths: https://some.host.com//assets/some.js @@ -12,7 +12,7 @@ `image/x-icon`. Before: - + #=> favicon_link_tag 'myicon.ico' <link href="/assets/myicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" /> diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index 0db220ab8f..8f892ea3a7 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -1,6 +1,7 @@ * Introduce `validate` as an alias for `valid?`. - This is more intuitive when you want to run validations but don't care about the return value. + This is more intuitive when you want to run validations but don't care about + the return value. *Henrik Nyh* diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index e962c0978f..df73eb4484 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,19 +1,19 @@ -* Stringify all variables keys of mysql connection configuration. +* Stringify all variable keys of mysql connection configuration. - When `sql_mode` variable for mysql adapters set in configuration as `String` - was ignored and overwritten by strict mode option. + When the `sql_mode` variable for mysql adapters is set in the configuration + as a `String`, it was ignored and overwritten by the strict mode option. - Fixes #14895 + Fixes #14895. *Paul Nikitochkin* * Ensure SQLite3 statements are closed on errors. - Fixes: #13631 + Fixes #13631. *Timur Alperovich* -* Give ActiveRecord::PredicateBuilder private methods the privacy they deserve +* Give ActiveRecord::PredicateBuilder private methods the privacy they deserve. *Hector Satre* |