-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
9480 lines (5216 loc) · 282 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
Wed Jan 17 13:28:26 2001 WATANABE Hirofumi <[email protected]>
* configure.in: remove DEFS definition.
Tue Jan 16 17:00:50 2001 Minero Aoki <[email protected]>
* lib/net/protocol.rb: ignore EOFError for read.
* lib/net/http.rb: user specified header was not used.
Mon Jan 15 16:00:07 2001 Yukihiro Matsumoto <[email protected]>
* pack.c (pack_unpack): should check associated pointer packed by
pack("P"). restriction added.
Sun Jan 14 21:49:28 2001 Koji Arai <[email protected]>
* sprintf.c (rb_f_sprintf): simple typo. binary base should be 2,
not '2'.
* re.c (rb_reg_s_last_match): should explicitly return nth match.
Sun Jan 14 18:21:30 2001 Usaku Nakamura <[email protected]>
* win32/config.status.in: add some field.
* win32/win32.c (isInternalCmd): ignore case for shell's internal
command.
* win32/win32.c (do_spawn): recognize quoted command line.
Sun Jan 14 04:10:27 2001 Minero Aoki <[email protected]>
* lib/net/protocol.rb (adding): too few "yield" in case of arg is
not String/File.
* lib/net/http.rb: add http request object.
Sat Jan 13 19:39:30 2001 WATANABE Hirofumi <[email protected]>
* re.c (rb_reg_desc): separate RE_OPTION_MULTILINE
* re.c (rb_reg_options): add RE_OPTION_{POSIXLINE,RE_OPTION_MULTILINE,
RE_OPTION_EXTENDED}
Thu Jan 11 10:45:04 2001 WATANABE Hirofumi <[email protected]>
* win32/win32.h, win32/config.h.in: move NORETURN from win32.h
to config.h.in.
* win32/config.h.in (inline): renamed from INLINE.
* djgpp/config.hin (INLINE): removed.
Thu Jan 11 06:45:55 2001 Yukihiro Matsumoto <[email protected]>
* object.c (rb_mod_dup): should propagate FL_SINGLETON.
* object.c (inspect_obj): handles the case of no instance variable.
Wed Jan 10 16:15:08 2001 WATANABE Hirofumi <[email protected]>
* ruby.h: NORETURN macro is changed for VC++ 6.0.
* eval.c, intern.h: ditto.
* djgpp/config.hin, win32/win32.h: ditto.
* configure.in: ditto.
Wed Jan 10 13:54:53 2001 WATANABE Hirofumi <[email protected]>
* process.c (proc_setuid): use setresuid() if available.
* process.c (proc_setgid): use setresgid() if available.
* configure.in: ditto.
Wed Jan 10 01:50:45 2001 Yukihiro Matsumoto <[email protected]>
* configure.in (AC_C_INLINE): check inline attribute.
* string.c (rb_str_reverse_bang): forgot to call rb_str_modify().
Tue Jan 9 17:41:40 2001 Yukihiro Matsumoto <[email protected]>
* object.c (rb_obj_taint): check frozen status before modifying
taint status.
* object.c (rb_obj_untaint): ditto.
Tue Jan 9 16:22:14 2001 Yukihiro Matsumoto <[email protected]>
* enum.c (enum_inject): new method.
Tue Jan 9 02:16:42 2001 Yukihiro Matsumoto <[email protected]>
* gc.c (rb_gc_call_finalizer_at_exit): clear klass member of
terminating object.
* eval.c (rb_call): raise exception for terminated object.
Mon Jan 8 21:24:37 2001 Yukihiro Matsumoto <[email protected]>
* bignum.c (bigdivrem): t2 might be too big for signed long; do
not use rb_int2big(), but rb_uint2big().
Mon Jan 8 21:35:10 2001 Guy Decoux <[email protected]>
* file.c (path_check_1): should restore modified path.
Mon Jan 8 03:09:58 2001 Yukihiro Matsumoto <[email protected]>
* error.c (rb_load_fail): new func to report LoadError.
* ruby.c (load_file): use rb_load_fail.
Sat Jan 6 00:17:18 2001 WATANABE Hirofumi <[email protected]>
* pack.c (pack_pack): avoid infinite loop(pack 'm2').
Fri Jan 5 01:02:17 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (ruby_finalize): should enclosed by PUSH_TAG/POP_TAG.
* gc.c (rb_gc_mark): link 2 of NODE_IFUNC should not be explicitly
marked. it may contain non object pointer.
Tue Jan 2 00:20:06 2001 Yukihiro Matsumoto <[email protected]>
* re.c (reg_s_last_match): Regexp::last_match(nth) returns nth
substring of the match (alternative for $& and $<digit>).
Sun Dec 31 01:39:16 2000 Guy Decoux <[email protected]>
* eval.c (rb_mod_define_method): wrong comparison for blocks.
Sat Dec 30 19:28:50 2000 Yukihiro Matsumoto <[email protected]>
* gc.c (id2ref): should handle Symbol too.
* gc.c (id2ref): should print original ptr value
Sat Dec 30 03:14:22 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_iterate): NODE_CFUNC does not protect its data
(nd_tval), so create new node NODE_IFUNC for iteration C
function.
* eval.c (rb_yield_0): use NODE_IFUNC.
* gc.c (rb_gc_mark): support NODE_IFUNC.
Fri Dec 29 11:41:55 2000 Yukihiro Matsumoto <[email protected]>
* gc.c (mem_error): prohibit recursive mem_error().
(ruby-bugs-ja:PR#36)
Fri Dec 29 11:05:41 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_thread_fd_writable): should not switch context if
rb_thread_critical is set.
* eval.c (rb_thread_wait_fd): ditto.
* eval.c (rb_thread_wait_for): ditto.
* eval.c (rb_thread_select): ditto.
* eval.c (rb_thread_join): join during critical section causes
deadlock.
Fri Dec 29 00:38:46 2000 Yukihiro Matsumoto <[email protected]>
* m17n.c: new file - core functions of M17N.
Tue Dec 26 18:46:41 2000 NAKAMURA Hiroshi <[email protected]>
* lib/debug.rb: Avoid thread deadlock in debugging stopped thread.
* lib/debug.rb: Uncleared 'finish' state.
Tue Dec 26 16:53:55 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_yield_0): remove dvar node by rb_gc_force_recycle()
more eagerly.
* eval.c (rb_f_binding): recycling should be stopped for outer
scope too.
* eval.c (proc_new): ditto.
Tue Dec 26 15:45:35 2000 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_inspect): should treat multibyte chracters
properly.
Mon Dec 25 17:49:08 2000 K.Kosako <[email protected]>
* string.c (rb_str_replace_m): unexpected string share happens if
replace is done for associated (STR_NO_ORIG) string.
Tue Dec 26 15:01:53 2000 Yukihiro Matsumoto <[email protected]>
* io.c (rb_f_p): should not call rb_io_flush() if rb_defout is not
a IO (T_FILE).
Mon Dec 25 15:52:39 2000 Yukihiro Matsumoto <[email protected]>
* stable version 1.6.2 released.
Mon Dec 25 05:11:04 2000 Wakou Aoyama <[email protected]>
* lib/cgi.rb: version 2.1.2 (some bug fixes).
* lib/cgi.rb: Regexp::last_match[1] --> $1
* lib/net/telnet.rb: ditto.
Mon Dec 25 04:43:02 2000 Minero Aoki <[email protected]>
* lib/net/http.rb: does not send HEAD on closing socket.
Mon Dec 25 00:44:48 2000 Yukihiro Matsumoto <[email protected]>
* hash.c (rb_any_cmp): should use rb_str_cmp() if TYPE == T_STRING
and CLASS_OF == rb_cString.
* string.c (rb_str_new4): should copy class of original too.
Mon Dec 25 00:04:54 2000 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_thread_schedule): initial value of `max' changed to -1.
Mon Dec 25 00:16:14 2000 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_replace_m): copy-on-write replace.
* parse.y (yylex): should handle => after identifier as well as ==
and =~.
Sat Dec 23 23:55:57 2000 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_cstr2inum): Integer("") should not return 0.
Sat Dec 23 11:55:57 2000 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_and): Array#& should preverve original order.
Sat Dec 23 03:44:16 2000 Minero Aoki <[email protected]>
* lib/net/protocol.rb: set @closed false in Socket#reopen.
* lib/net/pop.rb: add POP3.foreach, delete_all.
* lib/net/pop.rb: add POP3#delete_all.
* lib/net/http.rb: add HTTP.version_1_1, version_1_2
* lib/net/http.rb: refactoring.
Fri Dec 22 23:11:12 2000 Ueno Katsuhiro <[email protected]>
* eval.c (rb_feature_p): ext might be null.
Fri Dec 22 17:04:12 2000 Nobuyoshi Nakada <[email protected]>
* win32/win32.c (myselect): avoid busy loop by adjusting fd_count.
Fri Dec 22 15:07:55 2000 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_cstr2inum): prefix like '0x' had removed too much.
Thu Dec 21 13:01:46 2000 Tanaka Akira <[email protected]>
* lib/net/ftp.rb (makeport): don't use TCPsocket.getaddress.
Wed Dec 20 12:00:15 2000 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_big_lshift): should cast up to BDIGIT_DBL.
* parse.y (yylex): disallow trailing '_' for numeric litrals.
* bignum.c (rb_cstr2inum): allow `_' within converting string.
* eval.c (specific_eval): should take no argument if block is
supplied.
Tue Dec 19 13:44:50 2000 K.Kosako <[email protected]>
* io.c (rb_f_p): should flush rb_defout, not stdout.
Tue Dec 19 00:57:10 2000 Yukihiro Matsumoto <[email protected]>
* time.c (time_minus): usec might overflow. (ruby-bugs-ja:PR#35)
* eval.c (rb_obj_extend): Object#extend should take at least one
argument.
* parse.y (mrhs_basic): should check value_expr($3), not $1.
Mon Dec 18 23:18:39 2000 WATANABE Hirofumi <[email protected]>
* util.c (mblen, __crt0_glob_function): add for multibyte
on DJGPP 2.03.
Mon Dec 18 18:10:30 2000 Yukihiro Matsumoto <[email protected]>
* time.c (time_plus): usec might underflow (ruby-bugs-ja:#PR33).
Mon Dec 18 08:11:20 2000 Yukihiro Matsumoto <[email protected]>
* hash.c (rb_hash_set_default): should call rb_hash_modify().
Sat Dec 16 02:58:26 2000 Minero Aoki <[email protected]>
* eval.c (rb_eval): should clear ruby_errinfo on retry.
* eval.c (rb_rescue2): ditto.
Thu Dec 14 13:06:18 2000 Nobuyoshi Nakada <[email protected]>
* class.c (rb_include_module): prohibit fronzen class/module.
* eval.c (rb_frozen_class_p): make external.
* intern.h (rb_frozen_class_p): prototyped.
* intern.h (rb_undef): prototyped not but rb_undef_method()
which is also in ruby.h.
Thu Dec 14 09:20:26 2000 Wakou Aoyama <[email protected]>
* lib/cgi.rb: support -T1 on ruby 1.6.2
* lib/cgi.rb: $1 --> Regexp::last_match[1]
* lib/net/telnet.rb: ditto.
Wed Dec 13 23:27:06 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): handles case statement without expr, which
looks for any TRUE (non nil, non false) when expression.
* parse.y (primary): case expression should not be compstmt, but
mere expr.
* parse.y (primary): case without following expression is now
separated rule.
Wed Dec 13 12:41:27 2000 WATANABE Hirofumi <[email protected]>
* ruby.c (proc_options): accept "--^M" for DOS line endings.
Tue Dec 12 15:45:42 2000 Yukihiro Matsumoto <[email protected]>
* parse.y (newline_node): cancel newline unification.
Mon Dec 11 23:01:57 2000 Yukihiro Matsumoto <[email protected]>
* parse.y (yylex): supports cases `?' precedes EOF and newline.
Mon Dec 11 12:11:25 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (call_end_proc): some frame members were left
uninitialized.
Mon Dec 11 01:14:58 2000 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_fptr_finalize): do not fclose stdin, stdout and
stderr at exit.
Sat Dec 9 17:34:48 2000 Tachino Nobuhiro <[email protected]>
* time.c (time_cmp): should check with kind_of?, not instance_of?
* time.c (time_eql): ditto.
* time.c (time_minus): ditto.
Fri Dec 8 17:23:25 2000 Tachino Nobuhiro <[email protected]>
* sprintf.c (rb_f_sprintf): proper string precision treat.
Fri Dec 8 10:44:05 2000 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_mod_remove_cvar): Module#remove_class_variable
added.
Thu Dec 7 17:35:51 2000 Shugo Maeda <[email protected]>
* eval.c (stack_length): don't use __builtin_frame_address() on alpha.
Wed Dec 6 18:07:13 2000 WATANABE Hirofumi <[email protected]>
* djgpp/config.sed, win32/Makefile.sub: typo.
* eval.c (rb_mod_define_method): avoid VC4.0 warnings.
Wed Dec 6 13:38:08 2000 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_and): tuning, make hash from shorter operand.
Wed Dec 6 01:28:50 2000 SHIROYAMA Takayuki <[email protected]>
* gc.c (rb_gc): __builtin_frame_address() should not be used on
MacOS X.
* gc.c (Init_stack): ditto.
Mon Dec 4 13:44:01 2000 WATANABE Hirofumi <[email protected]>
* lib/jcode.rb: consider multibyte. not /n.
Mon Dec 4 09:49:36 2000 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_inspect): output whole string contents. no more `...'
* string.c (rb_str_dump): should propagate taintness.
* hash.c (env_inspect): hash like human readable output.
* variable.c (rb_ivar_get): prohibiting instance variable access
is too much restriction.
* class.c (method_list): retrieving information should not be
restricted where $SAFE=4.
* class.c (rb_obj_singleton_methods): ditto.
* eval.c (rb_thread_priority): ditto.
* eval.c (rb_thread_local_aref): ditto.
* variable.c (rb_obj_instance_variables): ditto.
* variable.c (rb_mod_const_at): ditto.
* variable.c (rb_mod_class_variables): ditto.
* eval.c (rb_exec_end_proc): end_proc should be preserved.
Sat Dec 2 22:32:43 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_yield_0): || should accept exactly zero argument.
* parse.y (stmt): multiple right hand side for single assignment
(e.g. a = 1,2) is allowed.
Wed Nov 29 07:55:29 2000 Yukihiro Matsumoto <[email protected]>
* marshal.c (w_long): dumping long should be smaller than 32bit max.
* marshal.c (w_long): shorter long format for small integers(-123..122).
* marshal.c (r_long): ditto.
Tue Nov 28 18:10:51 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_mod_define_method): quick hack to implement
on-the-fly method definition. experimental.
Mon Nov 27 17:00:35 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): should not redefine builtin classes/modules
from within wrapped load.
Mon Nov 27 08:57:33 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (call_end_proc): should be isolated from outer block.
Mon Nov 27 00:10:08 2000 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_ctl): call ioctl/fcntl for fptr->f2 too.
* process.c (rb_f_fork): call rb_thread_atfork() after creating
child process.
* eval.c (rb_thread_atfork): kill all other threads immediately,
then turn the current thread into the main thread.
Sat Nov 25 23:12:22 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (ruby_run): move calling point of rb_trap_exit after
cleaning up threads.
* eval.c (ruby_finalize): new function to call EXIT trap, END
procs and GC finalizers.
* eval.c (rb_exec_end_proc): prevent recursion.
* gc.c (rb_gc_call_finalizer_at_exit): ditto.
* signal.c (rb_trap_exit): ditto. made static.
* process.c (rb_f_fork): should swallow all exceptions from block
execution.
* process.c (fork_rescue): should call ruby_finalize().
* parse.y (yycompile): rb_gc() removed. I don't remember why I put
this here. test code?
Fri Nov 24 22:03:48 2000 Yukihiro Matsumoto <[email protected]>
* range.c (EXCL): exclusive infomation is now stored in an
instance variable. this enables proper marshal dump.
* process.c (proc_waitpid): should clear rb_last_status ($?) if
no pid was given by waitpid(2).
Thu Nov 23 01:35:38 2000 Yukihiro Matsumoto <[email protected]>
* process.c (proc_waitpid2): returns nil if no pid found.
Wed Nov 22 23:45:15 2000 Yukihiro Matsumoto <[email protected]>
* range.c (range_eq): new method. Compares start and end of range
respectively.
Wed Nov 22 11:01:32 2000 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_mod_class_variables): should honor singleton
class variable rule defined yesterday.
Tue Nov 21 23:24:14 2000 Mitsuteru S Nakao <[email protected]>
* numeric.c (flodivmod): missing second operand (typo).
Tue Nov 21 03:39:41 2000 Yukihiro Matsumoto <[email protected]>
* marshal.c (marshal_load): marshal format compatibility check
revised. greater minor revision is UPWARD compatibile;
downward compatibility is not assured.
* eval.c (is_defined): clarify class variable behavior for
singleton classes. class variables within singleton class
should be treated like within singleton method.
Mon Nov 20 13:45:21 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): set ruby_sourceline before evaluating
exceptions.
* gc.c (gc_sweep): defer finalization in GC during compilation or
interrupt prohibit section.
* gc.c (gc_sweep): mark all nodes before sweeping if GC happened
during compilation.
* eval.c (rb_eval): should treat class variables specially in a
method defined in the singleton class.
Mon Nov 20 10:20:21 2000 WATANABE Hirofumi <[email protected]>
* dir.c, win32/win32.c, ruby.h: add rb_iglob().
Mon Nov 20 00:18:16 2000 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_subseq): should return nil for outbound start
index.
* marshal.c (marshal_load): show format versions explicitly when
format version mismatch happens.
Sun Nov 19 06:13:24 2000 Kazuhiro NISHIYAMA <[email protected]>
* marshal.c: use long for string/array length.
* pack.c (swaps): use bit-or(|) instead of plus(+).
* pack.c (swapl): ditto.
Sat Nov 18 15:18:16 2000 Kazuhiro NISHIYAMA <[email protected]>
* array.c (rb_ary_replace): array size should be in long.
* array.c (rb_ary_concat): ditto.
* array.c (rb_ary_hash): ditto.
Sat Nov 18 14:07:20 2000 Minero Aoki <[email protected]>
* lib/net/http.rb: Socket#readline() reads until "\n", not "\r\n"
Fri Nov 17 14:55:18 2000 WATANABE Hirofumi <[email protected]>
* string.c (rb_str_succ): output should be NUL terminated.
Fri Nov 17 02:54:15 2000 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_close): need not to flush before closing.
* eval.c (rb_thread_join): should preserve last thread status when
THREAD_TO_KILL.
* eval.c (rb_thread_stop): ditto.
* io.c (io_fflush): wrap fflush by TRAP_BEG, TRAP_END.
* eval.c (rb_eval): method defined within singleton class
definition should behave like singleton method about class
variables.
* eval.c (is_defined): ditto.
Thu Nov 16 23:06:07 2000 Minero Aoki <[email protected]>
* lib/net/http.rb: can call {old,new}_implementation any times.
* lib/net/http.rb: HTTP#connecting, receive ->
common_oper, connecting.
* lib/net/http.rb: output warning if u_header includes
duplicated header.
* lib/net/http.rb: not check Connection:/Proxy-Connection;
always read until eof.
* lib/net/protocol.rb: detects and catches "break" from block.
Thu Nov 16 16:32:45 2000 Masahiro Tanaka <[email protected]>
* bignum.c (bigdivrem): should have incremented ny first.
Thu Nov 16 14:58:00 2000 Nobuyoshi Nakada <[email protected]>
* ext/socket/socket.c (sock_new): duplicates file descriptor
with myfddup() on mswin32/mingw32.
* win32/win32.h: uses system original fdopen().
* win32/win32.c (myfddup): newly added instead of myfdopen().
* win32/win32.c (mybind, myconnect, mygetsockname, mygetsockopt,
mylisten, mysetsockopt): now accept file descriptor only, not
SOCKET.
* win32/win32.c (myaccept, mysocket): return file descriptor,
instead of SOCKET.
Thu Nov 16 10:23:24 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (massign): too strict check for nameless rest argument.
* eval.c (method_arity): mere * should return -1.
* eval.c (intersect_fds): should check all FDs in the fd_set.
Wed Nov 15 19:33:20 2000 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_attr): should clear method cache before calling hook.
* eval.c (rb_eval): ditto.
* eval.c (rb_mod_modfunc): ditto.
Mon Nov 13 22:44:52 2000 Yukihiro Matsumoto <[email protected]>
* error.c (rb_bug): print version to stderr.
Mon Nov 13 19:02:08 2000 WATANABE Hirofumi <[email protected]>
* win32/win32.c, io.c, process.c: the exit status of program must be
multiplied 256 on mswin32 and msdosdjgpp(system(), ``).
Sat Nov 11 22:57:38 2000 Yukihiro Matsumoto <[email protected]>
* parse.y (arg): uniformed treatment of -a**b, where a is a
number literal; hacky but behavior appears more consistent.
* parse.y (newline_node): reduce newline node (one per line).
* random.c (rb_f_srand): should be prohibited in safe level
greater than 4.
Sat Nov 11 22:37:36 2000 Nobuyoshi Nakada <[email protected]>
* rubysig.h: do not use rb_trap_immediate on win32.
* rubysig.h: new macros, ATOMIC_TEST, ATOMIC_SET, ATOMIC_INC,
ATOMIC_DEC, RUBY_CRITICAL and new definition of TRAP_BEG,
TRAP_END.
* gc.c (ruby_xmalloc): should wrap malloc() by RUBY_CRITICAL.
* signal.c (sighandle): better win32 sig handling.
* win32/win32.c (flock): better implementation.
* win32/win32.c (myselect): ditto.
* win32/win32.c (myaccept): ditto.
* win32/win32.c (waitpid): ditto.
* win32/win32.c (myrename): ditto.
* win32/win32.c (wait_events): support function for win32 signal
handling.
Sat Nov 11 08:34:18 2000 Minero Aoki <[email protected]>
* lib/net/protocol.rb, smtp.rb, pop.rb, http.rb: 1.1.31.
* lib/net/http.rb: initializes header in HTTP, not HTTPCommand.
* lib/net/protocol.rb, http.rb: rewrites proxy code.
Fri Nov 10 16:15:53 2000 Yukihiro Matsumoto <[email protected]>
* numeric.c (rb_num2long): use to_int, not to_i.
* error.c: T_SYMBOL was misplaced by T_UNDEF.
* parse.y (yylex): eval("^") caused infinite loop.
Thu Nov 9 14:22:13 2000 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_taint_check): should check IO taintness; no
operation for untainted IO should be allowed in the sandbox.
* rubyio.h (GetOpenFile): check IO taintness inside using
rb_io_taint_check().
Wed Nov 8 03:08:53 2000 Yukihiro Matsumoto <[email protected]>
* io.c (io_fflush): ensure fflush(3) would not block by calling
rb_thread_fd_writable().
Tue Nov 7 20:29:56 2000 Minero Aoki <[email protected]>
* lib/net/protocol.rb, smtp.rb, pop.rb, http.rb: 1.1.30.
* lib/net/protocol.rb, smtp.rb: Command#critical_ok -> error_ok
* lib/net/http.rb: reads header when also "100 Continue".
Tue Nov 7 04:32:19 2000 Yukihiro Matsumoto <[email protected]>
* bignum.c (bigdivrem): use bit shift to make y's MSB set.
Mon Nov 6 1:22:49 2000 Yukihiro Matsumoto <[email protected]>
* error.c (warn_print): do not use err_append(), to ensure output
to stderr.
* error.c (rb_warn): use warn_print() instead of err_print().
* error.c (rb_warning): ditto.
* error.c (rb_bug): ditto.
* eval.c (rb_load): re-raise exceptions during load.
* time.c (make_time_t): remove useless adjust
Thu Nov 2 18:01:16 2000 Yukihiro Matsumoto <[email protected]>
* random.c (rb_f_rand): half-baked float support fixed. This fix
was originally proposed by K.Kosako <[email protected]>.
Tue Oct 31 17:27:17 2000 Yukihiro Matsumoto <[email protected]>
* bignum.c: change digit size to `long|int' if long long is
available.
* marshal.c (w_object): support `long|int' digits.
* marshal.c (r_object): ditto.
Sat Oct 28 23:54:22 2000 Yukihiro Matsumoto <[email protected]>
* parse.y (yylex): allow =end at the end of file (without a
newline at the end).
Fri Oct 27 10:00:27 2000 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_cstr2inum): should ignore trailing white spaces.
* bignum.c (rb_str2inum): string may not have sentinel NUL.
Fri Oct 27 02:37:22 2000 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_cstr2inum): wrongly assigned base to c before
badcheck check.
Thu Oct 26 02:42:50 2000 Minero Aoki <[email protected]>
* lib/net/protocol.rb: Command#critical_ok
* lib/net/smtp.rb: clear critical flag before go to SMTP
Wed Oct 25 12:30:19 2000 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_concat): replacing array might be the receiver
itself. do not call rb_ary_push_m.
* array.c (rb_ary_replace): replacing array might be the receiver
itself. use memmove.
Fri Oct 20 07:56:23 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): ARGSPUSH should not modify args array.
Thu Oct 19 14:58:17 2000 WATANABE Tetsuya <[email protected]>
* pack.c (NUM2U32): should use NUM2ULONG().
Tue Oct 17 17:30:34 2000 WATANABE Hirofumi <[email protected]>
* eval.c (error_print): ruby_sourcefile may be NULL.
Tue Oct 17 16:36:28 2000 Wes Nakamura <[email protected]>
* pack.c (NATINT_U32): wrong use of sizeof.
Tue Oct 17 12:48:20 2000 Katsuyuki Komatsu <[email protected]>
* eval.c (rb_abort): nil check against ruby_errinfo.
* eval.c (rb_thread_schedule): use FOREACH_THREAD_FROM instead of
FOREACH_THREAD, since curr_thread may be removed from thread ring.
* eval.c (THREAD_ALLOC): errinfo should be Qnil.
* eval.c (rb_callcc): th->prev,th->next are now already
initialized in THREAD_ALLOC.
Mon Oct 16 15:37:33 2000 Kazuhiro NISHIYAMA <[email protected]>
* eval.c (rb_thread_inspect): tag size was shorter than required.
* object.c (rb_obj_inspect): ditto.
Mon Oct 16 14:25:18 2000 Shugo Maeda <[email protected]>
* object.c (sym_inspect): used `name' before initialization.
Mon Oct 16 14:06:00 2000 Yukihiro Matsumoto <[email protected]>
* pack.c (pack_pack): use NATINT_U32 for 'l', 'L', and 'N'.
* pack.c (I32,U32): 32 bit sized integer.
* pack.c (OFF16,OFF32B): big endian offset for network byteorder.
Mon Oct 16 06:39:32 2000 Minero Aoki <[email protected]>
* lib/net/http.rb: hex-alpha is not [a-h] but [a-f].
Mon Oct 16 01:02:02 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_thread_start_0): should not abort on exception if
$SAFE >= 4.
* parse.y (sym): symbols for class variable names.
Sun Oct 15 01:49:18 2000 Yukihiro Matsumoto <[email protected]>
* file.c (rb_file_flock): should accept interrupt.
* process.c (rb_waitpid): ditto.
* process.c (rb_waitpid): ditto.
* process.c (proc_wait): ditto.
* process.c (proc_waitpid2): wrong recursion.
Sat Oct 14 03:32:13 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_thread_alloc): should not link a new thread in the
live thread ring before initialization.
Fri Oct 13 17:08:09 2000 Shugo Maeda <[email protected]>
* lib/net/imap.rb: new file.
Thu Oct 12 18:56:28 2000 Minero Aoki <[email protected]>
* lib/net/pop.rb: POP3#reset
* lib/net/http.rb: a code for "Switch Protocol" was wrongly 100.
Thu Oct 12 01:23:38 2000 Wakou Aoyama <[email protected]>
* lib/cgi.rb: bug fix: CGI::html(): PRETTY option didn't work.
Thu Oct 12 00:03:02 2000 Yukihiro Matsumoto <[email protected]>
* object.c (sym_inspect): should adjust string length.
* struct.c (rb_struct_to_s): ditto.
* struct.c (rb_struct_inspect): ditto.
Wed Oct 11 22:15:47 2000 Katsuyuki Komatsu <[email protected]>
* eval.c (rb_thread_inspect): should adjust string length.
* object.c (rb_any_to_s): ditto.
* object.c (rb_obj_inspect): ditto.
Wed Oct 11 18:13:50 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_thread_start_0): should check insecure exit.
Wed Oct 11 14:29:51 2000 Minero Aoki <[email protected]>
* lib/net/protocol.rb: 2nd arg for ProtocolError#initialize is
optional.
* lib/net/http.rb: code refining.
Wed Oct 11 11:13:03 2000 Yukihiro Matsumoto <[email protected]>
* parse.y (primary): setter method (e.g. foo=) should always be
public.
* eval.c (rb_thread_raise): should not raise SecurityError if
exception raised by the interpreter.
* eval.c (rb_thread_cleanup): skip all THREAD_KILLED threads
before FOREACH_THREAD.
Tue Oct 10 16:11:54 2000 WATANABE Hirofumi <[email protected]>
* dln.c (dln_load): remove unused code for cygwin.
Tue Oct 10 09:49:23 2000 Yukihiro Matsumoto <[email protected]>
* file.c (Init_File): FileTest.size should return 0 (not nil) for
empty files.
Sun Oct 8 13:20:26 2000 Guy Decoux <[email protected]>
* eval.c (POP_SCOPE): not just set SCOPE_DONT_RECYCLE, but do
scope_dup().
Sat Oct 7 15:10:50 2000 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_reverse_bang): unnecessary ALLOCA_N() was
removed.
Fri Oct 6 14:50:24 2000 WATANABE Hirofumi <[email protected]>
* ext/extmk.rb.in, lib/mkmf.rb: remove "DESTDIR =".
* Makefile.in, win32/Makefile.sub, ruby.1: renamed -X to -C.
Fri Oct 6 12:50:52 2000 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_plus): use to_ary(), not Check_Type().
* array.c (rb_ary_concat): ditto.
* gc.c (rb_gc): use __builtin_frame_address() for gcc.
* eval.c (stack_length): ditto.
* parse.y (assign_in_cond): stop warning till some better warning
condition will be found.
Thu Oct 5 18:02:39 2000 Yukihiro Matsumoto <[email protected]>
* object.c (rb_obj_dup): should have propagated taint flag.
(ruby-bugs:#PR64,65)
Wed Oct 4 00:26:11 2000 Yukihiro Matsumoto <[email protected]>
* eval.c (proc_arity): proc{|a|}'s arity should be -1.
Mon Oct 2 05:28:58 2000 akira yamada <[email protected]>
* string.c (trnext): minus at the end of pattern.
Sun Oct 1 00:43:34 2000 WATANABE Hirofumi <[email protected]>
* configure.in: exp-name was wrong on cygwin and mingw32.
Thu Sep 28 14:57:09 2000 Yukihiro Matsumoto <[email protected]>
* regex.c (re_compile_pattern): should try must_string calculation
every time.
Tue Sep 19 23:47:44 2000 SHIROYAMA Takayuki <[email protected]>
* configure.in, config.guess, config.sub: MacOS X support.
Wed Sep 27 18:40:05 2000 Yukihiro Matsumoto <[email protected]>
* stable version 1.6.1 released.
Wed Sep 27 16:13:05 2000 WATANABE Hirofumi <[email protected]>
* mkconfig.rb: variables should be expanded only if /\$\{?\w+\}?/.
Tue Sep 26 18:09:51 2000 WATANABE Hirofumi <[email protected]>