forked from ruby/ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1255 lines (814 loc) · 43.3 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Mon Mar 4 15:33:40 2013 Nobuyoshi Nakada <[email protected]>
* lib/rubygems/ext/ext_conf_builder.rb (Gem::Ext::ExtConfBuilder.build):
fix for unusal cases again. install to a temporary directory once
and move instaled files to the destination directory, if it is same
as the current directory. [Bug #7698]
Mon Mar 4 14:13:36 2013 Nobuyoshi Nakada <[email protected]>
* Makefile.in (miniruby, ruby): move MAINLIBC because linker arguments
must appear after object files with newer versions of gcc. patch by
tmm1 (Aman Gupta) in [ruby-core:53121] [Bug #8009]
Mon Mar 4 10:23:00 2013 Zachary Scott <[email protected]>
* encoding.c: Typo in Encoding overview by Tom Wardrop [GH fixes #255]
Sun Mar 3 12:35:08 2013 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (MakeMakefile#libpath_env): set runtime library path for
the case rpath is disabled.
Sun Mar 3 12:17:47 2013 Nobuyoshi Nakada <[email protected]>
* lib/rubygems/ext/ext_conf_builder.rb
(Gem::Ext::ExtConfBuilder.hack_for_obsolete_style_gems): remove
circular dependencies in install-so too. [ruby-core:52882]
[Bug #7698]
Sun Mar 3 07:33:00 2013 Zachary Scott <[email protected]>
* ext/socket/tcpserver.c: Grammar for TCPServer.new from r39554
Sun Mar 3 01:17:20 2013 Nobuyoshi Nakada <[email protected]>
* lib/rubygems/ext/ext_conf_builder.rb
(Gem::Ext::ExtConfBuilder.hack_for_obsolete_style_gems): remove
circular dependencies for old style gems which locate extconf.rb on
the toplevel. [ruby-core:53059] [ruby-trunk - Bug #7698]
* lib/rubygems/ext/ext_conf_builder.rb (Gem::Ext::ExtConfBuilder.build):
use RUBYOPT instead of -r option, and revert some tests. [Bug #7698]
* lib/rubygems/ext/ext_conf_builder.rb (Gem::Ext::ExtConfBuilder.build):
revert use of temporary directory for build, to work some buggy
extconf.rb which cannot build outside the source directory.
[ruby-core:53056] [Bug #7698]
Sun Mar 3 00:04:20 2013 Nobuyoshi Nakada <[email protected]>
* enc/depend (CPPFLAGS), lib/mkmf.rb (MakeMakefile#create_makefile):
define RUBY_EXPORT for static-linked-ext mswin. [Bug #7960]
Sat Mar 2 22:49:47 2013 Nobuyoshi Nakada <[email protected]>
* win32/Makefile.sub (ENCOBJS, EXTOBJS, config.h): definitions for
static-linked-ext. [Bug #7960]
Sat Mar 2 17:34:19 2013 Tanaka Akira <[email protected]>
* lib/webrick/utils.rb: use Socket.tcp_server_sockets to create server
sockets.
fix [Bug #7100] https://bugs.ruby-lang.org/issues/7100
reported by sho-h (Sho Hashimoto).
Sat Mar 2 02:45:00 2013 Zachary Scott <[email protected]>
* array.c: typo in comment patch by Nami-Doc [Github fixes #253]
Sat Mar 2 01:33:17 2013 NARUSE, Yui <[email protected]>
* Merge Onigmo 0fe387da2fee089254f6b04990541c731a26757f
v5.13.3 [Bug#7972] [Bug#7974]
Fri Mar 1 11:09:06 2013 Eric Hodel <[email protected]>
* lib/fileutils.rb: Revert r34669 which altered the way
metaprogramming in FileUtils occurred. [ruby-trunk - Bug #7958]
* test/fileutils/visibility_tests.rb: Refactored tests of FileUtils
options modules to expose bug found in #7958
* test/fileutils/test_dryrun.rb: ditto.
* test/fileutils/test_nowrite.rb: ditto.
* test/fileutils/test_verbose.rb: ditto.
Fri Mar 1 09:18:00 2013 Zachary Scott <[email protected]>
* lib/psych.rb: specify in rdoc what object is returned in parser
By Adam Stankiewicz [Github tenderlove/psych#133]
Fri Mar 1 07:21:41 2013 Eric Hodel <[email protected]>
* lib/rubygems/ext/builder.rb: Fix incompatibilities when installing
extensions. Patch by Nobu.
[ruby-trunk - Bug #7698] [ruby-trunk - Bug #7971]
* lib/rubygems/ext/ext_conf_builder.rb: ditto.
* lib/rubygems/installer.rb: ditto.
* test/rubygems/test_gem_ext_ext_conf_builder.rb: Test for the above.
* test/rubygems/test_gem_installer.rb: ditto.
* lib/rubygems/commands/sources_command.rb: Prefer HTTPS over HTTP.
* lib/rubygems/defaults.rb: ditto
* lib/rubygems/dependency_resolver.rb: Ditto.
* lib/rubygems/source.rb: ditto.
* lib/rubygems/spec_fetcher.rb: ditto.
* lib/rubygems/specification.rb: ditto.
* lib/rubygems/test_utilities.rb: ditto.
* test/rubygems/test_gem.rb: Test for the above.
* test/rubygems/test_gem_commands_sources_command.rb: ditto.
* test/rubygems/test_gem_dependency_resolver_api_set.rb: ditto.
* test/rubygems/test_gem_remote_fetcher.rb: ditto.
* test/rubygems/test_gem_source.rb: ditto.
* test/rubygems/test_gem_spec_fetcher.rb: ditto.
Fri Mar 1 03:25:00 2013 Zachary Scott <[email protected]>
* ext/psych/lib/psych.rb: rdoc for Psych overview by Adam Stankiewicz
[Github tenderlove/psych#134]
Thu Feb 28 22:57:48 2013 Koichi Sasada <[email protected]>
* compile.c (iseq_compile_each): remove redundant trace(line)
instruction. for example, at the following script
def m()
p:xyzzy
1
2
end
compiler ignores `1' because there is no effect. However,
`trace(line)' instruction remains in bytecode.
This modification removes such redundant trace(line) instruction.
* test/ruby/test_iseq.rb: add a test.
Thu Feb 28 22:23:27 2013 Tanaka Akira <[email protected]>
* ext/socket/raddrinfo.c (inspect_sockaddr): don't show that Unix
domain socket filename is bigger than sizeof(sun_path).
This limit is not rigid on some platforms such as Darwin and SunOS.
Thu Feb 28 21:33:01 2013 WATANABE Hirofumi <[email protected]>
* configure.in(AC_DISABLE_OPTION_CHECKING): avoid warning "WARNING:
Unrecognized options: --with-PACKAGE".
Thu Feb 28 20:22:04 2013 Koichi Sasada <[email protected]>
* iseq.c (iseq_data_to_ary): fix condition.
r34303 introduces a bug to avoid all line information from
a result of ISeq#to_a. This is a regression problem from 2.0.0p0.
* test/ruby/test_iseq.rb: add a test of lines after ISeq#to_a.
Thu Feb 28 08:20:33 2013 Eric Hodel <[email protected]>
* lib/rubygems/available_set.rb: Undent for style
* lib/rubygems/dependency_installer.rb: Pick latest prerelease gem to
install. Fixes RubyGems bug #468.
* test/rubygems/test_gem_dependency_installer.rb: Test for the above.
* lib/rubygems/dependency_installer.rb: Don't display "Done installing
documentation" if documentation will not be installed.
* lib/rubygems/rdoc.rb: ditto
* lib/rubygems/dependency_list.rb: Use Array#concat for Ruby 1.x
performance.
* lib/rubygems/installer.rb: Use formatted program name when comparing
executables. RubyGems pull request #471
* test/rubygems/test_gem_installer.rb: Test for the above.
* lib/rubygems/package.rb: Use more explicit feature check to work
around JRuby bug #552
* lib/rubygems/ssl_certs/GeoTrust_Global_CA.pem: Added GeoTrust root
certificate.
* test/rubygems/test_gem_source_list.rb: Use "example" instead of real
hostname
Thu Feb 28 05:57:00 2013 Zachary Scott <[email protected]>
* thread.c: rdoc formatting for Thread, ThreadGroup, and ThreadError
Thu Feb 28 02:42:00 2013 Zachary Scott <[email protected]>
* vm.c: Typo in overview for example of Thread#status returning false
Reported by Lee Jarvis
Wed Feb 27 22:54:27 2013 Tanaka Akira <[email protected]>
* ext/socket/rubysocket.h (union_sockaddr): make it longer for SunOS
and Darwin.
Wed Feb 27 21:14:34 2013 Kouhei Sutou <[email protected]>
* lib/rexml/security.rb (REXML::Security): create.
* lib/rexml/rexml.rb: move entity_expansion_limit and
entity_expansion_text_limit accessors to ...
* lib/rexml/security.rb: ... here.
* lib/rexml/document.rb: use REXML::Security.
* lib/rexml/text.rb: use REXML::Security.
* test/rexml/test_document.rb: use REXML::Security.
Wed Feb 27 19:53:32 2013 Benoit Daloze <[email protected]>
* vm.c (Thread): fix typos in overview
Wed Feb 27 13:21:00 2013 Zachary Scott <[email protected]>
* vm.c (Thread): Typo in overview, swap setting and getting
Wed Feb 27 13:02:00 2013 Zachary Scott <[email protected]>
* vm.c (Thread): Documentation overview of Thread class
Wed Feb 27 12:57:00 2013 Zachary Scott <[email protected]>
* thread.c (rb_thread_wakeup): rdoc formatting
Wed Feb 27 12:53:00 2013 Zachary Scott <[email protected]>
* thread.c (rb_thread_group): rdoc formatting
Wed Feb 27 12:33:00 2013 Zachary Scott <[email protected]>
* lib/ostruct.rb: Typo in OpenStruct overview [Github Fixes #251]
Patch by Chun-wei Kuo
Wed Feb 27 12:13:32 2013 NARUSE, Yui <[email protected]>
* vm_exec.h (END_INSN): llvm-gcc may optimize out reg_cfp and cause
Stack/cfp consistency error when the instruction doesn't use reg_cfp.
Usually instructions use PUSH() but for example trace doesn't.
This hack cause speed down but you shouldn't use llvm-gcc, use clang.
[Bug #7938]
Wed Feb 27 10:23:00 2013 Zachary Scott <[email protected]>
* thread.c (thread_raise_m): rdoc formatting
Tue Feb 26 23:32:44 2013 Kouhei Sutou <[email protected]>
* lib/rexml/document.rb: move entity_expansion_limit accessor to ...
* lib/rexml/rexml.rb: ... here for consistency.
* lib/rexml/document.rb (REXML::Document.entity_expansion_limit):
deprecated.
* lib/rexml/document.rb (REXML::Document.entity_expansion_limit=):
deprecated.
Tue Feb 26 23:26:13 2013 Kouhei Sutou <[email protected]>
* 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]
Tue Feb 26 15:12:11 2013 Nobuyoshi Nakada <[email protected]>
* tool/mkconfig.rb: reconstruct comma separated list values. a
command line to Windows batch file is split not only by spaces
and equal signs but also by commas and semicolons.
Tue Feb 26 15:04:19 2013 Nobuyoshi Nakada <[email protected]>
* configure.in (unexpand_shvar): get rid of non-portable shell
behavior on OpenBSD, so no extra quotes. [Bug #7959]
Tue Feb 26 10:24:49 2013 Nobuyoshi Nakada <[email protected]>
* parse.y (IS_LABEL_POSSIBLE): allow labels for keyword arguments just
after method definition without a parenthesis. [ruby-core:52820]
[Bug #7942]
Tue Feb 26 04:50:00 2013 Zachary Scott <[email protected]>
* error.c: clarify reason for sleep in SignalException example
Tue Feb 26 03:47:00 2013 KOSAKI Motohiro <[email protected]>
* error.c: clarify a document of SignalException. Process.kill()
doesn't have any guarantee when signal will be delivered.
[Bug #7951] [ruby-core:52864]
Mon Feb 25 23:51:04 2013 Nobuyoshi Nakada <[email protected]>
* include/ruby/version.h: bump RUBY_API_VERSION same as RUBY_VERSION.
Mon Feb 25 21:03:34 2013 NARUSE, Yui <[email protected]>
* string.c (str_byte_substr): don't set coderange if it's not known.
[Bug #7954] [ruby-dev:47108]
Mon Feb 25 16:47:02 2013 Nobuyoshi Nakada <[email protected]>
* common.mk (realclean-local): miniprelude.c is made by srcs, so it
should not removed by distclean but by realclean. [Bug #6807]
Mon Feb 25 16:30:30 2013 Eric Hodel <[email protected]>
* lib/rubygems/config_file.rb: Lazily load .gem/credentials to only
check permissions when necessary. RubyGems bug #465
* test/rubygems/test_gem_config_file.rb: Test for the above.
* test/rubygems/test_gem_commands_push_command.rb: Remove duplicated
test.
Mon Feb 25 15:47:18 2013 Nobuyoshi Nakada <[email protected]>
* enc/depend (ARFLAGS): VisualC++ linker does not allow spaces between
output option and the output file name. [Bug #7950]
* enc/depend (RANLIB): set default command to do nothing, or make the
entire line a label on Windows.
Mon Feb 25 14:41:07 2013 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (MakeMakefile#init_mkmf): default libdirname to libdir.
* tool/rbinstall.rb: ditto.
Mon Feb 25 13:12:39 2013 Nobuyoshi Nakada <[email protected]>
* configure.in (setup): find Setup file from target_os 1. by
suffix (e.g. Setup.nacl, Setup.atheos), 2. by "platform"
option (e.g. Setup.nt, Setup.emx), and 3. default Setup. And
Setup.dj had been removed.
Mon Feb 25 12:48:00 2013 Zachary Scott <[email protected]>
* thread.c: Document Thread::new, clean up ::fork and mention calling
super if subclassing Thread
Mon Feb 25 12:38:50 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: don't test ss_family and ss_len member of
struct sockaddr_storage. They are not used now except SunOS
specific code.
Mon Feb 25 11:03:38 2013 Akinori MUSHA <[email protected]>
* configure.in (unexpand_shvar): Use the numeric comparison
operator instead of '==' which is a ksh extension. [Bug #7941]
Mon Feb 25 02:37:56 2013 Tanaka Akira <[email protected]>
* ext/socket: define and use union_sockaddr instead of struct
sockaddr_storage for less casts.
* ext/socket/rubysocket.h (union_sockaddr): defined.
* ext/socket/socket.c (sock_accept): use union_sockaddr.
(sock_accept_nonblock): ditto.
(sock_sysaccept): ditto.
(sock_s_getnameinfo): ditto.
* ext/socket/basicsocket.c (bsock_getsockname): ditto.
(bsock_getpeername): ditto.
(bsock_local_address): ditto.
(bsock_remote_address): ditto.
* ext/socket/ancdata.c (bsock_recvmsg_internal): ditto.
* ext/socket/init.c (recvfrom_arg): ditto.
(recvfrom_blocking): ditto.
(rsock_s_recvfrom): ditto.
(rsock_s_recvfrom_nonblock): ditto.
(rsock_getfamily): ditto.
* ext/socket/raddrinfo.c (rb_addrinfo_t): ditto.
(ai_get_afamily): ditto.
(inspect_sockaddr): ditto.
(addrinfo_mdump): ditto.
(addrinfo_mload): ditto.
(addrinfo_getnameinfo): ditto.
(addrinfo_ip_port): ditto.
(extract_in_addr): ditto.
(addrinfo_ipv6_to_ipv4): ditto.
(addrinfo_unix_path): ditto.
* ext/socket/tcpserver.c (tcp_accept): ditto.
(tcp_accept_nonblock): ditto.
(tcp_sysaccept): ditto.
* ext/socket/ipsocket.c (ip_addr): ditto.
(ip_peeraddr): ditto.
(ip_s_getaddress): ditto.
Sun Feb 24 21:15:05 2013 Tadayoshi Funaba <[email protected]>
* ext/date/date_core.c: [ruby-core:52303]
Sun Feb 24 15:33:46 2013 Nobuyoshi Nakada <[email protected]>
* random.c (rb_random_ulong_limited): limit is inclusive, but generic
rand method should return a number less than it, so increase for the
difference. [ruby-core:52779] [Bug #7935]
Sun Feb 24 15:32:36 2013 Nobuyoshi Nakada <[email protected]>
* random.c (rb_random_ulong_limited): limit is inclusive, but generic
rand method should return a number less than it, so increase for the
difference. [ruby-core:52779] [Bug #7935]
Sun Feb 24 15:14:43 2013 Eric Hodel <[email protected]>
* lib/net/http.rb: Removed duplicate Accept-Encoding in Net::HTTP#get.
[ruby-trunk - Bug #7924]
* test/net/http/test_http.rb: Test for the above.
Wed Feb 20 14:28:00 2013 Zachary Scott <[email protected]>
* thread.c: Document ThreadGroup::Default
Wed Feb 20 14:23:00 2013 Zachary Scott <[email protected]>
* thread.c: Grammar for #backtrace_locations and ::handle_interrupt
Sun Feb 24 13:35:57 2013 Nobuyoshi Nakada <[email protected]>
* vm_insnhelper.c (vm_call_method): block level control frame does not
have method entry, so obtain the method entry from method top-level
control frame to be compared with refined method entry.
[ruby-core:52750] [Bug #7925]
Wed Feb 20 13:23:00 2013 Zachary Scott <[email protected]>
* object.c: Document methods receiving string and convert to symbol
Patch by Stefan Rusterholz
* vm_eval.c: ditto
* vm_method.c: ditto
Wed Feb 20 07:20:56 2013 KOSAKI Motohiro <[email protected]>
* signal.c (sigsegv): suppress unused result warning. Because
write(2) is marked __warn_unused_result__ on Linux glibc.
Sun Feb 24 07:50:53 2013 Nobuyoshi Nakada <[email protected]>
* compile.c (iseq_set_arguments): no keyword check if any keyword rest
argument exists, even unnamed. [ruby-core:52744] [Bug #7922]
Sat Feb 23 16:51:00 2013 Zachary Scott <[email protected]>
* thread.c: Documentation for Thread#backtrace_locations
Sat Feb 23 16:05:00 2013 Zachary Scott <[email protected]>
* vm.c: Typo in ObjectSpace::WeakMap overview
Sat Feb 23 16:00:00 2013 Zachary Scott <[email protected]>
* thread.c: Improved rdoc for ::handle_interrupt, ::pending_interrupt?
and #pending_interrupt?
Sat Feb 23 12:26:43 2013 Akinori MUSHA <[email protected]>
* misc/ruby-electric.el (ruby-electric-curlies)
(ruby-electric-matching-char, ruby-electric-bar): Avoid electric
insertion when there is a prefix argument.
* misc/ruby-electric.el (ruby-electric-insert)
(ruby-electric-cua-replace-region-p)
(ruby-electric-cua-replace-region): Avoid electric insertion and
fall back when cua-mode is enabled and a region is active.
Sat Feb 23 12:35:00 2013 Zachary Scott <[email protected]>
* array.c: Document #<=> return values and formatting
* bignum.c: ditto
* file.c: ditto
* object.c: ditto
* numeric.c: ditto
* rational.c: ditto
* string.c: ditto
* time.c: ditto
Sat Feb 23 10:50:00 2013 Zachary Scott <[email protected]>
* array.c (rb_ary_diff, rb_ary_and, rb_ary_or): Document return order
[RubySpec #7803]
Sat Feb 23 10:17:00 2013 Zachary Scott <[email protected]>
* object.c (rb_obj_comp): Documenting Object#<=> return values
Patch by Stefan Rusterholz
Sat Feb 23 09:48:41 2013 Nobuyoshi Nakada <[email protected]>
* dir.c (file_s_fnmatch, fnmatch_brace): encoding-incompatible pattern
and string do not match, instead of exception. [ruby-dev:47069]
[Bug #7911]
Sat Feb 23 08:57:46 2013 Marc-Andre Lafortune <[email protected]>
* doc/NEWS-*: Update NEWS from their respective branches
Sat Feb 23 08:14:43 2013 Marc-Andre Lafortune <[email protected]>
* NEWS: many additions for Ruby 2.0.0
* object.c: Add doc for Module.prepended
Sat Feb 23 07:52:53 2013 Nobuyoshi Nakada <[email protected]>
* template/ruby.pc.in: reorder library flags which may refer library
names. [Bug #7913]
Fri Feb 22 23:46:20 2013 CHIKANAGA Tomoyuki <[email protected]>
* lib/rexml/document.rb (REXML::Document.entity_expansion_text_limit):
fix a typo in comment in r39384.
Fri Feb 22 18:31:46 2013 Aaron Patterson <[email protected]>
* 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 Feb 22 17:36:23 2013 NARUSE, Yui <[email protected]>
* test/test_rbconfig.rb (TestRbConfig): fix r39372.
It must see RbConfig::CONFIG instead of CONFIG.
Fri Feb 22 14:55:41 2013 Naohisa Goto <[email protected]>
* signal.c (ruby_abort): fix typo in r39354 [Bug #5014]
Fri Feb 22 12:46:41 2013 Nobuyoshi Nakada <[email protected]>
* random.c (rb_random_ulong_limited): fix error message for negative
value. [ruby-dev:47061] [Bug #7903]
Fri Feb 22 11:36:45 2013 Nobuyoshi Nakada <[email protected]>
* test/test_rbconfig.rb (TestRbConfig): skip user defined values by
configuration options. [Bug #7902]
Fri Feb 22 11:33:42 2013 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (MakeMakefile#init_mkmf): adjust default library path
for multiarch. [Bug #7874]
Fri Feb 22 11:10:00 2013 Zachary Scott <[email protected]>
* enum.c (Enumerable#chunk: Improved examples, grammar, and formatting
Patch by Dan Bernier and Rich Bruchal of newhaven.rb
[Github documenting-ruby/ruby#8]
Fri Feb 22 11:00:00 2013 Zachary Scott <[email protected]>
* numeric.c: Examples and formatting for Numeric and Float
Based on a patch by Zach Morek and Oren K of newhaven.rb
[Github documenting-ruby/ruby#5]
Fri Feb 22 07:04:41 2013 Eric Hodel <[email protected]>
* lib/rubygems/installer.rb (build_extensions): Create extension
install destination before building extension. Patch by Kenta Murata.
[ruby-trunk - Bug #7897]
* test/rubygems/test_gem_installer.rb: Test for the above.
Fri Feb 22 06:30:57 2013 Eric Hodel <[email protected]>
* doc/globals.rdoc: Document what setting $DEBUG does.
* doc/globals.rdoc: Added pointer to $-d for full documentation.
Fri Feb 22 06:27:07 2013 Eric Hodel <[email protected]>
* doc/globals.rdoc: Document what setting $VERBOSE does. [Bug #7899]
* doc/globals.rdoc: Added pointer to $-w and $-v for full
documentation.
Fri Feb 22 02:33:00 2013 Zachary Scott <[email protected]>
* lib/abbrev.rb: Add words parameter to Abbrev::abbrev
Patch by Devin Weaver [Github documenting-ruby/ruby#7]
Thu Feb 21 17:28:14 2013 NARUSE, Yui <[email protected]>
* tool/merger.rb: add interaction when only ChangeLog is modified.
Thu Feb 21 16:34:46 2013 Nobuyoshi Nakada <[email protected]>
* signal.c (check_stack_overflow): extract duplicated code and get rid
of declaration-after-statement. [Bug #5014]
Thu Feb 21 14:14:13 2013 KOSAKI Motohiro <[email protected]>
* signal.c (sigsegv): avoid to use async signal unsafe functions
when nested sigsegv is happen.
[Bug #5014] [ruby-dev:44082]
Thu Feb 21 13:47:59 2013 KOSAKI Motohiro <[email protected]>
* file.c (rb_group_member): added an error check. SUS says,
getgroups(small_value) may return EINVAL.
Thu Feb 21 13:37:07 2013 KOSAKI Motohiro <[email protected]>
* process.c (RB_MAX_GROUPS): moved to
* internal.h (RB_MAX_GROUPS): here.
* file.c (rb_group_member): use RB_MAX_GROUPS instead of
RUBY_GROUP_MAX. They are the same.
Thu Feb 21 13:15:40 2013 KOSAKI Motohiro <[email protected]>
* file.c (access_internal): removed.
* file.c (rb_file_readable_real): use access() instead of
access_internal().
* file.c (rb_file_writable_real): ditto.
* file.c (rb_file_executable_real): ditto.
Thu Feb 21 13:04:59 2013 KOSAKI Motohiro <[email protected]>
* file.c (eaccess): use access() when not using setuid nor setgid.
This is minor optimization.
Thu Feb 21 12:56:19 2013 KOSAKI Motohiro <[email protected]>
* file.c (rb_group_member): get rid of NGROUPS dependency.
[Bug #7886] [ruby-core:52537]
Thu Feb 21 12:45:03 2013 Nobuyoshi Nakada <[email protected]>
* ruby.c (ruby_init_loadpath_safe): try two levels upper for stripping
libdir name. [Bug #7874]
* configure.in (libdir_basename): expand with multiarch in configure,
not to defer the expansion till ruby.pc.in and mkmf.rb. [Bug #7874]
* configure.in (libdir_basename): also -rpath and -install_name flags
are affected when libruby directory changes. [Bug #7874]
Wed Feb 20 19:27:02 2013 Nobuyoshi Nakada <[email protected]>
* include/ruby/ruby.h (HAVE_RB_SCAN_ARGS_OPTIONAL_HASH): for
rb_scan_args() optional hash feature. [Bug #7861]
Wed Feb 20 18:02:26 2013 Nobuyoshi Nakada <[email protected]>
* configure.in (target_os): do not strip -gnu suffix on Linux if
--target is given explicitly. [Bug #7874]
* configure.in (libdirname): adjust library path name which libruby
files will be installed. [Bug #7874]
* tool/rbinstall.rb (libdir): ditto.
Wed Feb 20 13:37:00 2013 Zachary Scott <[email protected]>
* ext/pty/pty.c: Documentation for the PTY module
Wed Feb 20 12:18:00 2013 Zachary Scott <[email protected]>
* object.c: Document Data class [Bug #7890] [ruby-core:52549]
Patch by Matthew Mongeau
Wed Feb 20 11:50:00 2013 Zachary Scott <[email protected]>
* lib/mutex_m.rb: Add rdoc for Mutex_m module
Wed Feb 20 09:34:43 2013 Eric Hodel <[email protected]>
* lib/rubygems/commands/update_command.rb: Create the installer after
options are processed. [ruby-trunk - Bug #7779]
* test/rubygems/test_gem_commands_update_command.rb: Test for the
above.
Wed Feb 20 07:51:19 2013 Eric Hodel <[email protected]>
* lib/rubygems/installer.rb: Use gsub instead of gsub! to avoid
altering @bin_dir. Fixes tests on windows. [ruby-trunk - Bug #7885]
Tue Feb 19 20:50:00 2013 Kenta MURATA <[email protected]>
* ext/bigdecimal/bigdecimal.gemspec: bump to 1.2.0.
[ruby-core:51777] [Bug #7761]
Tue Feb 19 13:07:25 2013 Akinori MUSHA <[email protected]>
* ext/syslog/syslog.c (Init_syslog): Define inspect as a singleton
method and remove it as an instance method. [Bug #6502]
Tue Feb 19 12:30:00 2013 Zachary Scott <[email protected]>
* object.c: rdoc formatting for Kernel#Array()
* array.c: Add rdoc for Array() method to Creating Arrays section
Tue Feb 19 10:35:52 2013 Eric Hodel <[email protected]>
* ext/openssl/ossl.c (class OpenSSL): Use only inner parenthesis in
create_extension examples.
Tue Feb 19 10:27:12 2013 Eric Hodel <[email protected]>
* ext/openssl/ossl.c (class OpenSSL): Fixed ExtensionFactory example.
Patch by Richard Bradley. [ruby-trunk - Bug #7551]
Tue Feb 19 08:32:11 2013 Koichi Sasada <[email protected]>
* vm_eval.c (vm_call0_body): check interrupts after method dispatch
from C methods. [Bug #7878]
Tue Feb 19 08:14:40 2013 Eric Hodel <[email protected]>
* lib/rubygems/installer.rb: Fixed placement of executables with
--user-install. [ruby-trunk - Bug #7779]
* test/rubygems/test_gem_installer.rb: Test for above.
Tue Feb 19 06:04:06 2013 NARUSE, Yui <[email protected]>
* vm_dump: FreeBSD ports' libexecinfo's backtrace(3) can't trace
beyond signal trampoline, and as described in r38342 it can't
trace on -O because it see stack frame pointers.
libunwind unw_backtrace see dwarf information in the binary
and it works with -O (without frame pointers).
* configure.in: remove r38342's hack and check libunwind.
Tue Feb 19 04:26:29 2013 NARUSE, Yui <[email protected]>
* configure.in: check whether backtrace(3) works well or not.
* vm_dump.c: set HAVE_BACKTRACE 0 if BROKEN_BACKTRACE.
Mon Feb 18 16:30:18 2013 Akinori MUSHA <[email protected]>
* lib/ipaddr.rb (IPAddr#in6_addr): Fix a typo with the closing
parenthesis.
Mon Feb 18 12:32:24 2013 Akinori MUSHA <[email protected]>
* lib/ipaddr.rb (IPAddr#in6_addr): Fix the parser so that it can
recognize IPv6 addresses with only one edge 16-bit piece
compressed, like [::2:3:4:5:6:7:8] or [1:2:3:4:5:6:7::].
[Bug #7477]
Mon Feb 18 10:09:54 2013 Nobuyoshi Nakada <[email protected]>
* configure.in (unexpand_shvar): regularize a shell variable by
unexpanding shell variables in it.
Sun Feb 17 20:55:44 2013 Nobuyoshi Nakada <[email protected]>
* compar.c (rb_invcmp): compare by inversed comparison, with preventing
from infinite recursion. [ruby-core:52305] [Bug #7870]
* string.c (rb_str_cmp_m), time.c (time_cmp): get rid of infinite
recursion.
Sun Feb 17 17:23:22 2013 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb: remove extra topdir in VPATH, which was in
win32/Makefile.sub for some reason and moved from there.
[ruby-dev:46998] [Bug #7864]
Sun Feb 17 01:19:00 2013 Zachary Scott <[email protected]>
* ext/psych/lib/psych/y.rb: Document Kernel#y by Adam Stankiewicz
[Github tenderlove/psych#127]
Sun Feb 17 00:52:14 2013 NARUSE, Yui <[email protected]>
* tool/mkconfig.rb: remove prefix from rubyarchdir.
r39267 expands variables, it changes expansion timing,
breaks RbConfig::CONFIG["includedir"] and building
extension libraries with installed ruby.
Sat Feb 16 20:51:17 2013 Kazuki Tsujimoto <[email protected]>
* vm.c (ENV_IN_HEAP_P): fix off-by-one error.
Sat Feb 16 20:47:16 2013 Akinori MUSHA <[email protected]>
* configure.in (LIBRUBY_DLDFLAGS): Fix a bug where --with-opt-dir
options given were not reflected to LIBRUBY_DLDFLAGS on many
platforms including Linux and other GNU-based systems, NetBSD,
AIX and BeOS.
Sat Feb 16 20:43:20 2013 Tanaka Akira <[email protected]>
* ext/socket/ancdata.c (rsock_recvmsg): ignore truncated part of
socket address returned from recvmsg().
* ext/socket/init.c (recvfrom_blocking): ignore truncated part of
socket address returned from recvfrom().
(rsock_s_recvfrom_nonblock): ditto.
Sat Feb 16 20:05:26 2013 Ayumu AIZAWA <[email protected]>
* test/ruby/test_thread.rb: fixed typo
patched by Hiroki Matsue via https://github.com/ruby/ruby/pull/248
Sat Feb 16 16:08:35 2013 Koichi Sasada <[email protected]>
* vm.c (rb_thread_mark): mark a working Proc of bmethod
(a method defined by define_method) even if the method was removed.
We could not trace working Proc object which represents the body
of bmethod if the method was removed (alias/undef/overridden).
Simply, it was mark miss.
This patch by Kazuki Tsujimoto. [Bug #7825]
NOTE: We can brush up this marking because we do not need to mark
`me' on each living control frame. We need to mark `me's
only if `me' was free'ed. This is future work after Ruby 2.0.0.
* test/ruby/test_method.rb: add a test.
Sat Feb 16 15:45:56 2013 Koichi Sasada <[email protected]>
* proc.c (rb_binding_new_with_cfp): create binding object even if
the frame is IFUNC. But return a ruby-level binding to keep
compatibility.
This patch fix degradation introduced from r39067.
[Bug #7774] [ruby-dev:46960]
* test/ruby/test_settracefunc.rb: add a test.
Sat Feb 16 13:40:13 2013 Nobuyoshi Nakada <[email protected]>
* configure.in (shvar_to_cpp): do not substitute exec_prefix itself
with RUBY_EXEC_PREFIX, which cause recursive definition.
[ruby-core:52296] [Bug #7860]
Sat Feb 16 13:13:04 2013 Nobuyoshi Nakada <[email protected]>
* ext/io/console/io-console.gemspec: bump to 0.4.2. now explicitly
requires ruby 1.9.3 or later. [Bug #7847]
* ext/io/console/console.c (console_dev): compatibility with ruby 1.8.
* ext/io/console/console.c (rawmode_opt, console_dev): compatibility
with ruby 1.9. [ruby-core:52220] [Bug #7847]
Sat Feb 16 12:45:50 2013 Nobuyoshi Nakada <[email protected]>
* configure.in: unexpand arch sitearch and exec_prefix values, so
directly specified bindir, libdir, rubyprefix, etc can be properly
substituted. [ruby-core:52296] [Bug #7860]
Sat Feb 16 12:15:20 2013 Aaron Patterson <[email protected]>
* parse.y: add dtrace probe for symbol create.
* probes.d: ditto
Sat Feb 16 09:27:37 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: don't test sys/feature_tests.h which is not
used now.
It was included in r7901 as "bug of gcc 3.0 on Solaris 8 ?".
Sat Feb 16 09:24:37 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: reorder header tests to consider inclusion
order in rubysocket.h.
Sat Feb 16 08:42:58 2013 Tanaka Akira <[email protected]>
* configure.in, ext/socket/extconf.rb: test netinet/in_systm.h in
ext/socket/extconf.rb instead of configure.in.
Originally, netinet/in_systm.h is included for NextStep, OpenStep,
and Rhapsody. [ruby-core:1596]
Sat Feb 16 07:55:40 2013 Tanaka Akira <[email protected]>
* configure.in: don't test xti.h here.
* ext/socket/extconf.rb: test xti.h here.
Originally, xti.h is included for IRIX [ruby-core:14447].
Sat Feb 16 07:16:49 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: test struct sockaddr_un and its member,
sun_len.
* ext/socket/sockport.h (INIT_SOCKADDR_UN): new macro defined.
* ext/socket/socket.c (sock_s_pack_sockaddr_un): use INIT_SOCKADDR_UN.
* ext/socket/unixsocket.c (rsock_init_unixsock): ditto.
* ext/socket/raddrinfo.c (init_unix_addrinfo): ditto.
(addrinfo_mload): ditto.
Sat Feb 16 07:05:59 2013 Tanaka Akira <[email protected]>
* ext/socket/sockport.h (INIT_SOCKADDR_IN): don't need family
argument. it is always AF_INET.
* ext/socket/raddrinfo.c (make_inetaddr): follow INIT_SOCKADDR_IN
change.
(addrinfo_ipv6_to_ipv4): ditto.
Sat Feb 16 04:21:07 2013 NAKAMURA Usaku <[email protected]>
* ext/socket/extconf.rb: workaround for mswin/mingw build problem.
sendmsg emulation in win32/win32.c is not enough.
Sat Feb 16 00:19:20 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: use all all tested available headers for
have_func.
Fri Feb 15 22:21:37 2013 Akinori MUSHA <[email protected]>
* configure.in: Fix a bug introduced in r38342 that the cflagspat
substitution is messed up by the way CFLAGS and optflags are
modified, which affected FreeBSD and NetBSD/amd64 when
configured to use libexecinfo. This bug resulted in CFLAGS and
CXXFLAGS in RbConfig::CONFIG having warnflags expanded in them,
forcing third-party C/C++ extensions to follow what warnflags
demands, like ANSI/ISO-C90 conformance. ref [Bug #7101]
Fri Feb 15 20:29:11 2013 Tanaka Akira <[email protected]>
* ext/socket/sockport.h (SET_SIN_LEN): defined for strict-aliasing
rule.
(INIT_SOCKADDR_IN): ditto.
* ext/socket/raddrinfo.c (make_inetaddr): use INIT_SOCKADDR_IN.
(addrinfo_ipv6_to_ipv4): ditto.
Fri Feb 15 18:24:48 2013 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (MakeMakefile#try_run): bail out explicitly if cross
compiling, because it cannot work of course.
Fri Feb 15 12:34:58 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: test struct sockaddr_storage directly.
* ext/socket/rubysocket.h: use HAVE_TYPE_STRUCT_SOCKADDR_STORAGE.
Fri Feb 15 12:26:13 2013 Tanaka Akira <[email protected]>
* ext/socket/getaddrinfo.c (GET_AI): don't cast 1st argument for
INIT_SOCKADDR.
Fri Feb 15 08:12:11 2013 Tanaka Akira <[email protected]>
* ext/socket/sockport.h (SET_SS_LEN): removed.
(SET_SIN_LEN): removed.
(INIT_SOCKADDR): new macro.
* ext/socket/ancdata.c (extract_ipv6_pktinfo): use INIT_SOCKADDR.
* ext/socket/raddrinfo.c (make_inetaddr): use INIT_SOCKADDR.
(addrinfo_ipv6_to_ipv4): ditto.
* ext/socket/getaddrinfo.c (GET_AI): use INIT_SOCKADDR.
Fri Feb 15 07:49:27 2013 Eric Hodel <[email protected]>
* lib/rdoc.rb: Update to release version of 4.0.0
* lib/rubygems.rb: Update to release version of 2.0.0
Fri Feb 15 07:07:27 2013 Tanaka Akira <[email protected]>
* ext/socket/sockport.h (SA_LEN): removed because unused now.
(SS_LEN): ditto.
(SIN_LEN): ditto.
Thu Feb 14 10:45:31 2013 KOSAKI Motohiro <[email protected]>
* test/ruby/test_process.rb (test_setsid): Added a workaround for
MacOS X. Patch by nagachika. [Bug #7826] [ruby-core:52126]
Fri Feb 15 00:15:31 2013 Tanaka Akira <[email protected]>
* ext/socket/sockport.h (VALIDATE_SOCKLEN): new macro to validate
sa_len member of 4.4BSD socket address.
* ext/socket/getnameinfo.c (getnameinfo): use VALIDATE_SOCKLEN,
instead of SA_LEN.
* ext/socket/socket.c (sock_s_getnameinfo): use VALIDATE_SOCKLEN
instead of SS_LEN.
Thu Feb 14 22:25:54 2013 Tanaka Akira <[email protected]>
* ext/socket/socket.c (sockaddr_len): extracted from sockaddr_obj.
(sockaddr_obj): add an argument to length of socket address.
(socket_s_ip_address_list): call sockaddr_obj with actual socket