diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2014-05-23 15:47:53 -0700 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2014-05-23 15:47:53 -0700 |
commit | 3bc684bf04d252098a6be248876a9548da25c558 (patch) | |
tree | c2e0f6282b65238e78794853c0dae47d8a79ca3d | |
parent | 6d48d979471818f8302233c1738afae1f030eea5 (diff) | |
parent | 1d7b3fa84caec0e935df3b61573a5ef23ea69f34 (diff) | |
download | rails-3bc684bf04d252098a6be248876a9548da25c558.tar.gz rails-3bc684bf04d252098a6be248876a9548da25c558.tar.bz2 rails-3bc684bf04d252098a6be248876a9548da25c558.zip |
Merge pull request #15289 from zzak/future_port_c8ddb61
Future port c8ddb61 [ci skip]
-rw-r--r-- | actionpack/CHANGELOG.md | 6 | ||||
-rw-r--r-- | activerecord/CHANGELOG.md | 19 | ||||
-rw-r--r-- | railties/CHANGELOG.md | 3 |
3 files changed, 14 insertions, 14 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index 2b4ff7f03d..92e94ee463 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -3,7 +3,7 @@ *Guo Xiang Tan* -* Fix 'Stack level too deep' when rendering `head :ok` in an action method +* Fix `'Stack level too deep'` when rendering `head :ok` in an action method called 'status' in a controller. Fixes #13905. @@ -71,7 +71,7 @@ 4. Use `escape_segment` rather than `escape_path` in URL generation For point 4 there are two exceptions. Firstly, when a route uses wildcard segments - (e.g. *foo) then we use `escape_path` as the value may contain '/' characters. This + (e.g. `*foo`) then we use `escape_path` as the value may contain '/' characters. This means that wildcard routes can't be optimized. Secondly, if a `:controller` segment is used in the path then this uses `escape_path` as the controller may be namespaced. @@ -101,7 +101,7 @@ *Andrew White*, *James Coglan* -* Append link to bad code to backtrace when exception is SyntaxError. +* Append link to bad code to backtrace when exception is `SyntaxError`. *Boris Kuznetsov* diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 260bd063aa..041872034f 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -28,7 +28,8 @@ *Brock Trappitt* -* Fixed the inferred table name of a HABTM auxiliar table inside a schema. +* Fixed the inferred table name of a has_and_belongs_to_many auxiliar + table inside a schema. Fixes #14824 @@ -71,7 +72,7 @@ *Aaron Nelson* -* Fix how to calculate associated class name when using namespaced `has_and_belongs_to_many` +* Fix how to calculate associated class name when using namespaced has_and_belongs_to_many association. Fixes #14709. @@ -124,7 +125,7 @@ *Innokenty Mikhailov* -* Allow the PostgreSQL adapter to handle bigserial pk types again. +* Allow the PostgreSQL adapter to handle bigserial primary key types again. Fixes #10410. @@ -139,10 +140,10 @@ *Yves Senn* -* Fixed HABTM's CollectionAssociation size calculation. +* Fixed has_and_belongs_to_many's CollectionAssociation size calculation. - HABTM should fall back to using the normal CollectionAssociation's size - calculation if the collection is not cached or loaded. + has_and_belongs_to_many should fall back to using the normal CollectionAssociation's + size calculation if the collection is not cached or loaded. Fixes #14913, #14914. @@ -186,10 +187,10 @@ *Eric Chahin*, *Aaron Nelson*, *Kevin Casey* -* Stringify all variable keys of mysql connection configuration. +* Stringify all variables keys of MySQL connection configuration. - 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. + When `sql_mode` variable for MySQL adapters set in configuration as `String` + was ignored and overwritten by strict mode option. Fixes #14895. diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index ba6a0feeef..9e7569465f 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -2,8 +2,7 @@ *Dan Kang* -* Load database configuration from the first - database.yml available in paths. +* Load database configuration from the first `database.yml` available in paths. *Pier-Olivier Thibault* |