diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-12-27 08:49:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-27 08:49:50 -0500 |
commit | 4d5ced349ca2b4fe756481f4b01a7a4574457889 (patch) | |
tree | d6a5f0fd618b7af98d7d1442f44f67ad4ddd14c8 | |
parent | 57908d8a5e4ea83251b338cf51648a552969f3dd (diff) | |
parent | 0017866341e6ee085987173b0b586e8b7e8fee65 (diff) | |
download | rails-4d5ced349ca2b4fe756481f4b01a7a4574457889.tar.gz rails-4d5ced349ca2b4fe756481f4b01a7a4574457889.tar.bz2 rails-4d5ced349ca2b4fe756481f4b01a7a4574457889.zip |
Merge pull request #27472 from maclover7/jm-fixup-changelogs
Small edits to CHANGELOG.md files
-rw-r--r-- | actioncable/CHANGELOG.md | 4 | ||||
-rw-r--r-- | actionpack/CHANGELOG.md | 4 | ||||
-rw-r--r-- | activerecord/CHANGELOG.md | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/actioncable/CHANGELOG.md b/actioncable/CHANGELOG.md index 2c84d3158f..4f17274a01 100644 --- a/actioncable/CHANGELOG.md +++ b/actioncable/CHANGELOG.md @@ -13,12 +13,12 @@ *Vladimir Dementyev* -* Buffer now writes to websocket connections, to avoid blocking threads +* Buffer now writes to WebSocket connections, to avoid blocking threads that could be doing more useful things. *Matthew Draper*, *Tinco Andringa* -* Protect against concurrent writes to a websocket connection from +* Protect against concurrent writes to a WebSocket connection from multiple threads; the underlying OS write is not always threadsafe. *Tinco Andringa* diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index c36de3ebdd..2f0c677ad1 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,6 +1,6 @@ * Use accept header in integration tests with `as: :json` - Instead of appending the `format` to the request path. Rails will figure + Instead of appending the `format` to the request path, Rails will figure out the format from the header instead. This allows devs to use `:as` on routes that don't have a format. @@ -9,7 +9,7 @@ *Kasper Timm Hansen* -* Reset a new session directly after its creation in ActionDispatch::IntegrationTest#open_session. +* Reset a new session directly after its creation in `ActionDispatch::IntegrationTest#open_session`. Fixes #22742. diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index eac54e7566..034e45b769 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,10 +1,10 @@ * Notifications see frozen SQL string. - Fixes #23774 + Fixes #23774. *Richard Monette* -* RuntimeErrors are no longer translated to ActiveRecord::StatementInvalid. +* RuntimeErrors are no longer translated to `ActiveRecord::StatementInvalid`. *Richard Monette* |