aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-24 14:02:02 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-24 14:02:02 +0000
commit5715bee4a598bea7dcfe293a7be364b62cc0f3f4 (patch)
tree9c741eb44924280c06e18dea396e7bf1daf8f0d2
parent5a536c8f2d92e2150f5cd5e96914a2f38afd8447 (diff)
downloadruby-5715bee4a598bea7dcfe293a7be364b62cc0f3f4.tar.gz
* NEWS: added entry for CGI.escapeHTML optimization.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53281 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--NEWS3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 187d24281b..809f3189b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 24 23:01:57 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
+
+ * NEWS: added entry for CGI.escapeHTML optimization.
+
Thu Dec 24 18:43:19 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* error.c (rb_compile_error_with_enc, rb_compile_error),
diff --git a/NEWS b/NEWS
index f4bf516f7b..be722bc9de 100644
--- a/NEWS
+++ b/NEWS
@@ -399,3 +399,6 @@ with all sufficient information, see the ChangeLog file or Redmine
* (Linux-only) waiting on a single FD anywhere in the stdlib no longer
uses select(2), making it immune to slowdowns with high-numbered FDs.
[Feature #11081] [Feature #11377]
+
+* CGI.escapeHTML is optimized with C extention.
+ https://github.com/ruby/ruby/pull/1164