⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.140
Server IP:
68.65.123.197
Server:
Linux premium49.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
opt
/
alt
/
ruby18
/
share
/
doc
/
alt-ruby18
/
Edit File: ChangeLog
Thu Jun 27 20:55:23 2013 URABE Shyouhei
* test/openssl/test_ssl.rb: Oops, sorry! Thu Jun 27 20:21:18 2013 URABE Shyouhei
* ext/openssl/lib/openssl/ssl-internal.rb (OpenSSL::SSL#verify_certificate_identity): fix hostname verification. Patch by nahi. * test/openssl/test_ssl.rb (OpenSSL#test_verify_certificate_identity): test for above. Sat May 18 23:34:50 2013 Kouhei Sutou
* lib/rexml/document.rb: move entity_expansion_text_limit accessor to ... * lib/rexml/rexml.rb: ... here to make rexml/text independent from REXML::Document. It causes circular require. * lib/rexml/document.rb (REXML::Document.entity_expansion_text_limit): deprecated. * lib/rexml/document.rb (REXML::Document.entity_expansion_text_limit=): deprecated. * lib/rexml/text.rb: add missing require "rexml/rexml" for REXML.entity_expansion_text_limit. Reported by Robert Ulejczyk. Thanks!!! [ruby-core:52895] [Bug #7961] Sat May 18 23:34:50 2013 Aaron Patterson
* lib/rexml/document.rb (REXML::Document.entity_expansion_text_limit): new attribute to read/write entity expansion text limit. the default limit is 10Kb. * lib/rexml/text.rb (REXML::Text.unnormalize): check above attribute. Fri Oct 12 12:25:15 2012 URABE Shyouhei
* error.c (name_err_to_s): we need not infect msg. * test/ruby/test_exception.rb (TestException#test_exception_to_s_should_not_propagate_untrustedness): test for it. Fri Jun 29 21:26:05 2012 Nobuyoshi Nakada
* eval.c (stack_extend): prevent ALLOCA_N, which reserves a memory space with for restoring machine stack stored in each threads, from optimization out. backport r34278 from the trunk. Mon Jun 18 18:32:43 2012 Martin Bosslet
* backport r32609 from trunk. * ext/openssl/ossl_hmac.c: Revert checking return type of HMAC_Init_ex as it is not compatible with OpenSSL < 1.0.0. Mon Jun 18 18:32:43 2012 Martin Bosslet
* backport r32606 from trunk. * ext/openssl/ossl_digest.c: Check return value of EVP_DigestInit_ex. * ext/openssl/ossl_hmac.c: Check return value of HMAC_Init_ex. Thanks, Jared Jennings, for the patch. [ Ruby 1.9 - Bug #4944 ] [ruby-core:37670] Sun Jun 10 03:00:21 2012 Nobuyoshi Nakada
* eval.c (ruby_setjmp): need to save the stack after r2 (the Table of Contents on ppc64) is saved onto the stack by getcontext(). based on
. Bug#4411 Thu Jun 7 19:00:35 2012 Kenta Murata
* ext/bigdecimal/bigdecimal.c (VpMemAlloc): Fixes a bug reported by Drew Yao
Wed Jun 6 15:09:00 2012 Nobuyoshi Nakada
* eval.c (rb_thread_join), ext/thread/thread.c (wake_one): adjusts targets of rest waiting threads to join. [ruby-core:23457] Wed Jun 6 14:44:13 2012 Kenta Murata
* bignum.c (rb_big2dbl), test/ruby/test_bignum.rb (test_to_f): A negative Bignum out of Float range should be converted to -Infinity. [ruby-core:30492] [Bug #3362] Wed Jun 6 14:06:02 2012 Tanaka Akira
* lib/webrick/utils.rb: fix fcntl call. * lib/drb/unix.rb: ditto. Mon May 21 16:29:47 2012 Akinori MUSHA
* ext/syslog/syslog.c (mSyslog_inspect): Make sure self is a module before calling rb_class2name(). Fri May 11 14:09:48 2012 Nobuyoshi Nakada
* ext/bigdecimal/bigdecimal.c (PUSH): to prevent VALUE from GC, must not cast it to unsigned long, which may be shorter than VALUE, and the result can be mere garbage. Sat Apr 14 18:51:41 2012 Nobuyoshi Nakada
* bignum.c (rb_big2str0): prevent working clone from GC. [exerb-dev:0578]. patched by MURASE Masamitsu
at [exerb-dev:0580] Fri Mar 2 11:44:33 2012 Nobuyoshi Nakada
* marshal.c (mark_dump_arg): mark destination string. patch by Vit Ondruch. [Bug #4339] * marshal.c (clear_dump_arg, clear_load_arg): clean up also data tables as same as symbols tables. Fri Mar 2 11:44:33 2012 Nobuyoshi Nakada
* marshal.c (struct {dump,load}_arg): manage with dfree, instead of using local variable which may be moved by context switch. [ruby-dev:39425] Wed Feb 8 14:06:59 2012 Hiroshi Nakamura
* ext/openssl/ossl_ssl.c: Add SSL constants and allow to unset SSL option to prevent BEAST attack. See [Bug #5353]. In OpenSSL, OP_DONT_INSERT_EMPTY_FRAGMENTS is used to prevent TLS-CBC-IV vulunerability described at http://www.openssl.org/~bodo/tls-cbc.txt It's known issue of TLSv1/SSLv3 but it attracts lots of attention these days as BEAST attack. (CVE-2011-3389) Until now ossl sets OP_ALL at SSLContext allocation and call SSL_CTX_set_options at connection. SSL_CTX_set_options updates the value by using |= so bits set by OP_ALL cannot be unset afterwards. This commit changes to call SSL_CTX_set_options only 1 time for each SSLContext. It sets the specified value if SSLContext#options= are called and sets OP_ALL if not. To help users to unset bits in OP_ALL, this commit also adds several constant to SSL such as OpenSSL::SSL::OP_DONT_INSERT_EMPTY_FRAGMENTS. These constants were not exposed in Ruby because there's no way to unset bits in OP_ALL before. Following is an example to enable 0/n split for BEAST prevention. ctx.options = OP_ALL & ~OP_DONT_INSERT_EMPTY_FRAGMENTS * test/openssl/test_ssl.rb: Test above option exists. Wed Dec 28 21:34:23 2011 URABE Shyouhei
* string.c (rb_str_hash): randomize hash to avoid algorithmic complexity attacks. CVE-2011-4815 * st.c (strhash): ditto. * string.c (Init_String): initialization of hash_seed to be at the beginning of the process. * st.c (Init_st): ditto. Thu Dec 8 11:57:04 2011 Tanaka Akira
* inits.c (rb_call_inits): call Init_RandomSeed at first. * random.c (seed_initialized): defined. (fill_random_seed): extracted from random_seed. (make_seed_value): extracted from random_seed. (rb_f_rand): initialize random seed at first. (initial_seed): defined. (Init_RandomSeed): defined. (Init_RandomSeed2): defined. (rb_reset_random_seed): defined. (Init_Random): call Init_RandomSeed2. Sat Dec 10 20:44:23 2011 Tanaka Akira
* lib/securerandom.rb: call OpenSSL::Random.seed at the SecureRandom.random_bytes call. insert separators for array join. patch by Masahiro Tomita. [ruby-dev:44270] Mon Oct 17 04:20:22 2011 Nobuyoshi Nakada
* mkconfig.rb: fix for continued lines. based on a patch from Marcus Rueckert
at [ruby-core:20420]. Mon Oct 17 04:19:39 2011 Yukihiro Matsumoto
* numeric.c (flo_cmp): Infinity is greater than any bignum number. [ruby-dev:38672] * bignum.c (rb_big_cmp): ditto. Mon Oct 17 03:56:12 2011 Yusuke Endoh
* ext/openssl/ossl_x509store.c (ossl_x509store_initialize): initialize store->ex_data.sk. [ruby-core:28907] [ruby-core:23971] [ruby-core:18121] Thu Jun 30 12:52:56 2011 WATANABE Hirofumi
* ext/tk/extconf.rb (intptr_t, uintptr_t): support for the latest ActiveTcl with mingw. Sun Jun 26 17:52:32 2011 Nobuhiro Iwamatsu
* ext/openssl/ossl_ssl.c: By trunk@31346, function check of SSLv2 is executed. However, the problem is not revised in this. This adds the control of using function of SSLv2 in made macro by function check. Sun Jun 26 17:52:32 2011 Nobuhiro Iwamatsu
* ext/openssl/extconf.rb: Should check SSLv2_*method. openssl compiled with "no-ssl2" the extconf don't fail when running `make' having this compilation errors. Patched by Laurent Arnoud. fixes #4562, #4556 Sun Jun 26 17:46:43 2011 URABE Shyouhei
* ext/tk/extconf.rb: copy from trunk, as requested by Hidetoshi NAGAI. Thu Jun 23 18:38:43 2011 Hiroshi Nakamura
backported r26281 from ruby_1_8 * lib/webrick/accesslog.rb (WEBrick::AccessLog.format): log parameter embedding did not work. See #4913. * test/webrick/test_accesslog.rb: Add for test it. Thu Jun 16 22:55:02 2011 Hiroshi Nakamura
* test/test_securerandom.rb: Add testcase. This testcase does NOT aim to test cryptographically strongness and randomness. It includes the test for PID recycle issue of OpenSSL described in #4579 but it's disabled by default. Mon Jun 13 18:33:04 2011 Tanaka Akira
* lib/securerandom.rb (SecureRandom.random_bytes): modify PRNG state to prevent random number sequence repeatation at forked child process which has same pid. reported by Eric Wong. [ruby-core:35765] Thu Jun 2 18:33:51 2011 URABE Shyouhei
* variable.c (rb_const_get_0): Fix previous change. There were possibilities when an autoload-specified library lacks definition of the constant it was bound to. Once after such library had already beed loaded, the autoload engine shall not reload it. Instead the interpreter have to consider such constant nonexistent. It results in a const_missing situation. * variable.c (rb_autoload_load): ditto. * variable.c (autoload_node): ditto. Thu Jun 2 18:28:58 2011 URABE Shyouhei
* variable.c (rb_autoload_load): There is a race condition while autoloading. When two or more threads touch a single autoloaded constant at a time, one of them does the require, but others behave oddly. To fix this situation we now refrain from deleting the autoload table while someone is doing the autoload. That deletion is deferred to a point where a require ended successfully. Doing so make it possible for multiple threads to enter autoloading at the same time but the require is protected against multiple simultaneous entrance anyway so all but one thread gets blocked at that point. So with it, touching a constant that gets autoloaded cause those threads to block until there is another one that does the same thing. [ruby-core:36308] (#921) * variable.c (rb_const_get_0): ditto. * variable.c (autoload_node): ditto. * variable.c (autoload_delete): ditto. Mon May 30 10:58:17 2011 Hiroshi Nakamura
* lib/logger.rb (Logger::ProgName): do not depend on subversion keyword ($Id: ChangeLog 41678 2013-06-27 11:56:26Z shyouhei $). ProgName with revision number was written in the header line of each logfile for ease of tracking what version user is using in troubleshooting. Logger is already stable enough. Sat May 21 07:33:54 2011 Yusuke Endoh
* ext/zlib/zlib.c (zstream_append_input2): add RB_GC_GUARD. This caused failure when test/csv is executed with GC.stress = true. Sat May 21 05:43:03 2011 URABE Shyouhei
* eval.c (rb_thread_atfork): When a ruby process forks, its random seed shall be reinitialized to prevent CVE-2003-0900 situation. This bug affects for 1.8 and earlier series, but not for 1.9. fixed [ruby-core:34944]. * io.c (pipe_open): ditto. * random.c (rb_reset_random_seed): ditto. * intern.h (rb_reset_random_seed): ditto. Sat May 21 04:55:15 2011 Akinori MUSHA
* lib/uri/generic.rb (#route_from_path): Fix a bug where URI('http://h/b/').route_to('http://h/b') wrongly returned './' (should be '../b'). [Bug #4476] Sat May 21 04:54:20 2011 Akinori MUSHA
* lib/fileutils.rb (FileUtils#touch): Fix corrupted output. ref [ruby-dev:43401] Sat May 21 02:10:09 2011 Yukihiro Matsumoto
* re.h (RMATCH_REGS): parenthesize cast expression. suggested from Nikolai Weibull in [ruby-core:35825]. Sat May 21 01:32:08 2011 NAKAMURA Usaku
backported r31286 from trunk * numeric.c (ruby_float_step): wrong loop condition. fixes [ruby-core:35753], reported by Joey Zhou. * test/ruby/test_range.rb (TestRange#test_step_ruby_core_35753): test above change. Sat May 21 00:55:21 2011 NARUSE, Yui
* ext/zlib/zlib.c (gzfile_check_footer): ISIZE (Input SIZE) in gzip's header is the size of uncompressed input data modulo 2^32. [ruby-core:34481] http://www.ietf.org/rfc/rfc1952.txt Fri May 20 23:46:44 2011 NAKAMURA Usaku
* ext/socket/{getaddrinfo,getnameinfo}.c: include winsock2.h only when specified to use winsock2 by user. this problem is reported by kosaki. Fri May 20 23:23:45 2011 NAKAMURA Usaku
* ext/socket/socket.c (make_addrinfo): skip IPv6 addresses when ruby doesn't support IPv6 but system supports it. [ruby-dev:42944] (#4230) Fri May 20 23:10:07 2011 NAKAMURA Usaku
* win32/README.win32: note to need NT based OS to build ruby. * win32/{configure.bat,setup.mak}: backport current build method from trunk. [ruby-dev:42893] (#4206) Fri May 20 23:06:31 2011 NAKAMURA, Hiroshi
* Backported the fix at Mon Sep 13 09:23:58 2010 NARUSE, Yui
* ext/openssl/ossl_bn.c (ossl_bn_is_prime): fix comparison with rb_scan_args. Before this fix, OpenSSL::BN#prime? is fully broken. Fri May 20 23:06:31 2011 NAKAMURA, Hiroshi
* Backported the fix at Mon Oct 4 09:30:42 2010 NARUSE, Yui
* ext/openssl/lib/openssl/bn.rb (Integer#to_bn): OpenSSL::BN.new accepts only Strings, so call Integer#to_s(16). 16 is for an optimization. [ruby-dev:42336] Fri Feb 18 21:18:55 2011 Shugo Maeda
* test/ruby/test_exception.rb (TestException::test_to_s_taintness_propagation): Test for below. Fri Feb 18 21:18:55 2011 URABE Shyouhei
* error.c (exc_to_s): untainted strings can be tainted via Exception#to_s, which enables attackers to overwrite sane strings. Reported by: Yusuke Endoh
. * error.c (name_err_to_s): ditto. Fri Feb 18 21:17:22 2011 Shugo Maeda
* lib/fileutils.rb (FileUtils::remove_entry_secure): there is a race condition in the case where the given path is a directory, and some other user can move that directory, and create a symlink while this method is executing. Reported by: Nicholas Jefferson
Fri Feb 18 19:46:46 2011 NAKAMURA Usaku
* win32/win32.c (init_stdhandle): backport mistake of r29382. some code are needless in ruby 1.8. [ruby-core:34579] Fri Feb 18 19:22:17 2011 URABE Shyouhei
* configure.in: revert revision r29854. This revision introduced binary incompatibilities on some circumstances. The bug that revision was fixing gets reopened by this reversion. [ruby-dev:43152] cf. [Bug #2553] Thu Dec 23 12:22:35 2010 Tanaka Akira
* lib/resolv.rb (Resolv::IPv4::Regex): make it only accept 0 to 255. [ruby-core:29501] Tue Dec 21 01:43:01 2010 NAKAMURA, Hiroshi
* lib/webrick/https.rb: uninitialized instance variables. Backport a part of r20864 for ruby_1_8. Sat Dec 4 11:35:15 2010 Nobuyoshi Nakada
* lib/mkmf.rb (init_mkmf): needs default library path even if cross compiling. Sat Dec 4 11:25:02 2010 NAKAMURA Usaku
* re.c (rb_reg_regcomp): should succeed the taint status from the origin. [ruby-core:33338] Thu Dec 2 21:13:42 2010 URABE Shyouhei
* Makefile.in (fake.rb): need to expand the topdir in case of it being relative, a patch from Luis Lavena
. [ruby-core:33466] Wed Nov 24 18:24:26 2010 NAKAMURA Usaku
* ext/socket/extconf.rb: backported entirely from ruby_1_8, with small modifications for the difference of mkmf.rb. Wed Nov 24 16:24:24 2010 Nobuyoshi Nakada
* mkconfig.rb (patchlevel): config.status may not contain PATCHLEVEL even if other version numbers exist. Wed Nov 24 16:18:02 2010 URABE Shyouhei
* win32/Makefile.sub ($(RCFILES)): no revision.h in this branch, a patch from Luis Lavena
. [ruby-core:33310] * cygwin/GNUmakefile.in ($(RCFILES)): ditto. Wed Nov 24 15:44:11 2010 NAKAMURA Usaku
* ext/socket/extconf.rb (getaddrinfo): should initialize winsock on windows. Wed Nov 24 13:55:21 2010 NAKAMURA Usaku
* win32/setup.mak: use findstr.exe instead of find.exe, because all target build platforms should have findstr.exe, and, find.exe often means another command such as cygwin's. Wed Nov 24 13:27:34 2010 NAKAMURA, Hiroshi
* ext/stringio/stringio.c (strio_getline): fix for "" as separator. [ruby-dev:34591] (Backport r17739 by Yusuke Endoh from trunk). Wed Nov 24 13:27:20 2010 Kazuhiro NISHIYAMA
* lib/net/pop.rb (Net::POP3#set_all_uids): speed up. a patch from
[ruby-list:45047] Tue Nov 23 20:48:10 2010 Shugo Maeda
* lib/net/imap.rb (initialize): sets sync_close to true. Thanks, Hiroshi NAKAMURA. [ruby-core:31753] Tue Nov 23 17:09:14 2010 NAKAMURA Usaku
* lib/pathname.rb (relative_path_from): backport r23093 and r25440 from ruby_1_9_2. [ruby-core:32415] Mon Nov 22 14:13:45 2010 Masaki Suketa
* ext/win32ole/win32ole.c: fix checking version of GCC. Mon Nov 22 14:13:45 2010 Masaki Suketa
* ext/win32ole/win32ole.c: NONAMELESSUNION defined only if gcc version is older than 3.4.4. [ruby-core:31567] [Bug #3637] * ext/win32ole/extconf.rb: ditto. Fri Nov 19 19:28:00 2010 URABE Shyouhei
* Makefile.in (fake.rb): hook needed to fake mkmf.rb. #2531 [ruby-core:27327] Mon Oct 18 10:21:01 2010 NARUSE, Yui
* lib/net/http.rb (transport_request): @socket may be nil. patched by Egbert Eich [ruby-core:32829] Fri Oct 8 10:51:56 2010 Nobuyoshi Nakada
* common.mk (RBCONFIG): depends on version.h due to RUBY_PATCHLEVEL. [ruby-core:32709] Thu Oct 7 18:10:35 2010 Nobuyoshi Nakada
* cygwin/GNUmakefile.in, win32/Makefile.sub (RCFILES): depend on real config.rb file. [ruby-core:32709] Sun Oct 3 18:30:23 2010 Nobuyoshi Nakada
* parse.y (rb_intern): should check symbol table overflow. #3900 [ruby-dev:42330] Fri Oct 1 15:12:05 2010 NAKAMURA Usaku
* win32/win32.c (init_stdhandle): redirect unopened IOs to NUL. backport r11362 from trunk. [ruby-core:31445] Mon Aug 23 11:42:41 2010 NAKAMURA, Hiroshi
* ext/openssl/ossl_asn1.c (obj_to_asn1bool): fixed ASN1::Boolean encoding issue for OpenSSL 1.0.0 compatibility. ASN1::Boolean.new(false).to_der wrongly generated "\1\1\377" which means 'true'. [BUG:3735] ASN1_TYPE_set of OpenSSL <= 0.9.8 treats value 0x100 as 'false' but OpenSSL >= 1.0.0 treats it as 'true'. ruby-ossl was using 0x100 for 'false' for backward compatibility. Just use 0x0 for the case OpenSSL >= OpenSSL 0.9.7. * test/openssl/test_asn1.rb: test added. Tue Aug 10 17:35:49 2010 NARUSE, Yui
* lib/webrick/httprequest.rb (WEBrick::HTTPRequest::parse_uri): rollup leading slashes. [ruby-core:31657] patched by Jamison Wilde NOTE: //authority/path is valid relative URI both RFC2396 and RFC3986. So when give a relative URI-like string to URI lib, users must care leading slashes. Fri Jul 30 08:51:51 2010 Nobuyoshi Nakada
* file.c (file_expand_path): home directory must be absolute. [ruby-core:31537] Fri Jul 30 08:33:20 2010 Nobuyoshi Nakada
* file.c (file_expand_path): should check if could find user. [ruby-core:31538] Thu Jul 29 22:43:57 2010 NAKAMURA, Hiroshi
* lib/webrick/ssl.rb (WEBrick::Utils.create_self_signed_cert): wrongly created dummy SSL certificate with version == 3 (no such version) and serial == 0 (must be >0). Sat Jul 24 15:44:29 2010 Masaki Suketa
* ext/win32ole/win32ole.c (fev_initialize): initialize pTypeInfo. [ruby-core:31304][Bug #3576]. Tue Jul 13 21:46:38 2010 NAKAMURA, Hiroshi
* ext/openssl/ossl_config.c, ext/openssl/lib/openssl/config.rb, ext/openssl/lib/openssl.rb: reimplement OpenSSL::Config in Ruby. Now it should work on windows. * test/openssl/test_config.rb: added tests for OpenSSL::Config#dup. Mon Jul 12 22:26:00 2010 NAKAMURA, Hiroshi
* ext/openssl/ossl_config.c (ossl_config_copy): wrongly updating the given object with uninitialized CONF data. now OpenSSL::Config#clone works as expected; cloning the config instead of SEGV or empty definition. * test/openssl/test_config.rb: added tests for Config#clone. Thu Jul 8 13:43:13 2010 NAKAMURA, Hiroshi
* test/openssl/test_config.c: added tests for all Config methods. Wed Jul 7 13:24:24 2010 NAKAMURA Usaku
* file.c (ruby_find_basename): set correct baselen. Fri Jul 2 23:34:45 2010 NAKAMURA Usaku
* file.c (ruby_find_basename, ruby_find_extname): split from rb_file_s_basename() and rb_file_s_extname(). * util.c (ruby_add_suffix): support arbitrary length of the suffix to get rid of the potential buffer overflow. reported by tarui. Sat Jul 10 10:51:29 2010 KOSAKI Motohiro
* configure.in: fix use_context condition inversion. [Bug #2553][ruby-core:31164]. Thanks, Andre Nathan. Wed Jun 23 21:36:45 2010 Nobuyoshi Nakada
* configure.in: avoid getcontext() overhead if possible. [ruby-core:27380][Bug #2553] Thanks, Joe Damato, Dan Peterson and Patrick Mohr. Wed Jan 13 06:54:44 2010 Nobuyoshi Nakada
* configure.in: check for if struct timezone is defined. * missing.h (struct timezone): define if not defined. * win32/win32.h (struct timezone): defined in the newer w32api. [ruby-core:27515] Sun Aug 15 19:59:58 2010 Yuki Sonoda (Yugui)
* lib/webrick/httpresponse.rb (WEBrick::HTTPResponse#set_error): Fix for possible cross-site scripting (CVE-2010-0541). Found by Apple, reported by Hideki Yamane. Patch by Hirokazu Nishio
. Sat Jul 17 15:19:58 2010 KOSAKI Motohiro
* configure.in: Change AC_PREREQ from 2.58 to 2.60 because AC_CASE macro require 2.60 or later. Thanks, Mitsuru SHIMAMURA. [Bug #3579] [ruby-dev:41856] Wed Jun 23 22:22:42 2010 Nobuyoshi Nakada
* test/optparse/test_summary.rb: fixed superclass so that it run solely. Wed Jun 23 21:54:17 2010 URABE Shyouhei
* marshal.c, test/ruby/test_marshal.rb: Revert r25230. This test is troublesome. Mon Jun 21 18:12:15 2010 NAKAMURA Usaku
* ext/openssl/extconf.rb: check some functions added at OpenSSL 1.0.0. * ext/openssl/ossl_engine.c (ossl_engine_s_load): use engines which exists. Mon Jun 21 18:12:15 2010 NAKAMURA, Hiroshi
* ext/openssl/ossl_config.c: defined own IMPLEMENT_LHASH_DOALL_ARG_FN_098 macro according to IMPLEMENT_LHASH_DOALL_ARG_FN in OpenSSL 0.9.8m. OpenSSL 1.0.0beta5 has a slightly different definiton so it could be a temporal workaround for 0.9.8 and 1.0.0 dual support. * ext/openssl/ossl_pkcs5.c (ossl_pkcs5_pbkdf2_hmac): follows function definition in OpenSSL 1.0.0beta5. PKCS5_PBKDF2_HMAC is from 1.0.0 (0.9.8 only has PKCS5_PBKDF2_HMAC_SHA1) * ext/openssl/ossl_ssl_session.c (ossl_ssl_session_eq): do not use SSL_SESSION_cmp and implement equality func by ousrself. See the comment. Mon Jun 21 18:12:15 2010 NAKAMURA, Hiroshi
* ext/openssl/ossl_ssl_session.c (ossl_ssl_session_{get,set}_time{,out}): fixed a bug introduced by backporting. (see [ruby-dev:40573]) use long in according to OpenSSL API. (SSL_SESSION_{get,set}_time{,out}) Mon Jun 21 18:12:15 2010 NAKAMURA, Hiroshi
* ext/openssl/ossl_x509name.c: added X509::Name#hash_old as a wrapper for X509_NAME_hash_old in OpenSSL 1.0.0. * test/openssl/test_x509name.rb (test_hash): make test pass with OpenSSL 1.0.0. Mon Jun 21 18:12:15 2010 NAKAMURA, Hiroshi
* test/openssl/test_x509*: make tests pass with OpenSSL 1.0.0b5. * PKey::PKey#verify raises an exception when a given PKey does not match with signature. * PKey::DSA#sign accepts SHA1, SHA256 other than DSS1. Mon Jun 21 18:12:15 2010 NAKAMURA, Hiroshi
* backport the commit from trunk: Sun Feb 28 11:49:35 2010 NARUSE, Yui
* openssl/ossl.c (OSSL_IMPL_SK2ARY): for OpenSSL 1.0. patched by Jeroen van Meeuwen at [ruby-core:25210] fixed by Nobuyoshi Nakada [ruby-core:25238], Hongli Lai [ruby-core:27417], and Motohiro KOSAKI [ruby-core:28063] * ext/openssl/ossl_ssl.c (ossl_ssl_method_tab), (ossl_ssl_cipher_to_ary): constified. * ext/openssl/ossl_pkcs7.c (pkcs7_get_certs, pkcs7_get_crls): split pkcs7_get_certs_or_crls. Mon Jun 21 18:12:15 2010 NAKAMURA, Hiroshi
* test/openssl/test_ec.rb: added test_dsa_sign_asn1_FIPS186_3. dgst is truncated with ec_key.group.order.size after openssl 0.9.8m for FIPS 186-3 compliance. WARNING: ruby-openssl aims to wrap an OpenSSL so when you're using openssl 0.9.8l or earlier version, EC.dsa_sign_asn1 raises OpenSSL::PKey::ECError as before and EC.dsa_verify_asn1 just returns false when you pass dgst longer than expected (no truncation performed). * ext/openssl/ossl_pkey_ec.c: rdoc typo fixed. Wed Jun 16 16:01:42 2010 Tanaka Akira
* lib/pathname.rb (Pathname#sub): suppress a warning. [ruby-dev:38488] Wed Jun 16 15:21:12 2010 Nobuyoshi Nakada
* test/webrick/utils.rb (TestWEBrick#start_server): add log for test_filehandler.rb Wed Jun 16 15:21:12 2010 Nobuyoshi Nakada
* lib/net/http.rb (Net::HTTPHeader#{content_range,range_length}): use inclusive range same as the header representation. Thu Jun 10 14:39:35 2010 Nobuyoshi Nakada
* test/iconv/test_option.rb: removed particular implementation specific tests. [ruby-dev:40078] Thu Jun 10 14:22:09 2010 URABE Shyouhei
* lib/webrick/httpstatus.rb (WEBrick::HTTPStatus::Status::initialize): accept 0 or more arguments. [ruby-core:28692] Thu Jun 10 13:37:35 2010 Nobuyoshi Nakada
* eval.c (rb_load): initialize orig_func. [ruby-core:27296] Tue Jun 8 18:57:48 2010 NAKAMURA Usaku
* win32/Makefile.sub (config.status): no need to embbed manifest if not exist. Tue Jun 8 18:38:36 2010 NAKAMURA Usaku
* include/ruby/win32.h: include errno.h before defining errnos. * include/ruby/win32.h: check definition existance before defining errno macros. * win32/win32.c (errmap): define winsock errors mappings. these are VC++10 support, merge from trunk (r27236, r27258). Tue Jun 8 18:31:02 2010 NARUSE, Yui
* regexp.c (re_compile_pattern): allow zero times match for non-greedy range repeatation. [ruby-core:30613] Tue Jun 8 18:08:18 2010 URABE Shyouhei
* Makefile.in (fake.rb): double the backslash. Tue Jun 8 18:08:15 2010 NAKAMURA Usaku
* configure.in: should replace COMMON_HEADERS if --with-winsock2 is specified. [ruby-dev:41521] Tue Jun 8 17:49:18 2010 KOSAKI Motohiro
* io.c, eval.c, process.c: remove all condition of r26371. now, all platform use the same way. [Bug #3278][ruby-core:30167] Tue Jun 8 17:45:36 2010 Nobuyoshi Nakada
* ext/iconv/iconv.c (rb_iconv_sys_fail): fix number of arguments. a patch by Masaya TARUI
. Tue Jun 8 17:45:36 2010 Nobuyoshi Nakada
* ext/iconv/iconv.c (rb_iconv_sys_fail): raise BrokenLibrary if errno is not set. [ruby-dev:41317] Tue Jun 8 17:32:37 2010 Tanaka Akira
* pack.c (pack_pack): call rb_quad_pack to preserve RangeError. Tue Jun 8 17:32:37 2010 Tanaka Akira
* pack.c: backport integer pack/unpack from 1.9 for [ruby-core:21937]. * configure.in: backport RUBY_DEFINT and fixed size integer checks. * ruby.h: include stdint.h if available. * bignum.c (rb_big_pack): defined.. (rb_big_unpack): defined. * intern.h (rb_big_pack): declared. (rb_big_unpack): declared. Tue Jun 8 16:52:35 2010 Nobuyoshi Nakada
* regex.c (read_special): get rid of overrun. Tue Jun 8 16:51:48 2010 Shugo Maeda
* lib/net/imap.rb: backported exception handling from trunk. [ruby-core:29745] Tue Jun 8 16:42:48 2010 Nobuyoshi Nakada
* ext/bigdecimal/bigdecimal.c (VpAlloc): ensure buf does not get collected. based on a patch masaya tarui at [ruby-dev:41213]. Tue Jun 8 16:08:00 2010 Shugo Maeda
* lib/net/imap.rb (fetch_internal): do not quote message data item names. Thanks, Eric Hodel. [ruby-core:23508] backported form trunk. Tue Jun 8 15:45:52 2010 Shugo Maeda
* lib/net/imap (encode_utf7): encode & properly. Thanks, Kengo Matsuyama. [ruby-dev:38063] backported from trunk. Tue Jun 8 15:43:43 2010 Masaki Suketa
* ext/win32ole/win32ole.c (ole_val2variant): fix the core dump when converting Array object to VT_ARRAY variant. [ruby-core:28446] [Bug #2836] Tue Jun 8 15:34:15 2010 Nobuyoshi Nakada
* file.c (rb_file_s_extname): skip last directory separators. [ruby-core:29627] Tue Jun 8 15:33:30 2010 URABE Shyouhei
* lib/fileutils.rb (FileUtils::cp_r): dup needed here; options are destroyed otherwise. Tue Jun 8 15:27:00 2010 Nobuyoshi Nakada
* eval.c (search_required): expand home relative path first. [ruby-core:29610] Tue Jun 8 15:23:10 2010 Nobuyoshi Nakada
* lib/timeout.rb (Timeout#timeout): propagate errors to the caller. [ruby-dev:41010]' Tue Jun 8 15:15:18 2010 Nobuyoshi Nakada
* lib/net/smtp.rb (Net::SMTP#rcptto_list): fixed typo. [ruby-core:29809] Tue Jun 8 15:15:18 2010 Nobuyoshi Nakada
* lib/net/smtp.rb (Net::SMTP#rcptto_list): continue when at least one RCPT is accepted. based on a patch from Kero van Gelder at [ruby-core:26190]. Tue Jun 8 15:14:11 2010 Nobuyoshi Nakada
* LEGAL: separated the section for parse.c. contributed by Paul Betteridge in [ruby-core:29472]. Tue Jun 8 14:00:33 2010 Keiju Ishitsuka
* ext/rational/lib/rational.rb: fix [Bug #1397]. Tue Jun 8 13:40:04 2010 Tadayoshi Funaba
* lib/date.rb (Date#>>): fixed. [ruby-core:28011] Tue Jun 8 12:37:56 2010 NARUSE, Yui
* io.c, eval.c, process.c: add linux to r26371's condition. patched by Motohiro KOSAKI [ruby-core:28151] Tue Jun 8 12:37:56 2010 NAKAMURA Usaku
* eval.c (thread_timer, rb_thread_stop_timer): check the timing of stopping timer. patch from KOSAKI Motohiro
via IRC. * eval.c (rb_thread_start_timer): NetBSD5 seems to be hung when calling pthread_create() from pthread_atfork()'s parent handler. * io.c (pipe_open): workaround for NetBSD5. stop timer thread before fork(), and restart it after fork() on parent, and on child if needed. * process.c (rb_f_fork, rb_f_system): ditto. these changes are tested by naruse. fixed [ruby-dev:40074] Mon Jun 7 19:23:04 2010 Nobuyoshi Nakada
* ext/nkf/nkf-utf8/nkf.c (numchar_getc): get rid of buffer overflow. [ruby-dev:40606] Mon Jun 7 18:57:02 2010 NAKAMURA, Hiroshi
* ext/openssl/ossl_ssl_session.c (ossl_ssl_session_{get,set}_time{,out}): fixed a bug introduced by backporting. (see [ruby-dev:40573]) use long in according to OpenSSL API. (SSL_SESSION_{get,set}_time{,out}) Tue May 25 08:42:42 2010 NAKAMURA, Hiroshi
* ext/openssl: backport fixes in 1.9. * r25019 by marcandre * ossl_ocsp.c (ossl_ocspres_to_der): Bug fix in Response#to_def. Patch by Chris Chandler [ruby-core:18411] * r25017 by marcandre * ossl_config.c (ossl_config_add_value_m, ossl_config_set_section): Check if frozen (or untrusted for $SECURE >= 4) [ruby-core:18377] * r22925 by nobu * ext/openssl/openssl_missing.h (i2d_of_void): cast for callbacks. [ruby-core:22860] * ext/openssl/ossl_engine.c (ossl_engine_s_by_id): suppress a warning. * ext/openssl/ossl_ssl.c (ossl_sslctx_flush_sessions): time_t may be larger than long. * ext/openssl/ossl_ssl_session.c (ossl_ssl_session_get_time), (ossl_ssl_session_get_timeout): use TIMET2NUM() to convert time_t. * r22924 by nobu * ext/openssl/ossl_x509ext.c (ossl_x509ext_set_value): should use OPENSSL_free instead of free. a patch from Charlie Savage at [ruby-core:22858]. * r22918 by akr * ext/openssl: suppress warnings. * ext/openssl/ossl.h (OSSL_Debug): don't use gcc extention for variadic macro. * r22666 by akr * ext/openssl/lib/openssl/buffering.rb: define Buffering module under OpenSSL. [ruby-dev:37906] * r22440 by nobu * ext/openssl/ossl_ocsp.c (ossl_ocspbres_verify): OCSP_basic_verify returns positive value on success, not non-zero. [ruby-core:21762] * r22378 by akr * ext/openssl: avoid cyclic require. * ext/openssl/lib/openssl/ssl-internal.rb: renamed from ssl.rb * ext/openssl/lib/openssl/x509-internal.rb: renamed from x509.rb. [ruby-dev:38018] * r22101 by nobu * ext/openssl/ossl_cipher.c (add_cipher_name_to_ary): used conditionally. * r21510 by akr * ext/openssl/ossl.c (ossl_raise): abolish a warning. * r21208 by akr * ext/openssl/ossl_digest.c (GetDigestPtr): use StringValueCStr instead of STR2CSTR. * ext/openssl/ossl_pkey_ec.c (ossl_ec_key_initialize): ditto. (ossl_ec_group_initialize): ditto. * r19420 by mame * ext/openssl/ossl_pkey_ec.c (ossl_ec_key_to_string): comment out fragments of unused code. * r18975 by nobu * ext/openssl/ossl_ocsp.c (ossl_ocspres_initialize): fix for initialization of r18168. * r18971 by nobu * ext/openssl/ossl_config.c (Init_ossl_config): removed C99ism. * r18944 by matz * ext/openssl/ossl_config.c (Init_ossl_config): memory leak fixed. a patch
in [ruby-dev:35880]. * ext/openssl/ossl_x509ext.c (ossl_x509ext_set_value): ditto. * r18917 by nobu * ext/openssl/ossl_x509attr.c (ossl_x509attr_initialize): fix for initialization of r18168. * ext/openssl/ossl_ocsp.c (ossl_ocspreq_initialize): ditto. * ext/openssl/ossl_x509name.c (ossl_x509name_initialize): ditto. * r18283 by nobu * ext/openssl/ossl_asn1.c (ossl_asn1_get_asn1type): suppress warnings on platforms which int size differs from pointer size. * r18181 by nobu * ext/openssl/openssl_missing.h (d2i_of_void): define for older versions. [ruby-dev:35637] * r18168 by nobu * ext/openssl: suppress warnings. Sat May 22 22:31:36 2010 Tanaka Akira
* lib/resolv.rb: fix [ruby-core:28320] reported by Paul Clegg. (Resolv::DNS::Requester#request): raise ResolvTimeout consistently for timeout. Sat May 22 22:14:11 2010 NARUSE, Yui
* ext/readline/readline.c (Init_readline): initialize check rl_catch_signals and rl_catch_sigwinch. [ruby-core:28238] [ruby-core:28242] * ext/readline/extconf.rb: check rl_catch_signals and rl_catch_sigwinch. Sat May 22 21:54:58 2010 URABE Shyouhei
* test/net/http/test_connection.rb (TestHTTP::HTTPConnectionTest#test_connection_refused_in_request): Wrong exception to assert. Sat May 22 21:03:16 2010 Tanaka Akira
* io.c (rb_io_modenum_mode): return "r" for O_RDONLY|O_APPEND. [ruby-dev:40379] Sat May 22 20:51:39 2010 URABE Shyouhei
* lib/resolv.rb (Resolv::DNS::Config#nameserver_port): 1.8.7 specific tweaks Sat May 22 20:51:09 2010 Tanaka Akira
* lib/resolv.rb: fix [ruby-core:28144] reported by Hans de Graaff. (Resolv::DNS#make_requester): pass nameserver_port to UnconnectedUDP.new. (Resolv::DNS.bind_random_port): change the is_ipv6 argument to bind_host. (Resolv::DNS::Requester#initialize): change instance variable to store multiple sockets. (Resolv::DNS::Requester#request): pass readable sockets to recv_reply. (Resolv::DNS::Requester#close): close all sockets. (Resolv::DNS::Requester::UnconnectedUDP#initialize): allocate a socket for each address family of name servers. (Resolv::DNS::Requester::UnconnectedUDP#recv_reply): read from the passwd readable socket. (Resolv::DNS::Requester::UnconnectedUDP#sender): use appropriate socket for the target nameserver. (Resolv::DNS::Requester::ConnectedUDP): follow the instance variable change. (Resolv::DNS::Requester::TCP#sender): ditto. (Resolv::DNS::Config#nameserver_port): new method. Sat May 22 19:46:27 2010 Nobuyoshi Nakada
* lib/net/http.rb (Net::HTTP#request): close @socket only after started. [ruby-core:28028] Sat May 22 19:36:38 2010 Nobuyoshi Nakada
* eval.c (proc_invoke): reverted r25975. [ruby-dev:39931] [ruby-dev:40059] * eval.c (rb_mod_define_method): return original block but not bound block. [ruby-core:26984] Thu May 20 16:28:17 2010 Nobuyoshi Nakada
* lib/webrick/httpservlet/filehandler.rb (make_partial_content): add bytes-unit. [ruby-dev:40030] Thu May 20 16:17:37 2010 NAKAMURA, Hiroshi
* ext/zlib/zlib.c: backport r18029 and r21861 from trunk. * r18029 ext/zlib/zlib.c (rb_deflate_params): flush before deflateParams. [ruby-core:17675] (by mame) * r21861 ext/zlib/zlib.c (zstream_run): desperately guard the variable. [ruby-core:20576] (by usa) * test/zlib/test_zlib.rb: backport deflate tests from trunk. Thu May 20 15:59:14 2010 Kouhei Sutou
* lib/rss/maker/base.rb, test/rss/test_maker_0.9.rb: accept any time format in maker. [ruby-core:26923] Thu May 20 15:54:08 2010 Akinori MUSHA
* eval.c (recursive_push): Taint internal hash to prevent unexpected SecurityError; fixes #1864. Thu May 20 15:39:26 2010 Nobuyoshi Nakada
* io.c (io_fwrite): preserve errno. [ruby-core:27425] Tue Apr 20 08:04:37 2010 NAKAMURA Usaku
* io.c (rb_io_s_read): close the IO if an exception is raised on seeking. [ruby-core:27429] Mon Apr 19 22:43:28 2010 Nobuyoshi Nakada
* ruby.h (RB_GC_GUARD_PTR): workaround for gcc optimization. [ruby-core:27402] Tue Apr 20 06:40:53 2010 Marc-Andre Lafortune
* lib/uri/generic.rb (URI::Generic::eql): Check the class of the compared object. Based on a patch by Peter McLain [ruby-core:27019] Fri Apr 2 03:27:22 2010 NAKAMURA, Hiroshi
* lib/net/http.rb (HTTPGenericRequest#send_request_with_body_stream): increased encoding chunk size for POST request with body_stream (1K -> 16K). patched by Brian Candler. #1284. * test/net/http/test_post_io.rb: added for the patch. It's good if a patch comes with a test. Thu Apr 1 05:32:17 2010 NAKAMURA Usaku
* string.c (rb_str_inspect): wrong result of UTF-8 inspect because of the mistake of calculation. reported by eban via IRC. Sun Jan 10 19:00:31 2010 Nobuyoshi Nakada
* lib/webrick/accesslog.rb : Escape needed. * lib/webrick/httpstatus.rb : ditto. * lib/webrick/httprequest.rb : ditto. * lib/webrick/httputils.rb : ditto. Thu Dec 24 18:04:27 2009 Nobuyoshi Nakada
* configure.in: default ac_cv_prog_CC to CC. Thu Dec 24 17:56:32 2009 Nobuyoshi Nakada
* ext/extmk.rb: MINIRUBY is given via make-flag. Thu Dec 24 17:56:32 2009 Nobuyoshi Nakada
* common.mk (EXTMK_ARGS): needs MINIRUBY for cross-compile. [ruby-core:20131] Thu Dec 24 17:56:32 2009 NAKAMURA Usaku
* common.mk (EXTMK_ARGS): shouldn't use ``\"'' because cmd.exe eat ''\'' in such quotes. Thu Dec 24 17:56:32 2009 Nobuyoshi Nakada
* common.mk (EXTMK_ARGS): needs MINIRUBY for cross-compile. [ruby-core:20131] Thu Dec 24 17:56:32 2009 Nobuyoshi Nakada
* mkconfig.rb (patchlevel): config.status may not contain PATCHLEVEL even if other version numbers exist. Thu Dec 24 17:50:35 2009 Yusuke Endoh
* ext/stringio/stringio.c (strio_init): rewind when reopened. Thu Dec 24 17:06:13 2009 Nobuyoshi Nakada
* gc.c (run_final): runs finalizers with the object terminated. * gc.c (rb_gc_call_finalizer_at_exit): ObjectSpace::finalizers needs to scan whole object space, although deprecated. Thu Dec 24 17:06:13 2009 Nobuyoshi Nakada
* gc.c (chain_finalized_object): deletes finalizers to be invoked from finalizer_table. * gc.c (rb_gc_call_finalizer_at_exit): warns when could not invoke finalizers. Mon Dec 21 16:09:09 2009 NAKAMURA Usaku
* win32/Makefile.sub (LD_SHARED1): typo. Wed Dec 16 20:17:40 2009 NAKAMURA Usaku
* win32/win32.c (CreateChild): allocate temporary buffer and use it instead of directly modify the passed string. [ruby-dev:39635] Wed Dec 16 19:49:47 2009 URABE Shyouhei
* instruby.rb (with_destdir): revert. [ruby-dev:39885] Mon Dec 14 13:28:48 2009 Nobuyoshi Nakada
* lib/test/unit.rb (Test::Unit.run=, Test::Unit.run?): fixed rdoc. [ruby-core:25034] Mon Dec 14 13:21:32 2009 Nobuyoshi Nakada
* lib/open3.rb (Open3#popen3): fixed and improved rdoc. [ruby-core:25658] Mon Dec 14 13:09:01 2009 Nobuyoshi Nakada
* configure.in (LIBPATHFLAG): use numbered specifier if RPATHFLAG is set. [ruby-talk:322136] Mon Dec 14 12:53:56 2009 Marc-Andre Lafortune
* lib/bigdecimal.rb: fix comparison operators [ruby-core:26646] Mon Dec 14 12:40:10 2009 Marc-Andre Lafortune
* object.c (rb_Float): Allow results of to_f to be NaN [ruby-core:26733] Mon Dec 14 12:35:21 2009 Nobuyoshi Nakada
* eval.c (proc_invoke): unbound block created by define_method cannot call super. [ruby-core:26984] Mon Dec 14 12:06:39 2009 Akinori MUSHA
* ext/digest/digest.c (rb_digest_instance_method_unimpl): Do not call rb_inspect() on an object that does not implement necessary methods; reported by NaHi. Mon Dec 14 11:47:31 2009 Nobuyoshi Nakada
* eval.c (rb_method_missing): adjusted format and argument number. * eval.c (rb_call): fixed for super in cached method. [ruby-dev:39757] Mon Dec 14 11:40:35 2009 Nobuyoshi Nakada
* hash.c (ruby_setenv): get rid of crash in Solaris 8 and 10. [ruby-core:26668] Mon Dec 14 11:31:58 2009 Takeyuki FUJIOKA
* lib/cgi.rb: fix command-line option of non-interactive terminal. [ruby-core:23016] Mon Dec 14 03:36:20 2009 Marc-Andre Lafortune
* eval.c (method_inspect, method_name, mnew): Bug fix when method created from an alias. Based on a patch by Peter Vanbroekhoven [ruby-core:22040] Mon Dec 14 02:27:32 2009 Yusuke Endoh
* hash.c (rb_hash): always return a fixnum value because a return value of rb_hash may be used as a hash value itself and bignums have no unique VALUE. * test/ruby/test_hash.rb: add a test for above. Mon Dec 14 00:42:55 2009 Nobuyoshi Nakada
* string.c (rb_str_inspect): get rid of adding garbage to shor UTF-8 string. [ruby-dev:39550] Sun Dec 13 23:54:22 2009 Nobuyoshi Nakada
* marshal.c (marshal_load): should set taintness. [ruby-dev:39723] Sun Dec 13 23:54:22 2009 Nobuyoshi Nakada
* marshal.c (struct {dump,load}_arg): manage with dfree, instead of using local variable which may be moved by context switch. [ruby-dev:39425] Wed Nov 25 17:42:33 2009 Nobuyoshi Nakada
* io.c (io_fwrite): adjust stdio file position after direct write on BSDish platforms. [ruby-core:26300] Wed Nov 25 17:39:28 2009 Nobuyoshi Nakada
* test/ostruct/test_ostruct.rb (test_frozen): added assertions. Wed Nov 25 16:43:24 2009 NAKAMURA, Hiroshi
* lib/monitor.rb (MonitorMixin.mon_release): ensure the scheduled thread to be alive when a thread is releasing a monitor. #2240 Wed Nov 25 16:28:11 2009 Marc-Andre Lafortune
* lib/rexml/element.rb (text=): false should be converted to string. A patch by Teruo Oshida [ruby-dev:38351] Wed Nov 25 16:18:37 2009 Nobuyoshi Nakada
* eval.c (rb_clear_cache_for_undef): clear entries for inherited methods. [ruby-core:26074] Tue Nov 24 16:15:18 2009 Nobuyoshi Nakada
* ext/iconv/iconv.c (iconv_create): cannot retry with given block. [ruby-dev:39487] Tue Nov 24 16:12:33 2009 Shugo Maeda
* lib/net/imap.rb (resp_text_code): accepts response codes without text. backported from trunk. [ruby-core:24194] Tue Nov 24 16:09:41 2009 Shugo Maeda
* lib/net/ftp.rb (getaddress): rescue exceptions. [ruby-dev:39451] Tue Nov 24 15:51:07 2009 Marc-Andre Lafortune
* ext/curses/curses.c: Many functions of module Curses could cause a crash if the ncurses library was not properly initialized. Fix pointed out by Alexander Beisig [ruby-core:22592] Functions fixed: attroff, attron, attrset, bkgd, bkgdset, can_change_color, close_screen, closed, color_content, curs_set, def_prog_mode, delch, deleteln, getmouse, getstr, has_colors, init_color, init_pair, insertln, keyname, mouseinterval, mousemask, pair_content, pair_number, reset_prog_mode, resizeterm, scrl, setscrreg, standend, standout, start_color, timeout, ungetmouse Fri Nov 20 15:49:59 2009 Tanaka Akira
* lib/resolv.rb (Resolv::DNS.bind_random_port): bind to "::" for IPv6. (Resolv::DNS::ConnectedUDP#initialize): specify is_ipv6 argument of bind_random_port. [ruby-core:25970] Thu Nov 19 18:03:31 2009 Takeyuki FUJIOKA
* lib/cgi.rb (CGI.unescapeHTML): fix for hex values 80-FF, single-byte hex entity encodings from 80-FF are valid HTML. [ruby-core:25702] Thu Nov 19 15:34:40 2009 Yukihiro Matsumoto
* io.c (rb_io_fptr_finalize): free fptr to avoid memory leaks. fixed: #2009 [ruby-core:25173] [ruby-dev:39410] Thu Nov 19 15:27:17 2009 Marc-Andre Lafortune
* lib/net/http.rb (transport_request): Handle timeout error by closing socket if exception raised. [ruby-core:20976] Wed Nov 18 14:14:38 2009 Marc-Andre Lafortune
* ext/openssl/ossl_config.c (ossl_config_add_value_m, ossl_config_set_section): Check if frozen (or untainted for $SECURE >= 4) [ruby-core:18377] Wed Nov 18 14:13:14 2009 NAKAMURA Usaku
* instruby.rb: win32/win32.h exists in srcdir. reported by arton ( http://www.artonx.org/diary/20090919.html#p01 ) Wed Nov 18 14:13:14 2009 NAKAMURA Usaku
* win32/win32.c (subtract): if the parameters are same value, should return zero. Wed Nov 18 14:13:14 2009 NAKAMURA Usaku
* win32/win32.c (rb_w32_select): of course, need to initialize rest. Wed Nov 18 14:13:14 2009 NAKAMURA Usaku
* win32/win32.c (rb_w32_select): wait specified time on select. Wed Nov 18 14:13:14 2009 NAKAMURA Usaku
* win32/win32.c (rb_w32_select): on 1.8, we don't need to poll sockets, because our select is never called from multiple threads. Tue Nov 17 16:22:22 2009 Nobuyoshi Nakada
* eval.c (rb_thread_start_0, rb_thread_start_1): should call star timer after added new thread to thread list. [ruby-core:25613] Tue Nov 17 16:22:22 2009 Nobuyoshi Nakada
* eval.c (rb_thread_start_timer): start to catch SIGVTALRM together with timer thread. [ruby-core:25606] * eval.c (rb_thread_atfork): stop timer thread. Tue Nov 17 16:04:02 2009 Marc-Andre Lafortune
* lib/cgi/cookie.rb (value): Keep CGI::Cookie#value in sync with the cookie itself. A patch by Arthur Schreiber [ruby-core:17634] Tue Nov 17 15:49:00 2009 Marc-Andre Lafortune
* lib/irb/ext/multi-irb.rb: Fix arguments handling for shell commands in irb; a patch by Yusuke Endoh [ruby-dev:35075] Tue Nov 17 15:32:27 2009 Nobuyoshi Nakada
* io.c (rb_io_binmode): check if closed regardless platforms. [ruby-core:25363] Tue Nov 17 15:31:09 2009 Nobuyoshi Nakada
* numeric.c (round): added declaration. [ruby-dev:39222] Mon Nov 16 19:58:02 2009 Nobuyoshi Nakada
* gc.c (gc_sweep): makes new room if object space is full of finalized objects and has no free objects. [ruby-dev:39201] Mon Nov 16 19:45:27 2009 Tanaka Akira
* util.c: suppress strict-aliasing warning with gcc-4.4.0 -O2 to fix infinite loop by ruby -e "1.402e-45" . Mon Nov 16 19:28:23 2009 URABE Shyouhei
* ext/bigdecimal/bigdecimal.c (BigDecimal_to_i): revert a part of r23645, which was not a bug fix. [ruby-dev:39474] Fri Sep 11 11:56:53 2009 Akinori MUSHA
* class.c (rb_singleton_class_clone): Qnil must be used for a null class reference when we use NIL_P() to check class reference validity. The bug was exposed by the spec test of Sequel. * eval.c (ruby_init): Use NEW_CREF(). Thu Sep 10 10:53:03 2009 NAKAMURA Usaku
* io.c (rb_sysopen): workaround for MSVCRT's bug. [ruby-core:24838] Mon Sep 7 19:52:44 2009 Tanaka Akira
* eval.c (rb_thread_schedule): need select for WAIT_SELECT, even if already timeout. [ruby-dev:38971] (WAIT_DONE): defined for mark threads which can be runnable. Mon Sep 7 19:52:44 2009 Tanaka Akira
* eval.c (rb_thread_schedule): refine previous change. Mon Sep 7 19:52:44 2009 Tanaka Akira
* eval.c (rb_thread_schedule): fix condition for making thread runnable. [ruby-core:23515] Sun Sep 6 19:47:10 2009 Nobuyoshi Nakada
* eval.c (rb_exc_raise, rb_exc_fatal): require exception object. [ruby-core:24767] Sun Sep 6 01:34:03 2009 NAKAMURA Usaku
* win32/win32.c (rb_w32_connect): return value was broken when some error occurred. [ruby-core:24234] Fri Sep 4 10:03:22 2009 Nobuyoshi Nakada
* io.c (argf_eof): go to the next file if called after ARGF.close or ARGF.skip. a patch from Mike Kasick at [ruby-core:24561]. Sun Aug 9 17:43:44 2009 Keiju Ishitsuka
* lib/irb.rb, lib/irb/init.rb, lib/irb/ext/save-history.rb: add IRB::irb_at_exit. no use finalizer saving history. [ruby-dev-38563] Wed Aug 5 15:29:54 2009 NAKAMURA Usaku
* io.c (rb_io_flush): fsync() after buffer is flushed on win32. backported from trunk. [ruby-core:20043] Tue Aug 4 11:00:30 2009 Nobuyoshi Nakada
* re.h (RMATCH_REGS): added for compatibility. Mon Aug 3 14:46:53 2009 Yukihiro Matsumoto
* lib/complex.rb (Numeric#arg): should return NaN for NaN. [ruby-core:24116] Thu Jul 30 09:27:44 2009 Nobuyoshi Nakada
* bignum.c (big_lshift, big_rshift): return Bignum always withou normalization. [ruby-dev:38680] Wed Jul 29 11:19:47 2009 Yukihiro Matsumoto
* io.c (argf_close): always call #close method. [ruby-core:23853] * io.c (argf_skip): should close only when current_file is available. Sat Jul 25 21:26:18 2009 Yukihiro Matsumoto
* enum.c (first_i): Enumerator#first should consume only what is needed. a patch from Marc-Andre Lafortune. [ruby-core:23661] * enum.c (take_i): ditto. * enum.c (enum_first): call to_int once for an argument. a patch from Marc-Andre Lafortune. Fri Jul 24 17:19:40 2009 Yukihiro Matsumoto
* lib/cgi.rb (HTTP_STATUS): typo fixed. [ruby-dev:38538] Wed Jul 22 23:39:34 2009 Yukihiro Matsumoto
* lib/rexml/text.rb (REXML::Text.normalize): call to_s for input. [ruby-talk:337069] Tue Jul 21 18:21:47 2009 Nobuyoshi Nakada
* lib/mkmf.rb (SRC_EXT): should be flat. http://twitter.com/_tad_/status/1825862632 Sat Jul 18 00:44:43 2009 URABE Shyouhei
* gc.c (rb_gc_call_finalizer_at_exit): finalizer_table can be NULL. [ruby-core:24395] Thu Jul 16 09:35:06 2009 Akinori MUSHA
* lib/delegate.rb (Delegator#method_missing) (DelegateClass()#method_missing): Properly pass a given block through. [ruby-dev:38390] Wed Jul 15 11:40:34 2009 Nobuyoshi Nakada
* file.c (rb_file_join): recursive array has no meaning as path name. [ruby-core:23329] Tue Jul 14 19:57:28 2009 Nobuyoshi Nakada
* eval.c (get_ts): use readtime clock. [ruby-dev:38354] * eval.c (rb_thread_stop_timer): clear thread_init while locking. Tue Jul 14 19:57:28 2009 Nobuyoshi Nakada
* eval.c (rb_thread_start_timer): guard condition was inverted. [ruby-dev:38319] Tue Jul 14 19:57:28 2009 Nobuyoshi Nakada
* eval.c (safe_mutex_lock): pthread_cleanup_push() must not be inside parens. Mon Jul 13 01:36:54 2009 Nobuyoshi Nakada
* time.c (time_timeval): rounds subsecond toward zero. Mon Jul 13 01:36:54 2009 Nobuyoshi Nakada
* time.c (time_timeval): check out-of-range. [ruby-core:23282] [Bug #1396] Thu Jul 9 17:58:03 2009 Nobuyoshi Nakada
* eval.c (proc_invoke): shares dmethod scope local variables. a patch from coderrr at [ruby-core:23050] * gc.c (obj_free): do not free cloned scope local variables. Wed Jul 8 19:28:03 2009 Nobuyoshi Nakada