Activity
From 08/11/2016 to 08/17/2016
08/17/2016
-
11:55 PM Feature #12020: Documenting Ruby memory model
- > Koichi, would you be open to spend some time discussing it?
Sure! Other than my presentation time, I'll be happ... -
09:03 AM Feature #12020: Documenting Ruby memory model
- I am going to RubyKaigi, I would be very interested to have a meeting face to face there to discuss this topic in dep...
-
09:08 PM Feature #8960: Add Exception#backtrace_locations
- Is there any way to re-raise an exception and propagate `backtrace_locations`? When I want to trap an exception and p...
-
07:32 PM Bug #12548: Rounding modes inconsistency between round versus sprintf
- Nobu: but then, default will still be inconsistent.
Maybe add a parameter and require libraries to supply it if th... -
02:54 AM Bug #12548: Rounding modes inconsistency between round versus sprintf
- I agree that round-even is preferable, but it introduces an incompatibility.
Some libraries, e.g., rexml, depend on ... -
07:06 PM Bug #12685 (Closed): malloc error: pointer being freed was not allocated
- ruby crashed
- never seen that before
- should never happen
- looks serious to me
I'm using ruby 2.3.1p112 (20... -
06:19 PM Feature #12676: Significant performance increase, and code conciseness, for prime_division method in prime.rb
- By using a faster prime generator than the current one in prime.rb the performance for
the prime_division function c... -
05:36 PM Bug #12683 (Closed): never be able to install trunk
- Applied in changeset r55952.
----------
skip failed gems
* tool/rbinstall.rb: skip gems which failed to build exten... -
04:12 PM Bug #12683 (Closed): never be able to install trunk
- r55950 以降だと思いますが、bundleされているgemの拡張ライブラリがビルドできない場合、make installが失敗するのでruby自体がinstallできません。
- 05:36 PM Revision 23051126 (git): * 2016-08-18
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
05:36 PM Revision a5eab8cc (git): skip failed gems
- * tool/rbinstall.rb: skip gems which failed to build extensions.
[ruby-dev:49764] [Bug #12683]
git-svn-id: svn+ssh... -
05:12 PM Bug #12684 (Closed): Delegator#eql? missing
- There is some strange behavior because Delegator is missing an alias of #eql? to #==
```
2.3.1 :001 > s = 'test'
... -
03:08 PM Bug #12353 (Open): Regression with Marshal.dump on ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin15]
- I found this backport broke ActiveSupport::Duration of ActiveSupport 4.1.x:
```
% ruby -e '
gem "activesupport",... -
02:35 PM Revision 819d87ed (git): bump up tk
- * gems/bundled_gems (tk): bump up to 0.1.1.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55951 b2dd03c8-39d4-4d... -
02:14 PM Bug #12681 (Closed): Gemfied tk issue
- Applied in changeset r55950.
----------
gem extensions
* ext/extmk.rb: build gem extensions into separate directori... -
02:14 PM Revision 9839d82d (git): gem extensions
- * ext/extmk.rb: build gem extensions into separate directories
* tool/rbinstall.rb: install pre-built gem extension f... -
01:15 PM Feature #6783: Infinite loop in inspect, not overriding inspect, to_s, and no known circular references. Stepping into inspect in debugger locks it up with 100% CPU.
- I would like to reopen discussion on this subject. I think the default implementation of #inspect tends to hang/explo...
-
07:20 AM Revision 39e3db35 (git): mkmf.rb: use TARGET_SO
- * lib/mkmf.rb (create_makefile): use TARGET_SO consistently.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55949... -
05:28 AM Bug #8837 (Rejected): net/telnet: strange implementation
- net-telnet has been extracted https://.com/ruby/net-telnet
-
05:28 AM Bug #8668 (Rejected): Net::Telnet waitfor('Waittime'=>0) may wait forever
- net-telnet has been extracted https://.com/ruby/net-telnet
-
05:27 AM Feature #8324 (Rejected): Net::Telnet.new のオプション
- net-telnet has been extracted https://.com/ruby/net-telnet
-
05:26 AM Feature #11720 (Rejected): XMLRPC::DateTime.to_time does not support times prior to 1970.
- xmlrpc has been extracted http://.com/ruby/xmlrpc
-
05:26 AM Bug #10786 (Rejected): SIGINT can not interrupt remaining codes after XMLRPC::Server gets SIGINT
- xmlrpc has been extracted http://.com/ruby/xmlrpc
-
01:40 AM Bug #12682 (Rejected): Hash#flatten(level) does not recursively flatten inner hashes.
- The documentation of `Array#flatten` is pretty clear:
"...That is, for every element that is an **array**, extract... -
01:25 AM Feature #11057 (Rejected): Gemify JSON
- rdoc depends on json. And gem authors rely on json of stdlib.
ref. http://www.mikeperham.com/2016/02/09/kill-your-... -
01:16 AM Bug #12156 (Rejected): TckImage.new broken after r53077 (2.3, trunk)
- tk has been extracted https://.com/ruby/tk from stdlib
-
01:16 AM Bug #5686 (Rejected): compile error for ext/tk/tcltklib.c: ‘ruby_errinfo’ undeclared
- tk has been extracted https://.com/ruby/tk from stdlib
- 01:13 AM Revision 62565598 (git): * 2016-08-17
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55948 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:13 AM Revision b6fbbf33 (git): make-snapshot: remove $GZIP
- * tool/make-snapshot: remove deprecated environment variable GZIP
to its command line arguments.
git-svn-id: svn+s...
08/16/2016
-
08:36 PM Bug #12682 (Rejected): Hash#flatten(level) does not recursively flatten inner hashes.
- ~~~
pry
[1] pry(main)> x = {a: {b: 1, c:2}}
=> {:a=>{:b=>1, :c=>2}}
[2] pry(main)> x.flatten(1)
=> [:a, {:b=>1, ... -
04:26 PM Bug #12548: Rounding modes inconsistency between round versus sprintf
- It looks like floats are rounded via numeric.c, using the flo_round function. That definitely does *not* use round-ev...
-
01:02 PM Revision b24c4908 (git): make-snapshot: UNICODE_VERSION
- * tool/make-snapshot (package): propagate UNICODE_VERSION to make
snapshot from the parent make.
git-svn-id: svn+s... -
01:01 PM Revision 2ae5e54e (git): open Unicode data in binary mode
- * tool/enc-unicode.rb (data_foreach): open in binary mode because
Unicode 9.0.0 contains non-ascii characters.
* t... -
12:43 PM Feature #12512: Import Hash#transform_values and its destructive version from ActiveSupport
- Right, sorry for the diversion.
I agree with Marc-Andre, I do not find map_values confusing.
After all we want to... -
12:24 PM Feature #12512: Import Hash#transform_values and its destructive version from ActiveSupport
- Can we stick to the name of #map_v here? I don't think it's wise to expand the front line in this thread.
-
09:43 AM Feature #12512: Import Hash#transform_values and its destructive version from ActiveSupport
- Yukihiro Matsumoto wrote:
> `map_values`, `map_keys` and `map_pairs` seems consistent.
>
> In addition, we are co... -
12:41 PM Bug #12681: Gemfied tk issue
- >Also, the "gem install tk" does not build the extension, so that is another source of possible issues.
I missed c... -
12:07 PM Bug #12681 (Closed): Gemfied tk issue
- First of all, thank you for moving Tk into independent gem.
Nevertheless, I have one concern. So far, you left the... -
12:36 PM Revision fc95326e (git): common.mk: make unicode header dir
- * common.mk (UNICODE_HDR_DIR): make unicode header directory.
[ruby-core:76879] [Bug #12677]
git-svn-id: svn+ssh:/... -
12:14 PM Bug #12517: def_delegators broken on ruby-head?
- ruby_2_2 r55943 merged revision(s) 53424,55509.
-
03:00 AM Bug #12517: def_delegators broken on ruby-head?
- ruby_2_3 r55917 merged revision(s) 53424,55509.
- 12:14 PM Revision 81d5b699 (git): merge revision(s) 53424,55509: [Backport #12517]
- * test/coverage/test_coverage.rb: ignored test when enabled to coverage.
It lead to crash with `make test-a... -
12:04 PM Revision 7b664aba (git): common.mk: separate unicode headers
- * common.mk (UNICODE_HDR_DIR): separate unicode header files from
unicode data files. [ruby-core:76879] [Bug #1267... -
12:02 PM Bug #12498: Parsing a mailto URI with no recipient throws the error URI::InvalidComponentError: missing opaque part for mailto URL
- ruby_2_2 r55941 merged revision(s) 55563.
-
02:49 AM Bug #12498: Parsing a mailto URI with no recipient throws the error URI::InvalidComponentError: missing opaque part for mailto URL
- ruby_2_3 r55916 merged revision(s) 55563.
- 12:02 PM Revision 4142e34e (git): merge revision(s) 55563: [Backport #12498]
- * lib/uri/mailto.rb (initialize): RFC3986_Parser#split sets opaque
only if the URI has path-rootless, not p... -
12:01 PM Bug #12488: Backport r55410 (reject too large precision in date_strftime.c)
- ruby_2_2 r55940 merged revision(s) 55410.
- 12:01 PM Revision 673a8b48 (git): merge revision(s) 55410: [Backport #12488]
- * ext/date/date_strftime.c (date_strftime_with_tmx): reject too
large precision to get rid of buffer overfl... -
11:58 AM Bug #12454: Regexp: Segfault due to Invalid Read in regcomp.c : add_char_opt_map_info
- ruby_2_2 r55939 merged revision(s) 55562.
- 11:58 AM Revision e6230985 (git): merge revision(s) 55562: [Backport #12454]
- * regcomp.c (noname_disable_map): don't optimize out group 0
Ruby's Regexp doesn't allow normal numbered gr... -
11:57 AM Bug #12446: Failure of TestM17NComb#test_str_crypt_nonstrict on cygwin
- ruby_2_2 r55938 merged revision(s) 55233.
- 11:57 AM Revision 6fa7bf5e (git): merge revision(s) 55233: [Backport #12446]
- * missing/crypt.c: fix size macros to use configured values
for platforms long is larger than 32bit.
... -
11:55 AM Bug #12441: Segfault in mod_exp
- ruby_2_2 r55937 merged revision(s) 55047.
- 11:55 AM Revision a1af7155 (git): merge revision(s) 55047: [Backport #12441]
- * ext/openssl/ossl_bn.c (try_convert_to_bnptr): Extracted from
GetBNPtr(). This doesn't raise exception but... -
11:39 AM Bug #12431: Strange behavior of String#encode('UTF-8', 'UTF-8', ...) when the encoding of the source string is not UTF-8
- ruby_2_2 r55936 merged revision(s) 55181.
- 11:39 AM Revision b76d7aff (git): merge revision(s) 55181: [Backport #12431]
- * transcode.c (str_transcode0): scrub in the given encoding when
the source encoding is given, not in the e... -
11:33 AM Bug #12428: OpenSSL::PKey::RSA.public_encrypt crashes ruby when initiated without key size.
- ruby_2_2 r55935 merged revision(s) 55175.
- 11:33 AM Revision ef62988e (git): merge revision(s) 55175: [Backport #12428]
- * ext/openssl/ossl_pkey_dh.c (ossl_dh_compute_key): Check that the DH
has 'p' (the prime) before calling DH... -
11:29 AM Bug #12411: Warnings when compiling transcode.c on cygwin
- ruby_2_2 r55934 merged revision(s) 55115.
- 11:28 AM Revision b9892d1b (git): merge revision(s) 55115: [Backport #12411]
- * transcode.c (enc_arg, str_transcode_enc_args, econv_args):
remove volatile, and add GC guards in callers.... -
08:53 AM Revision a44caf80 (git): common.mk: UNICODE_HDR_DIR
- * common.mk (UNICODE_HDR_DIR): directory for unicode headers.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5593... -
08:43 AM Bug #12680 (Closed): Please backport memory fixes in ext/openssl
- The following methods have an issue of memory :
- OpenSSL::X509::ExtensionFactory#create_ext
- OpenSSL::X509:... -
08:41 AM Revision 2e11bf25 (git): common.mk: MAKE_ENC
- * common.mk (MAKE_ENC): arguments for enc.mk
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55932 b2dd03c8-39d4-4... -
08:11 AM Bug #12679 (Closed): Failed to build ruby on aarch64 with musl libc and gcc 6
- ~~~
verconf.h updated
compiling loadpath.c
encdb.h updated
linking static-library libruby-static.a
making srcs u... -
06:03 AM Bug #12401: compile fails --with-static-linked-ext
- ruby_2_2 r55931 merged revision(s) 55434.
- 06:03 AM Revision fc5238a4 (git): merge revision(s) 55434: [Backport #12401]
- * common.mk (build-ext), ext/extmk.rb: use variable EXTENCS
different than ENCOBJS, to get rid of circular ... -
05:56 AM Bug #12345: A module's private constants are given with `Module#constant(false)`
- ruby_2_2 r55930 merged revision(s) 55705.
- 05:56 AM Revision caec808f (git): merge revision(s) 55705: [Backport #12345]
- * variable.c (rb_local_constants_i): exclude private constants
when excluding inherited constants too. [Bu... -
05:53 AM Bug #12342: DRb.stop_service doesn't kill sleeping TimerIdConv threads
- ruby_2_2 r55929 merged revision(s) 55008.
- 05:53 AM Revision 0d09e1af (git): merge revision(s) 55008: [Backport #12342]
- * lib/drb/timeridconv.rb: don't use keeper thread. [Bug #12342]
* test/drb/ut_timerholder.rb: ditto.
git-s... -
05:40 AM Bug #12677: Ruby fails to build from snapshot tarball without Ruby installed
- Testing with r55915, it appears to work now. Thx for the quick fix.
-
02:02 AM Bug #12677 (Closed): Ruby fails to build from snapshot tarball without Ruby installed
- Applied in changeset r55913.
----------
make-snapshot: save unicode headers
* tool/make-snapshot (package): save ge... -
05:07 AM Bug #12255: [DOC] Small fix for rdoc of ext/json/lib/json/add/*
- ruby_2_2 r55928 merged revision(s) 55380.
- 05:07 AM Revision 643ef237 (git): merge revision(s) 55380: [Backport #12255]
- * ext/json/lib/*.rb: Removed some comments. Because these are unnecessary
class description. [ci skip][Bug ... -
05:06 AM Bug #12209: Array#pack("G") problem
- ruby_2_2 r55927 merged revision(s) 55573.
- 05:06 AM Revision f4ace9b4 (git): merge revision(s) 55573: [Backport #12209]
- * pack.c (pack_pack): use union instead of bare variable to ease
optimizations and avoid assigning x87 floa... -
05:03 AM Bug #12645: ext/socket fails to link on some Solaris 10 versions
- ruby_2_2 r55926 merged revision(s) 55797.
- 05:03 AM Revision b2248a00 (git): merge revision(s) 55797: [Backport #12645]
- * ext/socket/option.c, ext/socket/rubysocket.h (inet_ntop): share
the fallback definition. [ruby-core:7664... -
04:57 AM Bug #12611: Issues, reported by PVS-Studio static analyzer
- ruby_2_2 r55925 merged revision(s) 55729.
- 04:56 AM Revision eee441fd (git): merge revision(s) 55729: [Backport #12611]
- * vm.c (vm_set_main_stack): remove unnecessary check. toplevel
binding must be initialized. [Bug #12611] ... -
04:51 AM Bug #12575: Conditional jump or move depends on uninitialised value(s) at rb_wait_for_single_fd (thread.c:3864)
- ruby_2_2 r55924 merged revision(s) 55613.
- 04:43 AM Revision be4b713d (git): merge revision(s) 55613: [Backport #12575]
- * thread.c (rb_wait_for_single_fd): Clean up fds.revents every time
before calling ppoll(2). [Bug #12575] [... -
04:41 AM Bug #12610: webrick: protect from httpoxy
- ruby_2_2 r55923 merged revision(s) 55731.
- 04:41 AM Revision 89594c03 (git): merge revision(s) 55731: [Backport #12610]
- * lib/webrick/httpservlet/cgihandler.rb (do_GET): delete HTTP_PROXY
* test/webrick/test_cgi.rb (test_cgi_env... -
04:39 AM Bug #12609: rexml attribute class is using "e instead of " when replacing " for the XML character entity "
- ruby_2_2 r55922 merged revision(s) 55726,55727.
- 04:39 AM Revision e4d36060 (git): merge revision(s) 55726,55727: [Backport #12609]
- * lib/rexml/attribute.rb (REXML::Attribute#to_string): Fix wrong
entry reference name of double quote.
... -
04:36 AM Bug #12583: Class#instance_methods dumps core
- ruby_2_2 r55921 merged revision(s) 55663.
-
04:29 AM Bug #12583: Class#instance_methods dumps core
- ruby_2_3 r55919 merged revision(s) 55663.
- 04:36 AM Revision 8b440f54 (git): merge revision(s) 55663: [Backport #12583]
- * gc.c (gc_mark_roots): should mark the VM object itself to mark
singleton class of the VM object.
... - 04:31 AM Revision 36ecd731 (git): * lib/rubygems/package.rb: Fixed potential perms issue unpacking of
- gems on NFS. [Backport #12579]
* lib/rubygems.rb: bump version.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branc... -
04:29 AM Revision 7f7360a8 (git): merge revision(s) 55663: [Backport #12583]
- * gc.c (gc_mark_roots): should mark the VM object itself to mark
singleton class of the VM object.
... -
03:20 AM Bug #12248: Backport rubygems fix from upstream repo for Ruby 2.2.x
- rubygems-2.4.x still failed tests on the upstream repository. I have no time for investigating it.
Please backport... -
12:34 AM Bug #12248 (Feedback): Backport rubygems fix from upstream repo for Ruby 2.2.x
- Current status?
-
03:13 AM Bug #12524: Excess semicolons in ext/digest and ext/openssl
- ruby_2_3 r55918 merged revision(s) 55523.
-
03:13 AM Revision 2f0555c3 (git): merge revision(s) 55523: [Backport #12524]
- * ext/digest/md5/md5ossl.h: Remove excess semicolons.
Suppress warning on Solaris with Oracle Solaris Studi... -
03:08 AM Feature #8526 (Closed): gemify tk
- r55844 で対応済みなのでこちらは close します。
-
03:07 AM Bug #11908 (Rejected): Tk still relies on safe level 3 and 4
- tk was extracted to https://.com/ruby/tk/pulls . Please submit your as pull request.
-
03:06 AM Bug #11897 (Rejected): Hash key typo in Tk
- tk was extracted to https://.com/ruby/tk/pulls . Please submit your as pull request.
-
03:06 AM Bug #11896 (Rejected): Local variable name typo in Tk
- tk was extracted to https://.com/ruby/tk/pulls . Please submit your as pull request.
-
03:06 AM Bug #11895 (Rejected): Method name typo in Tk (configure, configinfo)
- tk was extracted to https://.com/ruby/tk/pulls . Please submit your as pull request.
-
03:06 AM Bug #11894 (Rejected): Tk method name typo (sortcolumn, sortcolumnlist)
- tk was extracted to https://.com/ruby/tk/pulls . Please submit your as pull request.
-
03:06 AM Bug #11892 (Rejected): Ruby keyword typo in Tk (return)
- tk was extracted to https://.com/ruby/tk/pulls . Please submit your as pull request.
-
03:06 AM Bug #11889 (Rejected): Constant name typo in Tk
- tk was extracted to https://.com/ruby/tk/pulls . Please submit your as pull request.
-
03:05 AM Bug #11888 (Rejected): Method name typo in Tk
- tk was extracted to https://.com/ruby/tk/pulls . Please submit your as pull request.
-
03:05 AM Bug #11887 (Rejected): Local variable name typo in Tk
- tk was extracted to https://.com/ruby/tk/pulls . Please submit your as pull request.
-
03:00 AM Revision bb6e171a (git): merge revision(s) 53424,55509: [Backport #12517]
- * test/coverage/test_coverage.rb: ignored test when enabled to coverage.
It lead to crash with `make test-a... -
02:48 AM Revision eed566de (git): merge revision(s) 55563: [Backport #12498]
- * lib/uri/mailto.rb (initialize): RFC3986_Parser#split sets opaque
only if the URI has path-rootless, not p... -
02:18 AM Revision 6f6ed7fb (git): * lib/net/http/header.rb: Fix typo. [ci skip][fix GH-1407]
- * transcode.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55915 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 02:02 AM Revision dd04487e (git): * 2016-08-16
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55914 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:02 AM Revision e7effb1e (git): make-snapshot: save unicode headers
- * tool/make-snapshot (package): save generated header files from
unicode data. [ruby-core:76879] [Bug #12677]
git... -
01:02 AM Bug #12670: Segmentation fault on `Magick::Image#get_pixels` on ruby since ruby-2.2
- Line 5426 of gc.c at v2_3_1 https://.com/ruby/ruby/blob/v2_3_1/gc.c#L5426 that is pointed by out.log, is about ...
-
12:37 AM Bug #12670: Segmentation fault on `Magick::Image#get_pixels` on ruby since ruby-2.2
- It may be related to #10440 r48239, as `git bisect` shown.
08/15/2016
-
10:21 PM Bug #12678 (Closed): No way to set a timeout for TLS handshake when using Net::SMTP
- When establishing a connection to an SMTP server, Net::SMTP doesn't offer a way to specify a timeout for how long the...
-
09:11 PM Feature #12659: Readline: expose rl_char_is_quoted_p setting
- If I understand it correctly then you provide a wrapper that is currently not part of ruby readline module yes?
If... -
08:00 PM Bug #12557: backport r55581 (Net::HTTP should raise error when CR/LF in a request line)
- ruby_2_3 r55912 merged revision(s) 55581,55582,55880.
-
08:00 PM Revision 55992aa4 (git): merge revision(s) 55581,55582,55880: [Backport #12557]
- * lib/net/http/generic_request.rb (write_header): A Request-Line must
not contain CR or LF.
* lib/... -
07:56 PM Bug #12556: backport r55579 (Net::FTP should raise error when CR/LF in a line)
- ruby_2_3 r55911 merged revision(s) 55579.
-
07:56 PM Revision 94231bdf (git): merge revision(s) 55579: [Backport #12556]
- * lib/net/ftp.rb (putline): raise an ArgumentError when
CR or LF is included in a line.
git-svn-id: svn+s... -
07:47 PM Bug #12488: Backport r55410 (reject too large precision in date_strftime.c)
- ruby_2_3 r55910 merged revision(s) 55410.
-
07:47 PM Revision 38e722f7 (git): merge revision(s) 55410: [Backport #12488]
- * ext/date/date_strftime.c (date_strftime_with_tmx): reject too
large precision to get rid of buffer overfl... -
07:37 PM Bug #12483: File.expand_path does not normalize cwd
- ruby_2_3 r55909 merged revision(s) 55385,55390.
-
07:37 PM Revision 12b6cd61 (git): merge revision(s) 55385,55390: [Backport #12483]
- * file.c (append_fspath): normalize directory name to be appended
on OS X. [ruby-core:75957] [Ruby trunk B... -
07:24 PM Bug #12454: Regexp: Segfault due to Invalid Read in regcomp.c : add_char_opt_map_info
- ruby_2_3 r55908 merged revision(s) 55562.
-
07:24 PM Revision ab61e5c9 (git): merge revision(s) 55562: [Backport #12454]
- * regcomp.c (noname_disable_map): don't optimize out group 0
Ruby's Regexp doesn't allow normal numbered gr... -
07:15 PM Bug #12446: Failure of TestM17NComb#test_str_crypt_nonstrict on cygwin
- ruby_2_3 r55907 merged revision(s) 55233.
-
07:15 PM Revision b7c5eba7 (git): merge revision(s) 55233: [Backport #12446]
- * missing/crypt.c: fix size macros to use configured values
for platforms long is larger than 32bit.
... -
07:06 PM Bug #12441: Segfault in mod_exp
- ruby_2_3 r55906 merged revision(s) 55047.
-
07:06 PM Revision 31dc77ae (git): merge revision(s) 55047: [Backport #12441]
- * ext/openssl/ossl_bn.c (try_convert_to_bnptr): Extracted from
GetBNPtr(). This doesn't raise exception but... -
07:02 PM Bug #12431: Strange behavior of String#encode('UTF-8', 'UTF-8', ...) when the encoding of the source string is not UTF-8
- ruby_2_3 r55905 merged revision(s) 55181.
-
07:02 PM Revision 9b71251e (git): merge revision(s) 55181: [Backport #12431]
- * transcode.c (str_transcode0): scrub in the given encoding when
the source encoding is given, not in the e... -
06:49 PM Bug #12428: OpenSSL::PKey::RSA.public_encrypt crashes ruby when initiated without key size.
- ruby_2_3 r55904 merged revision(s) 55175.
-
06:49 PM Revision 243d224f (git): merge revision(s) 55175: [Backport #12428]
- * ext/openssl/ossl_pkey_dh.c (ossl_dh_compute_key): Check that the DH
has 'p' (the prime) before calling DH... -
06:40 PM Bug #12411: Warnings when compiling transcode.c on cygwin
- ruby_2_3 r55903 merged revision(s) 55115.
-
06:40 PM Revision 83dc5915 (git): merge revision(s) 55115: [Backport #12411]
- * transcode.c (enc_arg, str_transcode_enc_args, econv_args):
remove volatile, and add GC guards in callers.... -
05:56 PM Bug #11988: YAML.dump doesn't quote string starting with 0 which will be recognized as float in YAML 1.2
- ruby_2_3 r55902 merged revision(s) 55497,55498,55504.
-
05:56 PM Revision 686fbc8e (git): merge revision(s) 55497,55498,55504: [Backport #11988]
- * ext/psych/*, test/psych/*: Upate psych 2.1.0
This version fixed [Bug #11988][ruby-core:72850]
* ... -
04:29 PM Feature #12512: Import Hash#transform_values and its destructive version from ActiveSupport
- `map_values`, `map_keys` and `map_pairs` seems consistent.
In addition, we are considering adding a method to crea... -
03:20 PM Feature #12512: Import Hash#transform_values and its destructive version from ActiveSupport
- Yukihiro Matsumoto wrote:
> From our discussion, we concerned `map_values` is too close to `map.values`, which has t... -
09:59 AM Feature #12512: Import Hash#transform_values and its destructive version from ActiveSupport
- Incidentally, as discussed back in #7793, the [hashmap](https://rubygems.org/gems/hashmap) gem defines #map_keys, #ma...
-
09:42 AM Feature #12512: Import Hash#transform_values and its destructive version from ActiveSupport
- From our discussion, we concerned `map_values` is too close to `map.values`, which has totally different semantics. B...
-
08:11 AM Feature #12512 (Open): Import Hash#transform_values and its destructive version from ActiveSupport
- reopened ticket because of naming issue.
Matz, could you close it if you finish the discussion? -
01:02 PM Bug #12677 (Closed): Ruby fails to build from snapshot tarball without Ruby installed
- I prepared snapshot from r55901 using tool/make-snapshot, but this snapshot fails to build without Ruby installed:
... -
11:31 AM Revision 86006209 (git): node.c: nd_alen only in the head
- * node.c (dump_array): show nd_alen field in NODE_ARRAY only in
the first node. it is nd_end in the rest nodes.
g... -
09:05 AM Bug #12674: io/wait: not handling the case when the socket is closed before doing wait_readable/writable with timeout
- Just tested on linux (x86_64-linux), same output.
-
08:01 AM Bug #12674: io/wait: not handling the case when the socket is closed before doing wait_readable/writable with timeout
- this was executed on a MAC (darwin, I guess).
-
01:37 AM Bug #12674 (Feedback): io/wait: not handling the case when the socket is closed before doing wait_readable/writable with timeout
- What's your platform?
~~IIRC, it depends on platforms.~~ -
08:53 AM Bug #12327: Seg Fault - ruby 2.3.0 mongo & OpenSSL issue??
- What is shown if you run under valgrind? I suspect this is also #12292.
-
08:37 AM Bug #12327: Seg Fault - ruby 2.3.0 mongo & OpenSSL issue??
- Hiroshi SHIBATA wrote:
> Can you try with Ruby 2.3.1?
I tried with 2.3.1 - it happens again. This is the trace:
... -
07:42 AM Revision 15c9e5c0 (git): * appveyor.yml: Update libressl version to 2.3.7.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:46 AM Revision 5e0fa644 (git): extmk.rb: no static-ext in gems
- * ext/extmk.rb (extmake): extension libraries in gems cannot link
statically.
git-svn-id: svn+ssh://ci.ruby-lang.o... - 01:59 AM Revision 93bc5024 (git): * 2016-08-15
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:59 AM Revision ab65e9d9 (git): numeric.c: round_to_nearest
- * numeric.c (round_to_nearest): extract and reduce for platforms
where round is not available.
git-svn-id: svn+ssh... -
01:48 AM Feature #12676 (Closed): Significant performance increase, and code conciseness, for prime_division method in prime.rb
- I earlier posted code to simplify the prime_division method in prime.rb.
This made the code much more concise and re...
08/14/2016
-
08:46 PM Feature #12675 (Closed): Code simplification and readability for prime_division method in prime.rb
- I believe the following code simplification for the prime_division
method in prime.rb makes it more readable as Engl... -
02:42 PM Bug #12674 (Rejected): io/wait: not handling the case when the socket is closed before doing wait_readable/writable with timeout
- I wrote the following script to show the problem:
```ruby
require 'socket'
require 'io/wait'
Thread.new do
... -
01:35 PM Bug #12614 (Closed): Segmentation Fault on Ruby 2.3.1
- Applied in changeset r55896.
----------
id_table.c: extend, don't shrink
* id_table.c (hash_table_extend): should n... -
06:13 AM Bug #12614: Segmentation Fault on Ruby 2.3.1
- Reproduced with trunk `ruby 2.4.0dev (2016-08-14 trunk 55893) [x86_64-linux]`.
I guess it is related to method tab... -
01:35 PM Revision dfe1d4fd (git): id_table.c: extend, don't shrink
- * id_table.c (hash_table_extend): should not shrink the table than
the previous capacity. [ruby-core:76534] [Bug #... -
09:51 AM Revision 64185949 (git): gems: tk 0.1.0
- * gems/bundled_gems: add gemified tk 0.1.0.
this needs `extract-gems` to build.
git-svn-id: svn+ssh://ci.ruby-lang... - 05:55 AM Revision b9a82eaa (git): * object.c (InitVM_Object): Update referenced document path.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55894 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 12:34 AM Revision 5858f6c1 (git): * 2016-08-14
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:34 AM Revision 6a59f880 (git): ChangeLog: Fix wrong date
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55892 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
08/13/2016
-
08:57 PM Feature #12673: Performance improvement to Prime.prime? in prime.rb
- After doing more testing of alternative techniques, for CRuby and JRuby,
here are some timing results on CRuby 2.3.1... -
03:06 PM Feature #12673 (Closed): Performance improvement to Prime.prime? in prime.rb
- The following code change provides a significant speed increase for Prime.prime? in prime.rb.
```
class Prime
... -
06:36 PM Feature #12648: `Enumerable#sort_by` with descending option
- Yukihiro Matsumoto wrote:
> I think we are talking about two things at once.
>
> First, adding reverse (or descen... -
02:08 PM Revision ba1ef74f (git): numeric.c: infinite recursion
- * numeric.c (num_funcall0, num_funcall1): get rid of infinite
recursion in fallback methods of Numeric.
git-svn-id... -
02:04 PM Revision 85512bdb (git): test_comparable.rb: fix clamp test
- * test/ruby/test_comparable.rb (TestComparable#test_clamp): fix
test. the result which is not clamped should be th... -
01:01 PM Revision a2a6c98e (git): win32ole.c: fix long conversion
- * ext/win32ole/win32ole.c (ole_val2variant): reuse the converted
result for V_I8.
git-svn-id: svn+ssh://ci.ruby-la... -
09:00 AM Bug #12672 (Feedback): rails server
- Sorry, it's preview for 2.4, not 2.3.
I suspect it may be fixed already, though.
Could you try recent snapshots? -
08:54 AM Bug #12672 (Rejected): rails server
- Why still using preview?
-
04:00 AM Bug #12672 (Closed): rails server
- execute app with rails5.0.1
rails server
/usr/local/lib/ruby/gems/2.4.0/gems/railties-5.0.0.1/lib/rails/app_load... -
08:01 AM Feature #12665: Faster prime? method for prime.rb std lib
- Sorry if I wasn't clear. It has been committed.
-
02:10 AM Bug #12669 (Closed): syntax error at assinments of command
- Applied in changeset r55888.
----------
parse.y: chained assignments
* parse.y (command_asgn, arg): fix syntax erro... -
02:10 AM Revision 90d9255e (git): parse.y: chained assignments
- * parse.y (command_asgn, arg): fix syntax errors with chained
assignment with op assign. [Bug #12669]
git-svn-id:... -
01:52 AM Revision 5245e314 (git): parse.y: rescue modifier in rhs of op asgn
- * parse.y (stmt, arg): rescue modifier in command op assignment
should be limited to rhs only. [ruby-core:75621] [... -
01:49 AM Revision 9e778a8a (git): win32ole.c: fix long conversion
- * ext/win32ole/win32ole.c (ole_val2variant): get rid of repeated
conversions and fix a compile error due to V_I8 in... -
01:26 AM Revision ee7993af (git): getnameinfo.c: rubysocket.h for inet_ntop
- * ext/socket/getnameinfo.c: needs rubysocket.h for fallback
definition of inet_ntop.
git-svn-id: svn+ssh://ci.ruby... -
01:21 AM Revision 2827bf1c (git): vm_insnhelper.c: fix ALWAYS_INLINE usage
- * vm_insnhelper.c (vm_getivar): ALWAYS_INLINE macro needs an
argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby...
08/12/2016
- 10:54 PM Revision ab67459a (git): * 2016-08-13
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55883 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
10:54 PM Revision d5c2261b (git): * ext/win32ole/win32ole.c (ole_val2variant): fix integer conversion in
- cygwin64.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:28 PM Feature #12665: Faster prime? method for prime.rb std lib
- Could you please provide me a technical rationale for not giving this
method consideration. I do not know what your... -
03:11 PM Bug #12630: add gem sources errors on Ruby 2.4.0-preview1
- you're right.
~~~ ruby
$ ruby -ropenssl -e'puts OpenSSL::OPENSSL_VERSION, OpenSSL::OPENSSL_LIBRARY_VERSION'
Ope... -
12:08 PM Feature #6559 (Closed): Set DoNotReverseLookup to true in Webrick
- Applied in changeset r55881.
----------
* lib/webrick/config.rb (WEBrick::Config::General):
disable reverse lookup... -
12:08 PM Revision bfe6bd0f (git): * lib/webrick/config.rb (WEBrick::Config::General):
- disable reverse lookup by default. [ruby-core:45514] [Feature #6559]
Socket.do_not_reverse_lookup is true by defaul... -
09:34 AM Bug #12666: Fatal error: glibc detected an invalid stdio handle
- Actually, in the RHBZ, there are two comments from two glibc maintainers and both suggest to load glibc without speci...
-
08:45 AM Bug #12666: Fatal error: glibc detected an invalid stdio handle
- Shyouhei Urabe wrote:
> For Fedora the seems OK. But I doubt if it could break on other systems like mswin. ... -
12:38 AM Bug #12666: Fatal error: glibc detected an invalid stdio handle
- For Fedora the seems OK. But I doubt if it could break on other systems like mswin. The fix proposed by the g...
-
07:48 AM Revision 287b6a27 (git): fix a typo [ci skip]
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55880 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
06:46 AM Bug #12671: Hash#to_proc result is not a lambda, but enforces arity
- JRuby implements Hash#to_proc as:
```ruby
class Hash
def to_proc
method(:[]).to_proc
end
end
```
... -
05:47 AM Bug #12671: Hash#to_proc result is not a lambda, but enforces arity
- None-lambda doesn't mean that it never checks its arguments.
And if it's a lambda, it doesn't match the `arity` valu... -
01:25 AM Bug #12671 (Closed): Hash#to_proc result is not a lambda, but enforces arity
- ```
$ ruby23 -e 'pr = {foo:1}.to_proc; puts pr.lambda?; pr.call rescue puts $!; pr.call(1, 2) rescue puts $!'
fals... -
03:55 AM Revision 3ccd2a1b (git): ChangeLog: fix name in r55863 [ci skip]
- * ChangeLog: fix the original author's name to the name
written in the , not "author name" in git.
[Fe... -
03:50 AM Revision a49068f1 (git): error.c: fix newline in syntax error
- * error.c (rb_syntax_error_append): fix newline in syntax error
message to the beginning, not after file name and l... -
03:29 AM Revision d63802b3 (git): parse.y: const_decl_gen
- * parse.y (const_decl_gen): extract as a function as well as
ripper.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/t... -
03:29 AM Revision 777f15a3 (git): parse.y: assign_error
- * parse.y (assign_error_gen): [ripper] rename without backref.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@558... -
02:50 AM Bug #12568: wrong ArgumentError if an array is given for instance_exec with optional argument
- ruby_2_2 r55875 merged revision(s) 55609.
- 02:50 AM Revision af4907c5 (git): merge revision(s) 55609: [Backport #12568]
- * vm_args.c (setup_parameters_complex): don't raise ArgumentError
if an array is given for instance_exec wi... -
02:46 AM Bug #12557: backport r55581 (Net::HTTP should raise error when CR/LF in a request line)
- ruby_2_2 r55874 merged revision(s) 55581,55582.
- 02:46 AM Revision 26df8ea5 (git): merge revision(s) 55581,55582: [Backport #12557]
- * lib/net/http/generic_rquest.rb (write_header): A Request-Line must
not contain CR or LF.
git-svn-id: sv... -
02:43 AM Bug #12556: backport r55579 (Net::FTP should raise error when CR/LF in a line)
- ruby_2_2 r55873 merged revision(s) 55579.
- 02:43 AM Revision 9bfab3c1 (git): merge revision(s) 55579: [Backport #12556]
- * lib/net/ftp.rb (putline): raise an ArgumentError when
CR or LF is included in a line.
git-svn-id: svn+s... -
02:35 AM Bug #12503: Backport r55427 (fix heap overflow in tr_trans)
- ruby_2_2 r55872 merged revision(s) 55427.
- 02:35 AM Revision 9fbd5955 (git): merge revision(s) 55427: [Backport #12503]
- * string.c (tr_trans): consider terminator length and fix heap
overflow. reported by Guido Vranken <guido ...
08/11/2016
-
07:26 PM Bug #12401: compile fails --with-static-linked-ext
- ruby_2_3 r55871 merged revision(s) 55434.
-
07:26 PM Revision 72e63983 (git): merge revision(s) 55434: [Backport #12401]
- * common.mk (build-ext), ext/extmk.rb: use variable EXTENCS
different than ENCOBJS, to get rid of circular ... -
07:13 PM Bug #12398: process.c compile broken for noMMU architectures on 2.3.x
- ruby_2_3 r55870 merged revision(s) 55090,55091.
-
07:13 PM Revision 395340fa (git): merge revision(s) 55090,55091: [Backport #12398]
- io.c: conditionally used functions
* io.c (pipe_atexit): only used on Windows
* io.c (rb_execarg_fi... -
06:58 PM Bug #12353: Regression with Marshal.dump on ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin15]
- ruby_2_3 r55869 merged revision(s) 54142,55500.
-
06:58 PM Revision 8dc8bba4 (git): merge revision(s) 54142,55500: [Backport #12353]
- assertions.rb: fix result of assert_nothing_raised
* test/lib/test/unit/assertions.rb (assert_nothing_raised... -
06:39 PM Bug #12345: A module's private constants are given with `Module#constant(false)`
- ruby_2_3 r55868 merged revision(s) 55705.
-
06:39 PM Revision 717f31e0 (git): merge revision(s) 55705: [Backport #12345]
- * variable.c (rb_local_constants_i): exclude private constants
when excluding inherited constants too. [Bu... -
06:30 PM Bug #12342: DRb.stop_service doesn't kill sleeping TimerIdConv threads
- ruby_2_3 r55867 merged revision(s) 55008.
-
06:30 PM Revision c20b07d5 (git): merge revision(s) 55008: [Backport #12342]
- * lib/drb/timeridconv.rb: don't use keeper thread. [Bug #12342]
* test/drb/ut_timerholder.rb: ditto.
git-s... -
05:58 PM Bug #12292: Race between OpenSSL::SSL::SSLSocket#stop and #connect can cause a segmentation fault
- ruby_2_3 r55866 merged revision(s) 55100.
-
05:58 PM Revision 88d76cfd (git): merge revision(s) 55100: [Backport #12292]
- * ext/openssl/ossl_ssl.c (ossl_ssl_stop): Don't free the SSL struct
here. Since some methods such as SSLSoc... - 03:00 PM Revision 6a7e766f (git): * 2016-08-12
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55865 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:00 PM Revision afd800fd (git): fix a typo [ci skip]
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55864 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:36 PM Bug #11846: Block passed by &block is GC-ed
- I guess this is a same problem with #11750 suggested by `git bisect`.
If so, it is since r51243 and fixed at r53144.... -
12:30 PM Bug #12670 (Closed): Segmentation fault on `Magick::Image#get_pixels` on ruby since ruby-2.2
- 1. Create test.rb this code
~~~ ruby
require 'rmagick'
include Magick
(0..10).each do |_|
ImageList.new('1... -
09:32 AM Bug #12669 (Closed): syntax error at assinments of command
- Related to #12402, I found other kind inconsistencies.
simple assignment and op assign of `command` cause syntax e... -
07:24 AM Feature #10594 (Closed): Comparable#clamp
- Applied in changeset r55863.
----------
Comparable#clamp
* compar.c (cmp_clamp): Introduce Comparable#clamp. [Feat... -
07:24 AM Revision d5a0b8e3 (git): Comparable#clamp
- * compar.c (cmp_clamp): Introduce Comparable#clamp. [Feature #10594]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tr... -
07:23 AM Feature #12593 (Rejected): Allow compound assignements to work when destructuring arrays
- I am not going to make multiple assignments even more complex.
The behavior of OP_ASGN for multiple assignments is n... -
07:20 AM Revision b8ad9535 (git): compar.c: utility functions
- * compar.c (rb_cmp): call comparison method by predefiend ID.
* compar.c (cmpint): returns compared result.
git-svn... -
06:19 AM Feature #12655: Accessing the method visibility
- https://.com/ruby/ruby/compare/trunk...nobu:feature/12655
-
05:18 AM Bug #12668 (Closed): Please backport r53433
- I quite often encounter error:
```
1) Failure:
TC_OpenStruct#test_accessor_defines_method [/builddir/build/BUI... -
02:32 AM Revision c93875e6 (git): parse.y: node_assign
- * parse.y (stmt, command_asgn): unifiy parser and ripper code by
node_assign macro.
git-svn-id: svn+ssh://ci.ruby-... -
02:20 AM Revision a2b06fe4 (git): parse.y: backref_assign_error
- * parse.y (backref_assign_error): unify parser and ripper code.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55... -
02:12 AM Revision 76e8f883 (git): parse.y: const declaration macro
- * parse.y (const_decl): unify parser and ripper code.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55859 b2dd03... -
01:39 AM Feature #4897: Define Math::TAU and BigMath.TAU. The "true" circle constant, Tau=2*Pi. See http://tauday.com/
- This may be of interest: Guido van Rossum recently reopened the Python version of this request and is going to add ta...
-
01:24 AM Revision 0859c42b (git): parse.y: const field macros
- * parse.y (const_path_field, top_const_field): unify parser and
ripper code.
git-svn-id: svn+ssh://ci.ruby-lang.or...
Also available in: Atom