From 5715bee4a598bea7dcfe293a7be364b62cc0f3f4 Mon Sep 17 00:00:00 2001 From: hsbt Date: Thu, 24 Dec 2015 14:02:02 +0000 Subject: [PATCH] * NEWS: added entry for CGI.escapeHTML optimization. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53281 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ NEWS | 3 +++ 2 files changed, 7 insertions(+) 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 + + * NEWS: added entry for CGI.escapeHTML optimization. + Thu Dec 24 18:43:19 2015 Nobuyoshi Nakada * 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