aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Wu <ifredwu@gmail.com>2013-03-21 09:26:07 +1100
committerFred Wu <ifredwu@gmail.com>2013-03-21 09:26:07 +1100
commit38d06478614adcf68a45947cb162c3152e2d7bb1 (patch)
treeba3f0cc7cadc9915162325153f2c1c318a080c90
parent687e68d88f5e1a7bb6a2d876fbbc5b8c4571d853 (diff)
downloadrails-38d06478614adcf68a45947cb162c3152e2d7bb1.tar.gz
rails-38d06478614adcf68a45947cb162c3152e2d7bb1.tar.bz2
rails-38d06478614adcf68a45947cb162c3152e2d7bb1.zip
Added changelog for 687e68d
-rw-r--r--actionpack/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 8c7e3327f3..19511225a0 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,11 @@
## unreleased ##
+* Fixed assets loading performance in 3.2.13.
+
+ The PR #8756 uses Sprockets for resolving files that already exists on disk, for those files their extensions don't need to be rewritten. Fixes #9803.
+
+ *Fred Wu*
+
* `ActiveSupport::NumberHelper#number_to_human` returns the number unaltered when
the units hash does not contain the needed key, e.g. when the number provided is less
than the largest key proivided.