aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2016-01-13 10:19:55 +0100
committerYves Senn <yves.senn@gmail.com>2016-01-13 10:19:55 +0100
commitf5ab4055b909e7b325304c5a7e414c28bbe441b7 (patch)
tree32a4d0b90233747f1a9d11824fad4b580308cef6
parentede2343031981e347605d55200e56829c3eb1b20 (diff)
downloadrails-f5ab4055b909e7b325304c5a7e414c28bbe441b7.tar.gz
rails-f5ab4055b909e7b325304c5a7e414c28bbe441b7.tar.bz2
rails-f5ab4055b909e7b325304c5a7e414c28bbe441b7.zip
docs, formatting pass over changelogs. [ci skip]
-rw-r--r--actionpack/CHANGELOG.md8
-rw-r--r--actionview/CHANGELOG.md2
-rw-r--r--activerecord/CHANGELOG.md6
-rw-r--r--activesupport/CHANGELOG.md8
4 files changed, 13 insertions, 11 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 575c01ddfd..b47e73377c 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -4,9 +4,9 @@
* More explicit error message when running `rake routes`. `CONTROLLER` argument
can now be supplied in different ways:
- `Rails::WelcomeController`, `Rails::Welcome`, `rails/welcome`
+ `Rails::WelcomeController`, `Rails::Welcome`, `rails/welcome`.
- Fixes #22918
+ Fixes #22918.
*Edouard Chin*
@@ -14,7 +14,7 @@
helper methods. An `ArgumentError` will be raised if the passed parameters
are not secure.
- Fixes #22832
+ Fixes #22832.
*Prathamesh Sonpatki*
@@ -30,7 +30,7 @@
or unfiltered values based on from where it is called, `to_h` or `to_unsafe_h`
respectively.
- Fixes #22841
+ Fixes #22841.
*Prathamesh Sonpatki*
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index dbdd4378d0..e31ce85610 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -2,7 +2,7 @@
before the actual input radio tags to make the real value override
the hidden when passed.
- Fixes #22773
+ Fixes #22773.
*Santiago Pastorino*
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 6a42a0f395..a017ac6f18 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,15 +1,15 @@
* Fix regression when loading fixture files with symbol keys.
- Closes #22584.
+ Fixes #22584.
*Yves Senn*
-* Support `:if` and `:unless` options in `has_secure_token`
+* Support `:if` and `:unless` options in `has_secure_token`.
*Griffin Smith*
* Use `version` column as primary key for schema_migrations table because
- schema_migrations versions are guaranteed to be unique.
+ `schema_migrations` versions are guaranteed to be unique.
This makes it possible to use `update_attributes` on models that do
not have a primary key.
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index cebe19be89..21c79949ca 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,10 +1,12 @@
-* Match `HashWithIndifferentAccess#default`'s behaviour with `Hash#default`
+* Match `HashWithIndifferentAccess#default`'s behaviour with `Hash#default`.
*David Cornu*
-* Adds `:exception_object` key to `ActiveSupport::Notifications::Instrumenter` payload when an exception is raised.
+* Adds `:exception_object` key to `ActiveSupport::Notifications::Instrumenter`
+ payload when an exception is raised.
- Adds new key/value pair to payload when an exception is raised: e.g. `:exception_object => #<RuntimeError: FAIL>`.
+ Adds new key/value pair to payload when an exception is raised:
+ e.g. `:exception_object => #<RuntimeError: FAIL>`.
*Ryan T. Hosford*