-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
4229 lines (2690 loc) · 143 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
Thu May 9 22:00:35 2013 Tanaka Akira <[email protected]>
* ext/socket/ancdata.c (bsock_sendmsg_internal): controls_num should
not be negative.
Thu May 9 21:09:57 2013 Tanaka Akira <[email protected]>
* file.c, ext/etc/etc.c, ext/socket/unixsocket.c,
ext/openssl/ossl.h, ext/openssl/openssl_missing.c: Use
HAVE_AGGREGATE_MEMBER instead of HAVE_ST_MEMBER.
Thu May 9 20:43:41 2013 Tanaka Akira <[email protected]>
* ext/socket/ancdata.c (bsock_sendmsg_internal): Always set
controls_num to raise NotImplementedError appropriately.
(bsock_recvmsg_internal): Raise NotImplementedError if
:scm_rights=>true is given on platforms which don't have
4.4BSD style control message.
Thu May 9 12:06:07 2013 Tanaka Akira <[email protected]>
* ext/socket/rubysocket.h, ext/socket/unixsocket.c,
ext/socket/ancdata.c: Use HAVE_STRUCT_MSGHDR_MSG_CONTROL instead
of HAVE_ST_MSG_CONTROL.
Thu May 9 11:30:02 2013 Zachary Scott <[email protected]>
* string.c: Add call-seq alias for String#=== [Bug #8381]
Thu May 9 11:14:18 2013 Zachary Scott <[email protected]>
* doc/contributing.rdoc: Add guide for contributing to CRuby
Thu May 9 04:55:49 2013 Tanaka Akira <[email protected]>
* configure.in: Check socket library again. shutdown() is used in
io.c.
Thu May 9 01:52:31 2013 Tanaka Akira <[email protected]>
* configure.in: Don't check socketpair. socketpair is not used in
ruby command itself.
Thu May 9 01:05:41 2013 Nobuyoshi Nakada <[email protected]>
* class.c (rb_mod_included_modules): should not include non-modules.
[ruby-core:53158] [Bug #8025]
Wed May 8 22:46:59 2013 Nobuyoshi Nakada <[email protected]>
* class.c (rb_mod_included_modules): should not include the original
module itself. [ruby-core:53158] [Bug #8025]
Wed May 8 17:43:55 2013 NARUSE, Yui <[email protected]>
* io.c (rb_io_ext_int_to_encs): ignore internal encoding if external
encoding is ASCII-8BIT. [Bug #8342]
Wed May 8 13:49:38 2013 NARUSE, Yui <[email protected]>
* ext/json/generator/generator.c (isArrayOrObject): cast char to
unsigned char. [Bug #8378]
Wed May 8 13:46:10 2013 NARUSE, Yui <[email protected]>
* ext/json/generator/depend: fix dependencies [Bug #8379]
* ext/json/parser/depend: ditto.
Wed May 8 13:07:17 2013 Nobuyoshi Nakada <[email protected]>
* parse.y (parser_yylex): fail if $, @, @@ are not followed by a valid
name character. [ruby-core:54846] [Bug #8375].
Wed May 8 13:06:31 2013 Nobuyoshi Nakada <[email protected]>
* include/ruby/ruby.h (ISGRAPH): add missing macro.
Wed May 8 06:42:56 2013 NARUSE, Yui <[email protected]>
* ext/socket/socket.c (socket_s_ip_address_list): fix wrongly filled
sin6_scope_id on KAME introduced by r40593 for OpenIndiana.
KAME uses fe80:<scope_id>::<interface id> for link-local address
internally.
Setting sin6_scope_id causes it leaked.
see also comments of sockaddr_obj().
Tue May 7 22:12:34 2013 Tanaka Akira <[email protected]>
* ext/readline/readline.c (insert_ignore_escape): Add a cast to
unsigned char * before dereference.
This suppress a warning on Cygwin.
Tue May 7 12:15:24 2013 Tanaka Akira <[email protected]>
* ext/socket/ancdata.c (bsock_recvmsg_internal): Add a cast to
suppress warning.
Bionic defines socklen_t as int.
Bionic defines msg_controllen as unsigned int (__kernel_size_t)
instead of socklen_t as POSIX.
Tue May 7 12:12:42 2013 Tanaka Akira <[email protected]>
* ext/socket/ancdata.c (ancillary_inspect): Don't call
anc_inspect_ipv6_pktinfo if !HAVE_TYPE_STRUCT_IN6_PKTINFO.
anc_inspect_ipv6_pktinfo is not defined in the case.
Tue May 7 12:10:52 2013 Tanaka Akira <[email protected]>
* ext/socket/socket.c (socket_s_ip_address_list): Cast EXTRA_SPACE as
int. This suppress a warning.
Tue May 7 12:09:29 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: Set close_fds false for Cygwin.
Cygwin doesn't support fd passing.
This enables socket extension library cross-compilable by default.
Tue May 7 12:07:35 2013 Tanaka Akira <[email protected]>
* pack.c (swap32): Don't redefine it if it is already defined.
Bionic defines it.
(swap64): Ditto.
Mon May 6 20:50:37 2013 Tanaka Akira <[email protected]>
* ext/socket/socket.c (socket_s_ip_address_list): Fill sin6_scope_id
if getifaddrs() returns an IPv6 link local address which
sin6_scope_id is zero, such as on OpenIndiana SunOS 5.11.
Sun May 5 18:56:52 2013 Nobuyoshi Nakada <[email protected]>
* insns.def (defined): use vm_search_superclass() like as normal super
call. based on a patch <https://gist.github.com/wanabe/5520026> by
wanabe.
* vm_insnhelper.c (vm_search_superclass): return error but not raise
exceptions.
* vm_insnhelper.c (vm_search_super_method): check the result of
vm_search_superclass and raise exceptions on error.
Sun May 5 16:29:41 2013 Nobuyoshi Nakada <[email protected]>
* insns.def (defined): get method entry from the method top level
frame, not block frame. [ruby-core:54769] [Bug #8367]
Sun May 5 13:28:54 2013 Nobuyoshi Nakada <[email protected]>
* template/ruby.pc.in (Cflags): use rubyarchhdrdir for multiarch.
[Bug #7874]
Sat May 4 07:20:00 2013 Zachary Scott <[email protected]>
* doc/security.rdoc: Add note about reporting security vulns
Sat May 4 04:13:27 2013 KOSAKI Motohiro <[email protected]>
* include/ruby/defines.h (RUBY_ATTR_ALLOC_SIZE): New for
attribute((alloc_size(params))).
* include/ruby/defines.h (xmalloc, xmalloc2, xcalloc)
(xrealloc, xrealloc2): Annotated by RUBY_ATTR_ALLOC_SIZE.
* include/ruby/ruby.h (rb_alloc_tmp_buffer): ditto.
Fri May 3 19:32:13 2013 Takeyuki FUJIOKA <[email protected]>
* lib/cgi/util.rb: All class methods moduleized.
We can use these methods like a function when "include CGI::Util".
[Feature #8354]
Fri May 3 14:09:45 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: Make default_ipv6 true for Cygwin.
Cygwin supports IPv6 since Cygwin 1.7.1 (2009-12).
http://cygwin.com/ml/cygwin-announce/2009-12/msg00027.html
Fri May 3 13:35:26 2013 Nobuyoshi Nakada <[email protected]>
* ext/socket/{getaddrinfo,getnameinfo}.c: define socklen_t if not
defined, e.g., older VC.
Fri May 3 13:29:11 2013 Nobuyoshi Nakada <[email protected]>
* include/ruby/win32.h (INTPTR_MAX, INTPTR_MIN, UINTPTR_MAX): also
should be defined when defining intptr_t and uintptr_t.
bigdecimal.c requires the former two now.
Fri May 3 13:22:12 2013 Nobuyoshi Nakada <[email protected]>
* win32/win32.c (poll_child_status): fix build error on older mingw.
Fri May 3 00:15:58 2013 Ayumu AIZAWA <[email protected]>
* common.mk: remove timestamps in distclean-ext realclean-ext.
Thu May 2 23:23:49 2013 Nobuyoshi Nakada <[email protected]>
* object.c (rb_obj_is_kind_of): skip prepending modules.
[ruby-core:54742] [Bug #8357]
* object.c (rb_class_inherited_p): ditto.
[ruby-core:54736] [Bug #8357]
Thu May 2 22:11:47 2013 Nobuyoshi Nakada <[email protected]>
* bin/irb: remove dead code from sample/irb.rb.
Thu May 2 17:32:45 2013 Nobuyoshi Nakada <[email protected]>
* marshal.c (copy_ivar_i): get rid of overwriting already copied
instance variables. c.f. [Bug #8276]
Thu May 2 16:55:43 2013 Nobuyoshi Nakada <[email protected]>
* thread.c (id_locals): use cached ID.
* vm.c (ruby_thread_init): ditto.
* defs/id.def: add more predefined IDs used in core.
Thu May 2 13:42:42 2013 Ryan Davis <[email protected]>
* lib/minitest/*: Imported minitest 4.7.4 (r8483)
* test/minitest/*: ditto
Thu May 2 11:32:22 2013 NAKAMURA Usaku <[email protected]>
* win32/win32.c (poll_child_status): [experimental] set the cause of
a child's death to status if its exitcode seems to be an error.
* test/ruby/test_process.rb (TestProcess#test_no_curdir): maybe now
we can test it.
* test/ruby/test_thread.rb (TestThread#test_thread_timer_and_interrupt):
ditto.
Thu May 2 11:24:00 2013 Zachary Scott <[email protected]>
* lib/yaml.rb: nodoc EngineManager, add History doc #8344
Wed May 1 21:11:17 2013 Tanaka Akira <[email protected]>
* time.c (localtime_with_gmtoff_zone): musl libc may return NULL for
tm_zone.
Wed May 1 18:59:36 2013 Benoit Daloze <[email protected]>
* enum.c (Enumerable#chunk): fix grammar of error message
for symbols beginning with an underscore [Bug #8351]
Wed May 1 16:47:47 2013 Nobuyoshi Nakada <[email protected]>
* ext/curses/extconf.rb (curses_version): try once for each tests, a
function or a variable. fallback to variable for old SVR4.
Wed May 1 16:17:46 2013 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb (extmake): extensions not to be installed should not
make static libraries, but make dynamic libraries always.
Wed May 1 12:20:00 2013 Zachary Scott <[email protected]>
* lib/rake/version.rb: Fix RDoc warning with :include: [Bug #8347]
Wed May 1 11:40:25 2013 Nobuyoshi Nakada <[email protected]>
* defs/id.def (predefined): add "idProc".
* eval.c (frame_func_id): use predefined IDs.
* proc.c (mnew, mproc, mlambda): use predefined IDs.
* vm.c (rb_vm_control_frame_id_and_class): ditto.
* vm.c (Init_VM): ditto.
Tue Apr 30 23:18:00 2013 Zachary Scott <[email protected]>
* lib/benchmark.rb: Update Benchmark results on newer CPU
Tue Apr 30 12:31:40 2013 Nobuyoshi Nakada <[email protected]>
* proc.c (mproc, mlambda): use frozen core methods instead of plain
global methods, so that methods cannot be overridden.
[ruby-core:54687] [Bug #8345]
* vm.c (Init_VM): define proc and lambda on the frozen core object.
* include/ruby/intern.h (rb_block_lambda): add declaration instead of
deprecated rb_f_lambda.
Mon Apr 29 17:02:30 2013 NARUSE, Yui <[email protected]>
* ext/nkf/nkf-utf8/nkf.h: Bionic libc doesn't have locale.
[Feature #8338]
Mon Apr 29 06:58:30 2013 Nobuyoshi Nakada <[email protected]>
* ext/openssl/ossl_bn.c (ossl_bn_initialize): no need of alloca for
small fixed size array.
* ext/openssl/ossl_bn.c (ossl_bn_initialize): check overflow first,
and use alloca for small size input.
Mon Apr 29 00:40:13 2013 Benoit Daloze <[email protected]>
* lib/yaml.rb: Clarify documentation about YAML being always Psych.
Give a tip about using Syck. See #8344.
Sun Apr 28 23:34:01 2013 Benoit Daloze <[email protected]>
* lib/yaml.rb: Use another trick to define the YAML module.
https://twitter.com/n0kada/status/328342207511801856
Sun Apr 28 23:19:00 2013 Zachary Scott <[email protected]>
* lib/pp.rb: Update PP module overview by @geopet
Sun Apr 28 22:04:37 2013 Hiroshi Shirosaki <[email protected]>
* ext/openssl/ossl_bn.c (ossl_bn_initialize): fix buffer overflow on
x64 Windows and memory leak when initializing with integer.
[ruby-core:54615] [Bug #8337]
Sun Apr 28 12:38:04 2013 Nobuyoshi Nakada <[email protected]>
* README.EXT: correct method name to be used. [Bug #7982]
* README.EXT.ja: add notes too.
Sun Apr 28 10:35:00 2013 Zachary Scott <[email protected]>
* object.c: With feedback from Steve Klabnik, reverted a change to
#untrusted? and #tainted?. Also adjusted grammar for $SAFE levels
Sun Apr 28 10:10:00 2013 Zachary Scott <[email protected]>
* lib/yaml.rb: Disable setting YAML const twice [ruby-core:54642]
Sun Apr 28 09:50:00 2013 Zachary Scott <[email protected]>
* object.c: Documentation for taint and trust [Bug #8162]
Sun Apr 28 09:40:00 2013 Zachary Scott <[email protected]>
* README.EXT: Copy note from r40505 for rb_sprintf() [Bug #7982]
Sun Apr 28 08:28:00 2013 Zachary Scott <[email protected]>
* ext/curses/curses.c: Update Curses::Window example for nicer output
Patch by Michal Suchanek [Bug #8121] [ruby-core:53520]
Sun Apr 28 08:10:00 2013 Zachary Scott <[email protected]>
* README.EXT: Update note from r40504, by Jeremy Evans [Bug #7982]
Sun Apr 28 08:02:00 2013 Zachary Scott <[email protected]>
* README.EXT: Add note to warn use of %i in Exceptions [Bug #7982]
Sun Apr 28 02:41:05 2013 Tanaka Akira <[email protected]>
* configure.in: Fix a typo. Should check endgrent() instead of
endgrnam().
Sun Apr 28 00:35:45 2013 Tanaka Akira <[email protected]>
* process.c (obj2gid): Don't call endgrent() if not exist.
Bionic (Android's libc) don't have endgrent().
* configure.in: Check endgrnam function.
Sat Apr 27 23:53:00 2013 Charlie Somerville <[email protected]>
* lib/yaml.rb: add security warning to YAML documentation
Sat Apr 27 23:25:00 2013 Zachary Scott <[email protected]>
* lib/yaml.rb: Documentation for YAML module [Bug #8213]
Sat Apr 27 20:19:21 2013 Tanaka Akira <[email protected]>
* thread_pthread.c (ruby_init_stack): Add STACK_GROW_DIR_DETECTION.
This fixes a compilation failure while cross-compiling for Tensilica
Xtensa Processor.
Sat Apr 27 19:32:44 2013 Benoit Daloze <[email protected]>
* thread.c: fix typos and documentation
Sat Apr 27 19:04:55 2013 Tanaka Akira <[email protected]>
* sparc.c: Use __asm__ instead of asm for gcc.
gcc doesn't provide asm keyword if -ansi option is given.
http://gcc.gnu.org/onlinedocs/gcc/Alternate-Keywords.html
Sat Apr 27 17:22:50 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: Redundant test removed.
Sat Apr 27 16:00:10 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb (test_recvmsg_with_msg_peek_creates_fds):
Extracted.
Sat Apr 27 15:50:40 2013 Tanaka Akira <[email protected]>
* internal.h (SIGNED_INTEGER_TYPE_P): New macro.
(SIGNED_INTEGER_MAX): Ditto.
(SIGNED_INTEGER_MIN): Ditto.
(UNSIGNED_INTEGER_MAX): Ditto.
(TIMET_MAX): Use SIGNED_INTEGER_MAX and UNSIGNED_INTEGER_MAX.
(TIMET_MIN): Use SIGNED_INTEGER_MIN.
* thread.c (TIMEVAL_SEC_MAX): Use SIGNED_INTEGER_MAX.
(TIMEVAL_SEC_MIN): Use SIGNED_INTEGER_MIN.
Sat Apr 27 10:52:52 2013 Tanaka Akira <[email protected]>
* thread.c (TIMEVAL_SEC_MAX, TIMEVAL_SEC_MIN): Consider environments,
sizeof(time_t) is smaller than sizeof(tv_sec), such as
OpenBSD 5.2 (amd64).
Fri Apr 26 23:34:59 2013 Kouhei Sutou <[email protected]>
* lib/rexml/text.rb (REXML::Text.normalize): Fix a bug that all
entity filters are ignored. [ruby-dev:47278] [Bug #8302]
Patch by Ippei Obayashi. Thanks!!!
* test/rexml/test_entity.rb (EntityTester#test_entity_filter): Add
a test of the above change.
Fri Apr 26 22:53:55 2013 Kouhei Sutou <[email protected]>
* lib/rexml/element.rb (REXML::Attributes#to_a): Support
namespaced attributes. [ruby-dev:47277] [Bug #8301]
Patch by Ippei Obayashi. Thanks!!!
* test/rexml/test_attributes.rb
(AttributesTester#test_to_a_with_namespaces): Add a test of the
above change.
Fri Apr 26 21:48:29 2013 Kouhei Sutou <[email protected]>
* lib/rss/atom.rb (RSS::Atom::Entry): Fix indent of document comment.
Fri Apr 26 21:21:17 2013 Kouhei Sutou <[email protected]>
* lib/rss/maker.rb (RSS::Maker): Fix indent of document comment.
Fri Apr 26 18:41:04 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: Use a block of enable_config() for
--{enable,disable}-close-fds-by-recvmsg-with-peek configure option
Fri Apr 26 18:08:08 2013 Tanaka Akira <[email protected]>
* dir.c (dir_set_pos): Fix a compilation error when seekdir() is not
exist.
Fri Apr 26 17:41:17 2013 Tanaka Akira <[email protected]>
* thread_pthread.c (ruby_init_stack): Add STACK_GROW_DIR_DETECTION.
This fixes a compilation failure while cross-compiling for ARM.
Fri Apr 26 14:35:00 2013 Zachary Scott <[email protected]>
* lib/rss/atom.rb: Documentation for RSS::Atom based on a patch by
Michael Denomy
* lib/rss/maker.rb: Documentation for RSS::Maker also by @mdenomy
Fri Apr 26 12:41:22 2013 Tanaka Akira <[email protected]>
* ext/curses/extconf.rb: Test linkability of curses_version at first.
* ext/socket/extconf.rb: Test the behavior of fd passing with MSG_PEEK
only if recvmsg(), msg_control member, AF_UNIX and SCM_RIGHTS are
available.
Fri Apr 26 00:07:52 2013 Hiroshi Shirosaki <[email protected]>
* lib/rinda/ring.rb (Rinda::RingServer#initialize): accept array
arguments of address to specify multicast interface.
* lib/rinda/ring.rb (Rinda::RingServer#make_socket): add optional
arguments for multicast interface.
* test/rinda/test_rinda.rb
(TestRingFinger#test_ring_server_ipv4_multicast,
TestRingFinger#test_ring_server_ipv6_multicast): add tests for
above change.
* test/rinda/test_rinda.rb
(TestRingServer#test_make_socket_ipv4_multicast,
TestRingServer#test_make_socket_ipv6_multicast): change bound
interface address because multicast address is not allowed on Linux
or Windows.
[ruby-core:53692] [Bug #8159]
Thu Apr 25 23:45:02 2013 Hiroshi Shirosaki <[email protected]>
* lib/rinda/ring.rb (Rinda::RingServer#initialize): add a socket
to @sockets in make_socket() to close sockets on shutdown even if
make_socket() is called after initialize.
* lib/rinda/ring.rb (Rinda::RingServer#make_socket): ditto.
Thu Apr 25 23:39:42 2013 Hiroshi Shirosaki <[email protected]>
* test/rinda/test_rinda.rb (TupleSpaceProxyTest#test_take_bug_8215):
use KILL on Windows since TERM doen't work and ruby process remains
after test-all on Windows.
Thu Apr 25 23:16:28 2013 Tanaka Akira <[email protected]>
* ext/curses/extconf.rb: Implement
--with-curses-version={function,variable} configure option for
cross-compiling.
Thu Apr 25 18:15:46 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: Don't use WIDE getaddrinfo by default.
Thu Apr 25 17:56:39 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: Remove obsolete options: ---with-ipv6-lib and
--with-ipv6-libdir.
Thu Apr 25 17:43:49 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: Implement
--{enable,disable}-close-fds-by-recvmsg-with-peek configure option
for cross-compiling.
Make --{enable,disable}-wide-getaddrinfo configure option
cross-compiling friendly.
Thu Apr 25 16:11:06 2013 Nobuyoshi Nakada <[email protected]>
* io.c (rb_io_ext_int_to_encs, parse_mode_enc): bom-prefixed name is
not a real encoding name, just a fallback. so the proper conversion
should take place even if if the internal encoding is equal to the
bom-prefixed name, unless actual encoding is equal to the internal
encoding. [ruby-core:54563] [Bug #8323]
* io.c (io_set_encoding_by_bom): reset extenal encoding if no BOM
found. [ruby-core:54569]
Thu Apr 25 14:35:01 2013 NARUSE, Yui <[email protected]>
* ext/openssl/ossl_bn.c (ossl_bn_initialize): allow Fixnum and Bignum.
[ruby-core:53986] [Feature #8217]
Thu Apr 25 14:26:32 2013 NARUSE, Yui <[email protected]>
* lib/uri/common.rb (URI.decode_www_form): follow current URL Standard.
It gets encoding argument to specify the character encoding.
It now allows loose percent encoded strings, but denies ;-separator.
[ruby-core:53475] [Bug #8103]
* lib/uri/common.rb (URI.decode_www_form): follow current URL Standard.
It gets encoding argument to convert before percent encode.
Now UTF-16 strings aren't converted to UTF-8 before percent encode
by default.
Wed Apr 25 14:26:00 2013 Charlie Somerville <[email protected]>
* benchmark/bm_hash_shift.rb: add benchmark for Hash#shift
* hash.c (rb_hash_shift): use st_shift if hash is not being iterated to
delete element without iterating the whole hash.
* hash.c (shift_i): remove function
* include/ruby/st.h (st_shift): add st_shift function
* st.c (st_shift): ditto
[Bug #8312] [ruby-core:54524] Patch by funny-falcon
Thu Apr 25 12:03:38 2013 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb: Extract C programs as toplevel constants.
Thu Apr 25 02:23:28 2013 Nobuyoshi Nakada <[email protected]>
* configure.in (RUBY_RM_RECURSIVE): this hack is needed by only
autoconf 2.69 or earlier on darwin.
Thu Apr 25 01:22:41 2013 Nobuyoshi Nakada <[email protected]>
* lib/tracer.rb (get_line): simply read by File.readlines.
* lib/debug.rb (script_lines): get source lines from SCRIPT_LINES__ or
read from the file.
* lib/debug.rb (display_list): use script_lines instead of recursion.
[Bug #8318]
* lib/debug.rb (line_at): use script_lines same as display_list.
* lib/debug.rb (display_list): Fix debug listing when called from the
same file it has been required. patch by Dario Bertini <berdario AT
gmail.com> [Bug #8318] [fix GH-280]
Wed Apr 24 21:51:13 2013 Tanaka Akira <[email protected]>
* configure.in: Check mblen().
mblen() is optional in uClibc.
* eval_intern.h (CharNext): Don't use mblen() is not available.
Wed Apr 24 15:55:06 2013 KOSAKI Motohiro <[email protected]>
* io.c (rb_fd_fix_cloexec): use rb_update_max_fd().
Wed Apr 24 14:08:00 2013 Zachary Scott <[email protected]>
* numeric.c: Fix wiki link on Float imprecision in overview, patched
by Makoto Kishimoto [Bug #8304] [ruby-dev:47280]
Wed Apr 24 14:03:59 2013 Nobuyoshi Nakada <[email protected]>
* parse.y (parser_yylex): disallow $- without following identifier
character. [ruby-talk:406969]
* parse.y (is_special_global_name): mere $- is not a valid global
variable name.
Wed Apr 24 13:54:00 2013 Zachary Scott <[email protected]>
* string.c: Document String#setbyte return value by @gjmurakami-10gen
[Fixes GH-294]
Wed Apr 24 13:45:00 2013 Zachary Scott <[email protected]>
* class.c: Example of Object#methods by @windwiny [Fixes GH-293]
* ruby.c: Document return values of Kernel #sub, #gsub, and #chop
Wed Apr 24 12:54:00 2013 Zachary Scott <[email protected]>
* ext/socket/lib/socket.rb: Doc typos by @vipulnsward [Fixes GH-292]
Wed Apr 24 12:54:00 2013 Zachary Scott <[email protected]>
* ext/socket/lib/socket.rb: Doc typos by @vipulnsward [Fixes GH-292]
Wed Apr 24 12:27:00 2013 Zachary Scott <[email protected]>
* array.c: Fix documentation for Array#index and #replace aliases
Based on a patch by @phiggins [Fixes GH-282]
Tue Apr 23 21:14:38 2013 NARUSE, Yui <[email protected]>
* string.c (rb_str_inspect): refix r40413, on Ruby 1.9 usual character
escape uses hex/Unicode escapes, so fix to use Unicode escape on
Unicode strings and hex on others. [ruby-core:54458] [Bug #8290]
Tue Apr 23 20:10:02 2013 Tanaka Akira <[email protected]>
* missing/isnan.c (isnan): Don't define if isnan() macro is defined.
This fixes a compilation failure on uClibc based Gentoo system.
Tue Apr 23 17:40:40 2013 Martin Duerst <[email protected]>
* lib/rexml/document.rb, lib/rexml/element.rb,
lib/rexml/formatters/pretty.rb: remove opinionated
language in documentation. [Bug #8309],
reported by Charles Beckmann
Tue Apr 23 14:04:44 2013 Shugo Maeda <[email protected]>
* lib/net/imap.rb (getacl_response): parse the mailbox of an ACL
response correctly. [ruby-core:54365] [Bug #8281]
Tue Apr 23 11:58:46 2013 Nobuyoshi Nakada <[email protected]>
* string.c (rb_str_scrub): fix for UTF-32. strlen() on strings
contain NUL returns wrong result, use sizeof operator instead.
[ruby-dev:45975] [Feature #6752]
Tue Apr 23 10:26:50 2013 Akinori MUSHA <[email protected]>
* test/ruby/test_module.rb
(TestModule#test_const_get_invalid_name)
(test_const_defined_invalid_name): Fix expected values.
Tue Apr 23 09:51:26 2013 Akinori MUSHA <[email protected]>
* string.c (rb_str_inspect): NUL should not be represented as "\0"
when octal digits may follow. [ruby-core:54458] [Bug #8290]
Mon Apr 22 22:54:00 2013 Charlie Somerville <[email protected]>
* insns.def (opt_mod): Use % operator if both operands are positive for
a significant performance improvement. Thanks to @samsaffron.
Mon Apr 22 17:09:37 2013 Nobuyoshi Nakada <[email protected]>
* marshal.c (r_object0): copy all instance variables not only generic
ivars, before calling post proc. [ruby-core:51163] [Bug #7627]
Mon Apr 22 10:25:21 2013 NARUSE, Yui <[email protected]>
* util.c (ruby_hdtoa): revert r29729.
If you want ruby to behave as before on x86, specify to use SSE like
-msse2 -mfpmath=sse for gcc.
Sun Apr 21 23:19:00 2013 Charlie Somerville <[email protected]>
* configure.in: Revert using sigsetjmp by default due to performance
problems on some systems (eg. older Linux)
Sun Apr 21 21:35:00 2013 Charlie Somerville <[email protected]>
* configure.in: Use sigsetjmp by default so jumping out of signal
handlers properly restores the signal mask and SS_ONSTACK flag.
[ruby-core:54175] [Bug #8254]
* configure.in: Manually check for presence of sigsetjmp. It is not a
function on some systems, so AC_CHECK_FUNCS cannot be used.
Sun Apr 21 08:00:55 2013 Tanaka Akira <[email protected]>
* test/csv/test_features.rb, test/logger/test_logger.rb
test/mkmf/test_have_macro.rb, test/net/http/test_http.rb,
test/openssl/test_config.rb, test/psych/test_encoding.rb,
test/psych/test_exception.rb, test/psych/test_psych.rb,
test/psych/test_tainted.rb, test/readline/test_readline.rb,
test/rexml/test_contrib.rb, test/ruby/test_autoload.rb,
test/ruby/test_beginendblock.rb, test/ruby/test_exception.rb,
test/ruby/test_file.rb, test/ruby/test_io.rb,
test/ruby/test_marshal.rb, test/ruby/test_process.rb,
test/ruby/test_require.rb, test/ruby/test_rubyoptions.rb,
test/syslog/test_syslog_logger.rb, test/webrick/test_httpauth.rb,
test/zlib/test_zlib.rb: Use Tempfile.create.
Sun Apr 21 00:15:36 2013 Tanaka Akira <[email protected]>
* lib/tempfile.rb (Tempfile.create): Close when the block exits.
Sat Apr 20 23:38:14 2013 Tanaka Akira <[email protected]>
* lib/webrick/httpauth/htpasswd.rb: Use Tempfile.create to avoid
unintentional unlink() by the finalizer.
lib/webrick/httpauth/htdigest.rb: Ditto.
Sat Apr 20 22:47:48 2013 Tanaka Akira <[email protected]>
* lib/tempfile.rb (Tempfile.create): New method.
The method name is proposed by Shugo Maeda. [ruby-dev:47220]
[ruby-core:41478] [Feature #5707]
Sat Apr 20 14:22:10 2013 Nobuyoshi Nakada <[email protected]>
* marshal.c (w_object): dump no ivars to the original by marshal_dump.
[ruby-core:54334] [Bug #8276]
* marshal.c (r_object0): copy all ivars of marshal_dump data to the
result object instead. [ruby-core:51163] [Bug #7627]
Sat Apr 20 02:33:27 2013 NARUSE, Yui <[email protected]>
* string.c (str_scrub): add ruby method String#scrub which verify and
fix invalid byte sequence. [ruby-dev:45975] [Feature #6752]
* string.c (str_compat_and_valid): check given string is compatible
and valid with given encoding.
* transcode.c (str_transcode0): If invalid: :replace is specified for
String#encode, replace invalid byte sequence even if the destination
encoding equals to the source encoding.
Fri Apr 19 21:55:40 2013 Kouhei Sutou <[email protected]>
* README.EXT.ja (Data_Wrap_Struct): Remove a description about
orphan argument. Oh, I renamed the argument name without
changing description at r36180... Sorry....
Patch by Makoto Kishimoto. Thanks!!! [ruby-dev:47269] [Bug #8292]
* README.EXT.ja (Data_Make_Struct): Add a sample code that describes
how it works.
Patch by Makoto Kishimoto. Thanks!!! [ruby-dev:47269] [Bug #8292]
Fri Apr 19 17:54:57 2013 Shugo Maeda <[email protected]>
* lib/net/imap.rb (body_type_msg): should accept
message/delivery-status with extra data.
[ruby-core:53741] [Bug #8167]
* test/net/imap/test_imap_response_parser.rb: related test.
Fri Apr 19 13:03:14 2013 Nobuyoshi Nakada <[email protected]>
* marshal.c (w_object): do not dump encoding which is dumped with
marshal_dump data. [ruby-core:54334] [Bug #8276]
Fri Apr 19 11:36:53 2013 Nobuyoshi Nakada <[email protected]>
* configure.in (stack_protector): control use of -fstack-protector.
* configure.in (debugflags): let -fstack-protector precede and disable
debugflags, because they can't work together on SmartOS. [Bug #8268]
Fri Apr 19 07:43:52 2013 NARUSE, Yui <[email protected]>
* test/openssl/test_cipher.rb: Correct a typo
by jgls <[email protected]>
https://github.com/ruby/ruby/pull/291 fix GH-291
Thu Apr 18 16:58:51 2013 Nobuyoshi Nakada <[email protected]>
* vm_method.c (rb_mod_public_method): fix visibility on anonymous
module. set visibility of singleton method, not method in base
class. [ruby-core:54404] [Bug #8284]
Thu Apr 18 16:20:51 2013 Nobuyoshi Nakada <[email protected]>
* dir.c (glob_helper): should skip dot directories only for recursion,
but should not if matching to the given pattern. [ruby-core:54387]
[Bug #8283]
Thu Apr 18 16:20:21 2013 Nobuyoshi Nakada <[email protected]>
* pack.c (pack_unpack): increase buffer size to fix buffer overflow,
and fix garbage just after unpacking without missing paddings.
[Bug #8286]
Thu Apr 18 13:35:54 2013 NARUSE, Yui <[email protected]>
* pack.c (pack_unpack): output characters even if the input doesn't
have paddings. [Bug #8286]
Thu Apr 18 08:20:48 2013 NARUSE, Yui <[email protected]>
* common.mk (clean-ext): remove timestamps.
Wed Apr 17 22:07:50 2013 Tanaka Akira <[email protected]>
* ext/socket/rubysocket.h (SOCKLEN_MAX): Expression simplified.
Wed Apr 17 20:09:19 2013 Aman Gupta <[email protected]>
* compile.c (iseq_add_mark_object): Use new rb_iseq_add_mark_object().
* insns.def (setinlinecache): Ditto.
* iseq.c (rb_iseq_add_mark_object): New function to allocate
iseq->mark_ary on demand. [Bug #8142]
* iseq.h (rb_iseq_add_mark_object): Ditto.
* iseq.c (prepare_iseq_build): Avoid allocating mark_ary until needed.
* iseq.c (rb_iseq_build_for_ruby2cext): Ditto.
Wed Apr 17 20:00:18 2013 Tanaka Akira <[email protected]>
* ext/socket/rubysocket.h (SOCKLEN_MAX): Defined.
* ext/socket/raddrinfo.c (ext/socket/raddrinfo.c): Reject too long
Linux abstract socket name.
Wed Apr 17 19:45:27 2013 Aman Gupta <[email protected]>
* iseq.c (iseq_location_setup): re-use existing string when iseq has
the same path and absolute_path. [Bug #8149]
Wed Apr 17 11:38:37 2013 Nobuyoshi Nakada <[email protected]>
* lib/test/unit/assertions.rb (Test::Unit::Assertions#assert):
UNASSIGNED is not a valid message.
Wed Apr 17 10:58:18 2013 Nobuyoshi Nakada <[email protected]>
* thread.c (sleep_timeval): get rid of overflow on Windows where
timeval.tv_sec is not time_t but mere long.
Tue Apr 16 23:07:12 2013 Tanaka Akira <[email protected]>
* ext/socket/unixsocket.c (unix_send_io): Suppress a warning by clang.
(unix_recv_io): Ditto.
Tue Apr 16 12:27:00 2013 Zachary Scott <[email protected]>
* ext/sdbm/init.c: Fix comment indentation, by windwiny [Fixes GH-277]
Tue Apr 16 12:25:00 2013 Zachary Scott <[email protected]>
* ext/socket/option.c: Document synonymous methods, by windwiny [GH-277]
* ext/stringio/stringio.c: ditto
* ext/io/wait/wait.c: ditto
* ext/gdbm/gdbm.c: ditto
* ext/dl/cfunc.c: ditto
* ext/zlib/zlib.c: ditto
* ext/win32ole/win32ole.c: ditto
* ext/dbm/dbm.c: ditto
* ext/json/generator/generator.c: ditto
* ext/date/date_core.c: ditto
Tue Apr 16 11:23:00 2013 Zachary Scott <[email protected]>
* ext/openssl/*: Document synonymous methods, by windwiny [GH-277]
Mon Apr 15 22:21:42 2013 Tanaka Akira <[email protected]>
* ext/fiddle/depend: New file.
Mon Apr 15 22:01:02 2013 Akinori MUSHA <[email protected]>
* misc/ruby-electric.el (ruby-electric-insert): Check
ruby-electric-is-last-command-char-expandable-punct-p here.
* misc/ruby-electric.el (ruby-electric-closing-char): New
interactive function bound to closing characters. Typing one of
those closing characters right after the matching counterpart
cancels the effect of automatic closing. For example, typing
"{" followed by "}" simply makes "{}" instead of "{ } }".
Mon Apr 15 12:54:42 2013 Martin Bosslet <[email protected]>
* ext/openssl/ossl_ssl.c: Correct shutdown behavior w.r.t GC.
* test/openssl/test_ssl.rb: Add tests to verify correct behavior.
[Bug #8240] Patch provided by Shugo Maeda. Thanks!
Mon Apr 15 10:23:39 2013 NARUSE, Yui <[email protected]>
* ext/coverage/depend: fix id.h place as r40283.
* ext/coverage/extconf.rb: add topdir and topsrcdir to VPATH.
Sun Apr 14 19:46:14 2013 Tanaka Akira <[email protected]>
* ext/-test-/debug/depend: New file.
* ext/-test-/exception/depend: Ditto.
* ext/-test-/printf/depend: Ditto.
* ext/-test-/string/depend: Ditto.
* ext/coverage/depend: Ditto.
* ext/io/console/depend: Ditto.
* ext/io/nonblock/depend: Ditto.
* ext/io/wait/depend: Ditto.
* ext/openssl/depend: Ditto.
* ext/pathname/depend: Ditto.
* ext/psych/depend: Ditto.
* ext/zlib/depend: Ditto.
Sun Apr 14 02:46:50 2013 NARUSE, Yui <[email protected]>
* lib/mkmf.rb (MakeMakefile#create_makefile): remove {$(VPATH)} other
than nmake.
* ext/ripper/depend: use VPATH expecting removed by above.
Sat Apr 13 23:06:20 2013 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (timestamp_file): gather timestamp files in one
directory from each extension directories.
Sat Apr 13 21:09:02 2013 NAKAMURA Usaku <[email protected]>
* lib/mkmf.rb (MakeMakefile#create_makefile): output new macro
disthdrdir to specify the path of id.h, parse.h and etc.
* ext/ripper/depend: use above macro.
Sat Apr 13 20:28:08 2013 NARUSE, Yui <[email protected]>
* Merge Onigmo 5.13.4 f22cf2e566712cace60d17f84d63119d7c5764ee.
[bug] fix problem with optimization of \z (Issue #16) [Bug #8210]
Sat Apr 13 18:56:15 2013 NAKAMURA Usaku <[email protected]>
* ext/ripper/depend: parse.h and id.h may be created on topdir.
Sat Apr 13 12:08:16 2013 Marc-Andre Lafortune <[email protected]>
* lib/matrix.rb: Add Vector#cross_product, patch by Luis Ezcurdia
[fix GH-276] [rubyspec:81eec89a124]
Sat Apr 13 10:20:37 2013 Nobuyoshi Nakada <[email protected]>
* struct.c (rb_struct_define_without_accessor, rb_struct_define),
(rb_struct_s_def): hide member names array.
* struct.c (anonymous_struct, new_struct, setup_struct): split
make_struct() for each purpose.
Sat Apr 13 09:34:31 2013 Tanaka Akira <[email protected]>