diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-06-19 04:35:17 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-06-19 04:35:17 +0000 |
| commit | d4418a4b5b7c02a85455f5f1f0627b97364dba25 (patch) | |
| tree | 98247086ea05415f034f0b5a0e6cc97163f47be2 /ChangeLog | |
| parent | f043d2f971d97ba5b2dfdf3f93e00accf8a3d3ad (diff) | |
| download | ruby-d4418a4b5b7c02a85455f5f1f0627b97364dba25.tar.gz ruby-d4418a4b5b7c02a85455f5f1f0627b97364dba25.tar.xz ruby-d4418a4b5b7c02a85455f5f1f0627b97364dba25.zip | |
* eval.c (rb_f_require): searches ".rb" and ".so" at the same
time. previous behavior (search ".rb", then ".so") has a
security risk (ruby-bugs#PR140).
* array.c (rb_ary_to_ary): new function to replace internal
rb_Array(), which never calls to_a, but to_ary (rb_Array() might
call both). [new]
* regex.c (PUSH_FAILURE_POINT): push option status again.
* regex.c (re_compile_pattern): avoid pushing unnecessary
option_set.
* eval.c (rb_load): tainted string is OK if wrapped *and*
$SAFE >= 4.
* eval.c (rb_thread_start_0): should not nail down higher blocks
before preserving original context (i.e. should not alter
original context).
* eval.c (proc_yield): new method equivalent to Proc#call but no
check for number of arguments. [new]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1526 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -1,9 +1,42 @@ +Mon Jun 18 17:38:50 2001 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (rb_f_require): searches ".rb" and ".so" at the same + time. previous behavior (search ".rb", then ".so") has a + security risk (ruby-bugs#PR140). + + * array.c (rb_ary_to_ary): new function to replace internal + rb_Array(), which never calls to_a, but to_ary (rb_Array() might + call both). [new] + +Mon Jun 18 00:43:20 2001 Yukihiro Matsumoto <matz@ruby-lang.org> + + * regex.c (PUSH_FAILURE_POINT): push option status again. + + * regex.c (re_compile_pattern): avoid pushing unnecessary + option_set. + +Sat Jun 16 10:58:48 2001 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (rb_load): tainted string is OK if wrapped *and* + $SAFE >= 4. + +Thu Jun 14 16:27:07 2001 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (rb_thread_start_0): should not nail down higher blocks + before preserving original context (i.e. should not alter + original context). + Wed Jun 13 19:34:59 2001 Akinori MUSHA <knu@iDaemons.org> * dir.c (Init_Dir): add a new method File::fnmatch? along with File::Constants::FNM_*. While I am here, FNM_NOCASE is renamed to FNM_CASEFOLD which is commonly used by *BSD and GNU libc. +Wed Jun 13 09:33:45 2001 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (proc_yield): new method equivalent to Proc#call but no + check for number of arguments. [new] + Tue Jun 12 14:21:28 2001 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp> * lib/mkmf.rb: target_prefix is only for installation, not for |
