aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-11-06 10:36:56 +0000
committerJon Leighton <j@jonathanleighton.com>2011-11-06 10:40:00 +0000
commitfc988115f75bdca6aa95454208b49125a5041117 (patch)
tree0c3af795a4459a6a80b29f419393e8d47121b417 /actionpack/CHANGELOG.md
parent7776055e2dcd29e0f8f27154663263c0bbd1c188 (diff)
downloadrails-fc988115f75bdca6aa95454208b49125a5041117.tar.gz
rails-fc988115f75bdca6aa95454208b49125a5041117.tar.bz2
rails-fc988115f75bdca6aa95454208b49125a5041117.zip
Implement a workaround for a bug in ruby-1.9.3p0.
The bug is that an error would be raised while attempting to convert a template from one encoding to another. Please see http://redmine.ruby-lang.org/issues/5564 for more details. The workaround is to load all conversions into memory ahead of time, and will only happen if the ruby version is *exactly* 1.9.3p0. The hope is obviously that the underlying problem will be resolved in the next patchlevel release of 1.9.3.
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 99c3ac3c04..74711c0320 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -62,6 +62,19 @@
persistent between requests so if you need to manipulate the environment
for your test you need to do it before the cookie jar is created.
+## Rails 3.1.2 (unreleased) ##
+
+* Implement a workaround for a bug in ruby-1.9.3p0 where an error would be raised
+ while attempting to convert a template from one encoding to another.
+
+ Please see http://redmine.ruby-lang.org/issues/5564 for details of the bug.
+
+ The workaround is to load all conversions into memory ahead of time, and will
+ only happen if the ruby version is *exactly* 1.9.3p0. The hope is obviously that
+ the underlying problem will be resolved in the next patchlevel release of
+ 1.9.3.
+
+ *Jon Leighton*
## Rails 3.1.1 (unreleased) ##