aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorPeter Wagenet <peter.wagenet@gmail.com>2012-09-17 10:36:15 -0700
committerPeter Wagenet <peter.wagenet@gmail.com>2012-09-17 15:32:31 -0700
commit1ac19c11792a745cd654f02dfaed8e93f95b3c70 (patch)
tree68f8dacd5fe1cb44ba2db4561148ad8fc4eef827 /actionpack/CHANGELOG.md
parent24a77743b69b2a3452848f7d78afd2692b209a03 (diff)
downloadrails-1ac19c11792a745cd654f02dfaed8e93f95b3c70.tar.gz
rails-1ac19c11792a745cd654f02dfaed8e93f95b3c70.tar.bz2
rails-1ac19c11792a745cd654f02dfaed8e93f95b3c70.zip
Respect `config.digest = false` for `asset_path`
Previously, the `asset_path` internals only respected the `:digest` option, but ignored the global config setting. This meant that `config.digest = false` could not be used in conjunction with `config.compile = false` this corrects the behavior.
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index bfb561a154..c52241a9c0 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,14 @@
## Rails 3.2.9 (unreleased) ##
+* Respect `config.digest = false` for `asset_path`
+
+ Previously, the `asset_path` internals only respected the `:digest`
+ option, but ignored the global config setting. This meant that
+ `config.digest = false` could not be used in conjunction with
+ `config.compile = false` this corrects the behavior.
+
+ *Peter Wagenet*
+
* Fix #7646, the log now displays the correct status code when an exception is raised.
*Yves Senn*