diff options
-rw-r--r-- | actionmailer/CHANGELOG.md | 2 | ||||
-rw-r--r-- | actionpack/CHANGELOG.md | 12 | ||||
-rw-r--r-- | activerecord/CHANGELOG.md | 2 | ||||
-rw-r--r-- | activesupport/CHANGELOG.md | 25 |
4 files changed, 24 insertions, 17 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md index fc9aefd416..1867a392eb 100644 --- a/actionmailer/CHANGELOG.md +++ b/actionmailer/CHANGELOG.md @@ -5,6 +5,8 @@ * Calling `mail()` without arguments serves as getter for the current mail message and keeps previously set headers. + Fixes #13090. + Example: class MailerWithCallback < ActionMailer::Base diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index 944bf18113..395b783d61 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,6 +1,6 @@ * Allow an absolute controller path inside a module scope - Fixes #12777 + Fixes #12777. * Unique the segment keys array for non-optimized url helpers @@ -10,7 +10,7 @@ This means to benefit from optimized url generation the arg needs to be specified as many times as it appears in the path. - Fixes #12808 + Fixes #12808. *Andrew White* @@ -20,7 +20,7 @@ in the error message. Previously it would only show the contraints that were required as part of the path. - Fixes #13592 + Fixes #13592. *Andrew White* @@ -44,7 +44,7 @@ absolute. Similarly for option redirects, if the options hash returned contains a `:host` or `:domain` key then the path is treated as absolute. - Fixes #7977 + Fixes #7977. *Andrew White* @@ -59,7 +59,7 @@ it has been unescaped. If it is not valid then we can return early since it will not match any file anyway. - Fixes #13518 + Fixes #13518. *Andrew White* @@ -69,7 +69,7 @@ * Converts hashes in arrays of unfiltered params to unpermitted params. - Fixes #13382 + Fixes #13382. *Xavier Noria* diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 866a2eb374..4a321c7a59 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1246,7 +1246,7 @@ *John Wang* -* Fix `add_column` with `array` option when using PostgreSQL. Fixes #10432 +* Fix `add_column` with `array` option when using PostgreSQL. Fixes #10432. *Adam Anderson* diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index fa9eb0815b..6cc04dbe27 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -21,7 +21,7 @@ * Don't lazy load the `tzinfo` library as it causes problems on Windows. - Fixes #13553 + Fixes #13553. *Andrew White* @@ -36,10 +36,13 @@ * Fixed Float related error in NumberHelper with large precisions. - before: + Before: + ActiveSupport::NumberHelper.number_to_rounded '3.14159', precision: 50 #=> "3.14158999999999988261834005243144929409027099609375" - after: + + After: + ActiveSupport::NumberHelper.number_to_rounded '3.14159', precision: 50 #=> "3.14159000000000000000000000000000000000000000000000" @@ -365,19 +368,21 @@ The value of `PER_ENTRY_OVERHEAD` is 240 bytes based on an [empirical estimation](https://gist.github.com/ssimeonov/6047200) for 64-bit MRI on - 1.9.3 and 2.0. GH#11512 + 1.9.3 and 2.0. + + Fixes #11512. *Simeon Simeonov* * Only raise `Module::DelegationError` if it's the source of the exception. - Fixes #10559 + Fixes #10559. *Andrew White* * Make `Time.at_with_coercion` retain the second fraction and return local time. - Fixes #11350 + Fixes #11350. *Neer Friedman*, *Andrew White* @@ -443,21 +448,21 @@ * Fix return value from `BacktraceCleaner#noise` when the cleaner is configured with multiple silencers. - Fixes #11030 + Fixes #11030. *Mark J. Titorenko* * `HashWithIndifferentAccess#select` now returns a `HashWithIndifferentAccess` instance instead of a `Hash` instance. - Fixes #10723 + Fixes #10723. *Albert Llop* * Add `DateTime#usec` and `DateTime#nsec` so that `ActiveSupport::TimeWithZone` keeps sub-second resolution when wrapping a `DateTime` value. - Fixes #10855 + Fixes #10855. *Andrew White* @@ -473,7 +478,7 @@ * Prevent side effects to hashes inside arrays when `Hash#with_indifferent_access` is called. - Fixes #10526 + Fixes #10526. *Yves Senn* |