1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* NEWS: added entry for CGI.escapeHTML optimization.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53281 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2015-12-24 14:02:02 +00:00
parent 5a536c8f2d
commit 5715bee4a5
2 changed files with 7 additions and 0 deletions

View file

@ -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),

3
NEWS
View file

@ -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