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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
|
Mon Mar 7 13:28:30 2016 Nobuyoshi Nakada <[email protected]>
* internal.h: move function declarations for class internals from
include/ruby/intern.h.
Mon Mar 7 10:58:07 2016 Nobuyoshi Nakada <[email protected]>
* ext/win32ole/win32ole_event.c (rescue_callback): use
rb_write_error_str instead of rb_write_error, to respect
the encoding and prevent the message from GC.
* internal.h (rb_write_error_str): export.
Mon Mar 7 01:38:41 2016 Rei Odaira <[email protected]>
* test/ruby/test_process.rb (test_execopts_gid): Skip a test
that is known to fail on AIX. AIX allows setgid to
a supplementary group, but Ruby does not allow the "-e"
option when setgid'ed, so the test does not work as intended.
Sun Mar 6 22:43:41 2016 Nobuyoshi Nakada <[email protected]>
* io.c (rb_obj_display): [DOC] fix output of Array, as Array#to_s
is same as Array#inspect since 1.9.
Sat Mar 5 09:50:58 2016 Rei Odaira <[email protected]>
* test/socket/test_addrinfo.rb (test_ipv6_address_predicates):
IN6_IS_ADDR_V4COMPAT and IN6_IS_ADDR_V4MAPPED are broken
on AIX, so skip related tests.
Sat Mar 5 09:17:54 2016 Rei Odaira <[email protected]>
* test/rinda/test_rinda.rb (test_make_socket_ipv4_multicast):
The fifth argument to getsockopt(2) should be modified to
indicate the actual size of the value on return,
but not in AIX. This is a know bug. Skip related tests.
* test/rinda/test_rinda.rb (test_ring_server_ipv4_multicast):
ditto.
* test/rinda/test_rinda.rb (test_make_socket_unicast): ditto.
* test/socket/test_basicsocket.rb (test_getsockopt): ditto.
* test/socket/test_sockopt.rb (test_bool): ditto.
Sat Mar 5 07:36:27 2016 Rei Odaira <[email protected]>
* test/-ext-/float/test_nextafter.rb: In AIX,
nextafter(+0.0,-0.0)=+0.0, and nextafter(-0.0,+0.0)=-0.0,
but they should return -0.0 and +0.0, respectively. This is
a known bug in nextafter(3) on AIX, so skip related tests.
Sat Mar 5 07:14:10 2016 Rei Odaira <[email protected]>
* test/zlib/test_zlib.rb (test_adler32_combine, test_crc32_combine):
Skip two tests on AIX because zconf.h in zlib does not correctly
recognize _LARGE_FILES in AIX. The problem was already reported
to zlib, and skip these tests until it is fixed.
Sat Mar 5 03:07:40 2016 Rei Odaira <[email protected]>
* thread_pthread.c (getstack): __pi_stacksize returned by
pthread_getthrds_np() is wrong on AIX. Use
__pi_stackend - __pi_stackaddr instead.
Fri Mar 4 19:19:42 2016 Koichi Sasada <[email protected]>
* gc.c: use 2 bits with unsigned int for rb_objspace::flags::mode
because it always returns 0 to 2 (non-negative value).
Fri Mar 4 18:42:08 2016 Koichi Sasada <[email protected]>
* gc.c: rename "enum gc_stat" to "enum gc_mode"
because there is a same name (no related) function gc_stat().
Also gc_stat_* are renamed to gc_mode_*,
gc_stat_transition() to gc_mode_transition(),
rb_objspace::flags::stat is renamed to rb_objspace::flags::mode.
Change rb_objspace::flags::mode from 2 bits to 3 bits because VC++
returns negative enum value with 2 bits.
* gc.c (gc_mode): add a macro to access rb_objspace::flags::mode
with verification code (verification is enabled only on
RGENGC_CHECK_MODE > 0).
* gc.c (gc_mode_set): same macro for setter.
Fri Mar 4 09:28:18 2016 SHIBATA Hiroshi <[email protected]>
* lib/rubygems.rb, lib/rubygems/*, test/rubygems/*: Update rubygems-2.6.1.
Please see entries of 2.6.0 and 2.6.1 on
https://github.com/rubygems/rubygems/blob/master/History.txt
[fix GH-1270] Patch by @segiddins
Thu Mar 3 14:09:00 2016 Nobuyoshi Nakada <[email protected]>
* lib/ostruct.rb (modifiable?, new_ostruct_member!, table!):
rename methods for internal use with suffixes and make private,
[ruby-core:71069] [Bug #11587]
Wed Mar 2 16:28:48 2016 Nobuyoshi Nakada <[email protected]>
* vm_eval.c (method_missing): call by found method entry and get
rid of searching the same method entry twice.
* vm_eval.c (vm_call0_body): calling method_missing method is
method_missing().
Wed Mar 2 15:13:33 2016 herwinw <[email protected]>
* lib/xmlrpc.rb: Removed broken parser named XMLScanStreamParser.
It's not works with current Ruby version.
[fix GH-1271][ruby-core:59588][Bug #9369]
* lib/xmlrpc/config.rb: ditto.
* lib/xmlrpc/parser.rb: ditto.
Wed Mar 2 15:08:33 2016 herwinw <[email protected]>
* lib/xmlrpc.rb: Removed broken parser named XMLTreeParser.
Required gem of its parser didn't compile on newer Ruby versions.
[fix GH-1271][ruby-core:59590][Bug #9370]
* lib/xmlrpc/config.rb: ditto.
* lib/xmlrpc/parser.rb: ditto.
Tue Mar 1 11:25:48 2016 Nobuyoshi Nakada <[email protected]>
* lib/fileutils.rb: use keyword arguments instead of option
hashes.
Mon Feb 29 16:50:20 2016 hanachin <[email protected]>
* array.c (rb_ary_push_m): [DOC] Remove trailing comma from
Array#push example, as other Array examples doesn't put trailing
comma. [Fix GH-1279]
Mon Feb 29 16:31:01 2016 Nobuyoshi Nakada <[email protected]>
* common.mk, tool/mkconfig.rb: set cross_compiling option from
Makefile, but not from rbconfig.rb, which is just going to be
created by this command.
Sun Feb 28 23:13:49 2016 C.J. Collier <[email protected]>
* configure.in: Add summary to end of configure output.
[Fix GH-1275]
Sun Feb 28 20:23:36 2016 Masatoshi SEKI <[email protected]>
* lib/drb/drb.rb (error_print): Add verbose failure messages and
avoid infamous DRb::DRbConnError. [Feature #12101]
Sun Feb 28 13:40:46 2016 Nobuyoshi Nakada <[email protected]>
* error.c (nometh_err_initialize): add private_call? parameter.
* error.c (nometh_err_private_call_p): add private_call? method,
to tell if the exception raised in private form FCALL or VCALL.
[Feature #12043]
* vm_eval.c (make_no_method_exception): append private_call?
argument.
* vm_insnhelper.c (ci_missing_reason): copy FCALL flag.
Sun Feb 28 10:19:47 2016 Ryan T. Hosford <[email protected]>
* array.c (rb_ary_and): clarify that set intersection returns the
unique elements common to both arrays.
* array.c (rb_ary_or): clarify that union preserves the order from
the given arrays.
Sat Feb 27 17:05:29 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb, casefold.h: Reducing size of TitleCase
table by eliminating duplicates.
(with Kimihito Matsui)
Fri Feb 26 14:40:48 2016 Nobuyoshi Nakada <[email protected]>
* numeric.c (num_step_scan_args): comparison String with Numeric
should raise TypeError. it is an invalid type, but not a
mismatch the number of arguments. [ruby-core:62430] [Bug #9810]
Fri Feb 26 14:39:39 2016 Nobuyoshi Nakada <[email protected]>
* doc/extension.rdoc, doc/extension.ja.rdoc: add editor local
variables, with commenting out by :enddoc: directives which are
just ignored unless code object mode. [Bug #12111]
Fri Feb 26 12:25:56 2016 SHIBATA Hiroshi <[email protected]>
* doc/extension.ja.rdoc: removed rendering error caused by editor specific
configuration on http://docs.ruby-lang.org/en/trunk/extension_rdoc.html .
[Bug #12111][ruby-core:73990]
Fri Feb 26 11:21:41 2016 herwinw <[email protected]>
* lib/xmlrpc.rb: Removed references to NQXML. It's obsoleted parser.
[fix GH-1245][ruby-core:59593][Feature #9371]
* lib/xmlrpc/config.rb: ditto.
* lib/xmlrpc/parser.rb: ditto.
Fri Feb 26 11:10:19 2016 Rick Salevsky <[email protected]>
* lib/tmpdir.rb: Unify to coding-style for method definition.
[fix GH-1252]
Fri Feb 26 11:02:04 2016 SHIBATA Hiroshi <[email protected]>
* README.md: update markdown syntax for anchor tag.
[fix GH-1265] Patch by @lukBarros
Fri Feb 26 10:52:29 2016 Alex Boyd <[email protected]>
* lib/irb.rb: avoid to needless truncation when using back_trace_limit option.
[fix GH-1205][ruby-core:72773][Bug #11969]
Fri Feb 26 08:11:58 2016 Aaron Patterson <[email protected]>
* gem_prelude.rb: Reduce system calls by activating the `did_you_mean`
gem before requiring the gem. Activating the gem puts the gem on
the load path, where simply requiring the file will search every gem
that's installed until it can find a gem that contains the
`did_you_mean` file.
Thu Feb 25 19:04:13 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb: Adding possibility for debugging output
for TitleCase table in casefold.h.
(with Kimihito Matsui)
Wed Feb 24 22:31:13 2016 Martin Duerst <[email protected]>
* include/ruby/oniguruma.h: Rearranging flag assignments and making
space for titlecase indices; adding additional macros to add or
extract titlecase index; adding comments for better documentation.
* enc/unicode.c: Moving some macros to include/ruby/oniguruma.h;
activating use of titlecase indices.
(with Kimihito Matsui)
Wed Feb 24 21:03:04 2016 Tanaka Akira <[email protected]>
* random.c (limited_rand): Add a specialized path for when the limit fits
in 32 bit.
Tue Feb 23 21:52:24 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb, casefold.h: Outputting actual titlecase
data (new table, with indices from other tables).
* enc/unicode.c: Ignoring titlecase data indices for the moment.
(with Kimihito Matsui)
Tue Feb 23 15:21:14 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb, casefold.h: Reading casing data from
SpecialCasing.txt.
(with Kimihito Matsui)
Mon Feb 22 18:33:55 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb, casefold.h: Adding flag for title-case,
not yet operational.
(with Kimihito Matsui)
Mon Feb 22 18:17:03 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb, casefold.h: Fixed bug that avoided inclusion
of compatibility characters in upper-/lower-case mappings.
(with Kimihito Matsui)
Sun Feb 21 13:57:18 2016 Nobuyoshi Nakada <[email protected]>
* cgi/escape/escape.c: Optimize CGI.unescape performance by C ext
for ASCII-compatible encodings. [Fix GH-1250]
Sun Feb 21 13:56:57 2016 Nobuyoshi Nakada <[email protected]>
* cgi/escape/escape.c: Optimize CGI.unescapeHTML performance by C
ext for ASCII-compatible encodings. [Fix GH-1242]
Sat Feb 20 15:38:16 2016 Eric Wong <[email protected]>
* doc/extension.rdoc: update paths for defs/ directory
Sat Feb 20 14:44:15 2016 Lucas Buchala <[email protected]>
* vm_eval.c (rb_mod_module_eval): [DOC] Fix documentation
signature for Module#module_eval. [Fix GH-1258]
Sat Feb 20 14:40:44 2016 Adam O'Connor <[email protected]>
* README.md: a few grammatical changes to the main Ruby README.md.
[Fix GH-1259]
Sat Feb 20 13:04:22 2016 Nobuyoshi Nakada <[email protected]>
* dir.c (push_pattern, push_glob): deal with read paths as UTF-8
to stat later, on Windows as well as OS X.
[ruby-core:73868] [Bug #12081]
Sat Feb 20 01:53:33 2016 Nobuyoshi Nakada <[email protected]>
* object.c (rb_mod_const_get): make error message at uninterned
string consistent with symbols. [ruby-dev:49498] [Bug #12089]
Fri Feb 19 23:37:52 2016 Masahiro Tomita <[email protected]>
* lib/find.rb (Find#find): raise with the given path name if it
does not exist. [ruby-dev:49497] [Bug #12087]
Fri Feb 19 12:44:57 2016 Martin Duerst <[email protected]>
* enc/unicode.c: Activated use of case mapping data in CaseUnfold_11 array.
(with Kimihito Matsui)
Fri Feb 19 11:08:32 2016 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb: add cygwin case, nothing excluded.
[ruby-core:73806] [Bug#12071]
Thu Feb 18 21:32:15 2016 Kazuhiro NISHIYAMA <[email protected]>
* man/irb.1: fix output in EXAMPLES.
Thu Feb 18 21:05:47 2016 Nobuyoshi Nakada <[email protected]>
* string.c (sym_match_m): delegate to String#match but not
String#=~. [ruby-core:72864] [Bug #11991]
Thu Feb 18 14:15:38 2016 Shota Fukumori <[email protected]>
* re.c: Add MatchData#named_captures
[Feature #11999] [ruby-core:72897]
* test/ruby/test_regexp.rb(test_match_data_named_captures): Test for above.
* NEWS: News about MatchData#named_captures.
Wed Feb 17 21:41:29 2016 Nobuyoshi Nakada <[email protected]>
* defs/id.def (predefined): add idLASTLINE and idBACKREF for $_
and $~ respectively.
* parse.y: use idLASTLINE and idBACKREF instead of rb_intern.
Wed Feb 17 20:23:38 2016 Nobuyoshi Nakada <[email protected]>
* string.c (rb_str_init): fix segfault and memory leak, consider
wide char encoding terminator.
Wed Feb 17 12:14:59 2016 NARUSE, Yui <[email protected]>
* string.c (rb_str_init): introduce String.new(capacity: size)
[Feature #12024]
Tue Feb 16 19:10:08 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb, casefold.h: Used only first element
(rather than all) of target in CaseUnfold_11 array.
(with Kimihito Matsui)
Tue Feb 16 18:24:38 2016 Nobuyoshi Nakada <[email protected]>
* numeric.c (compare_with_zero): fix variable name, rb_cmperr
requires VALUEs but not an ID.
Tue Feb 16 17:34:18 2016 Nobuyoshi Nakada <[email protected]>
* dir.c (rb_dir_s_empty_p): add Dir.empty? method, which tells the
argument is the name of an empty directory. [Feature #10121]
Tue Feb 16 09:51:20 2016 Nobuyoshi Nakada <[email protected]>
* tool/rbinstall.rb (without_destdir): just strip a drive letter
which is prepended by with_destdir.
pointed out by @DavidEGrayson.
https://github.com/ruby/ruby/commit/0e5f9ae#commitcomment-16101763
Tue Feb 16 04:42:13 2016 NARUSE, Yui <[email protected]>
* insns.def (opt_plus): simply use LONG2NUM() instead of wrongly
complex overflow case.
* insns.def (opt_sub): ditto.
Tue Feb 16 02:49:41 2016 Nobuyoshi Nakada <[email protected]>
* tool/rbinstall.rb (without_destdir): compare with the destdir
after stripping a drive letter, on dosish platforms.
pointed out by @DavidEGrayson.
https://github.com/ruby/ruby/commit/d0cf23b#commitcomment-16100407
Mon Feb 15 15:44:09 2016 Nobuyoshi Nakada <[email protected]>
* parse.y (parse_ident): allow keyword arguments just after a
method where the same name local variable is defined.
[ruby-core:73816] [Bug#12073]
Mon Feb 15 14:43:28 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb: Added debugging option
(with Kimihito Matsui)
Sun Feb 14 17:31:50 2016 Lars Kanis <[email protected]>
* lib/mkmf.rb (with_{cpp,c,ld}flags): copy caller strings not to
be modified, in append_{cpp,c,ld}flags respectively.
[Fix GH-1246]
Sun Feb 14 16:18:57 2016 Nobuyoshi Nakada <[email protected]>
* eval.c (setup_exception): set the cause only if it is explicitly
given or not set yet. [Bug #12068]
Sat Feb 13 21:44:58 2016 Tanaka Akira <[email protected]>
* hash.c (rb_hash_invert): [DOC] more examples.
Sat Feb 13 17:30:49 2016 Nobuyoshi Nakada <[email protected]>
* lib/uri/generic.rb (URI::Generic#find_proxy): support CIDR in
no_proxy. [ruby-core:73769] [Feature#12062]
Sat Feb 13 17:11:58 2016 Fabian Wiesel <[email protected]>
* lib/uri/generic.rb (find_proxy): exclude white-spaces and allow
for a leading dot in the domain name in no_proxy.
[ruby-core:54542] [Feature #8317]
Fri Feb 12 12:20:56 2016 Nobuyoshi Nakada <[email protected]>
* error.c (name_err_initialize, nometh_err_initialize): [DOC] fix
argument positions. optional parameters except for the message
are placed at the last.
Fri Feb 12 11:49:49 2016 Anthony Dmitriyev <[email protected]>
* net/ftp.rb: add NullSocket#closed? to fix closing not opened
connection. [Fix GH-1232]
Fri Feb 12 11:17:38 2016 Bogdan <[email protected]>
* re.c (rb_reg_initialize_m): [DOC] fix missing right bracket.
[Fix GH-1243]
Thu Feb 11 14:57:58 2016 Nobuyoshi Nakada <[email protected]>
* configure.in (RUBY_CHECK_SIZEOF, RUBY_DEFINT): fix for types
which are conditionally available depending on architectures
when universal binary, e.g., __int128.
Thu Feb 11 06:26:18 2016 NARUSE, Yui <[email protected]>
* configure.in (RUBY_DEFINT): use Parameter Expansion.
Thu Feb 11 05:33:24 2016 NARUSE, Yui <[email protected]>
* configure.in (int128_t): don't check HAVE_XXX (for example
HAVE___INT128) because RUBY_CHECK_SIZEOF() don't define it for
config.h and use of $ac_cv_sizeof___int128 alternates the check.
(and don't need to define because users shouldn't know that)
Wed Feb 10 12:03:41 2016 Nobuyoshi Nakada <[email protected]>
* configure.in (ARFLAGS): check if deterministic mode flag is
effective, which is on by default on Ubuntu.
Tue Feb 9 16:36:23 2016 Naotoshi Seo <[email protected]>
* lib/logger.rb: Remove block from Logger.add as it's not needed
patch provided by Daniel Lobato Garcia [fix GH-1240] [Bug #12054]
Tue Feb 9 14:32:23 2016 Zachary Scott <[email protected]>
* ext/zlib/zlib.c: Document mtime header behavior with patch by @schneems
Fixes [GH-1129]: https://github.com/ruby/ruby/pull/1129
Tue Feb 9 13:52:49 2016 Zachary Scott <[email protected]>
* re.c: Remove deprecated kcode argument from Regexp.new and compile
patch provided by Dylan Pulliam [Bug #11495]
Mon Feb 8 21:26:19 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb, enc/unicode/casefold.h: Flags for
upper/lower conversion added (titlecase and SpecialCasing still missing)
(with Kimihito Matsui)
Mon Feb 8 20:43:57 2016 Martin Duerst <[email protected]>
* string.c, enc/unicode.c: Disassociating ONIGENC_CASE_FOLD flag from
ONIGENC_CASE_DOWNCASE.
(with Kimihito Matsui)
Mon Feb 8 13:00:17 2016 Martin Duerst <[email protected]>
* enc/unicode.c: Shortened macros for enc/unicode/casefold.h to
single-letter; use flags in casefold.h for logic.
* enc/unicode/case-folding.rb: Added flag for case folding.
Changed parameter passing.
* enc/unicode/casefold.h: New flags added.
(with Kimihito Matsui)
Mon Feb 8 10:30:10 2016 Nobuyoshi Nakada <[email protected]>
* ruby.c (feature_option): raise a runtime error if ambiguous
feature name is given, in the future. [Bug #12050]
Mon Feb 8 09:43:57 2016 Martin Duerst <[email protected]>
* common.mk: Removed enc/unicode/casefold.h from automatic build because
some CI systems don't have gperf. Creation of enc/unicode/casefold.h
is now possible with make unicode-up. This is intended as a temporary measure.
Sun Feb 7 22:10:08 2016 Martin Duerst <[email protected]>
* common.mk: Added two more precondition files for enc/unicode/casefold.h
* enc/unicode.c: Added shortening macros for enc/unicode/casefold.h
* enc/unicode/case-folding.rb: Fixed file encoding for CaseFolding.txt
to ASCII-8BIT (should fix some ci errors). Clarified usage. Created
class MapItem. Partially implemented class CaseMapping.
(with Kimihito Matsui)
Sun Feb 7 14:12:32 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb: Fixing parameter passing.
(with Kimihito Matsui)
Sun Feb 7 11:44:03 2016 Martin Duerst <[email protected]>
* enc/unicode/case-folding.rb: New classes CaseMapping/CaseMappingDummy
to pass as parameters; not yet implemented or used.
(with Kimihito Matsui)
Sun Feb 7 11:16:00 2016 Martin Duerst <[email protected]>
* common.mk: using new option in recipe for enc/unicode/casefold.h
* enc/unicode/case-folding.rb: Correctly specify argument to new option.
(with Kimihito Matsui)
Sun Feb 7 10:43:27 2016 Martin Duerst <[email protected]>
(this commit message applies to the previous commit)
* common.mk: explicit recipe for enc/unicode/casefold.h
* enc/unicode/case-folding.rb: Adding -m option to prepare for using
multiple data files.
(with Kimihito Matsui)
Sat Feb 6 22:30:57 2016 Nobuyoshi Nakada <[email protected]>
* lib/cgi/util.rb (escapeHTML, unescapeHTML): consider
ASCII-incompatible encodings. [Fix GH-1239]
Sat Feb 6 15:18:28 2016 Martin Duerst <[email protected]>
* test/ruby/enc/test_regex_casefold.rb: Added data-based testing for
String#downcase :fold.
* enc/unicode.c: Fixed a range error (lowest non-ASCII character affected
by case operations is U+00B5, MICRO SIGN)
* test/ruby/enc/test_case_mapping.rb: Explicit test for case folding of
MICRO SIGN to Greek mu.
(with Kimihito Matsui)
Sat Feb 6 14:51:23 2016 Martin Duerst <[email protected]>
* test/ruby/enc/test_regex_casefold.rb: Tests for three case folding
primitives (mbc_case_fold, get_case_fold_codes_by_str,
apply_all_case_fold) in the various encodings. Currently only known
good encodings are tested to avoid test failures. For bug hunting,
start by adding more encodings with
generate_test_casefold encoding
(with Kimihito Matsui)
Sat Feb 6 14:37:16 2016 Martin Duerst <[email protected]>
* enc/unicode.c, test/ruby/enc/test_case_mapping.rb: Implemented :fold
option for String#downcase by using case folding data from
regular expression engine, and added a few simple tests.
(with Kimihito Matsui)
Fri Feb 5 20:08:59 2016 Martin Duerst <[email protected]>
* test/ruby/enc/test_case_mapping.rb: added tests for :ascii option.
(with Kimihito Matsui)
Fri Feb 5 12:22:20 2016 NARUSE, Yui <[email protected]>
* insns.def (opt_mult): Use int128_t for overflow detection.
* bignum.c (rb_uint128t2big): added for opt_mult.
* bignum.c (rb_uint128t2big): added for rb_uint128t2big..
* configure.in: define int128_t, uint128_t and related MACROs.
Initially introduced by r41379 but reverted by r50749.
Thu Feb 4 21:05:17 2016 Martin Duerst <[email protected]>
* enc/unicode.c: Activated :ascii flag for ASCII-only case conversion
(with Kimihito Matsui)
Thu Feb 4 17:38:01 2016 Nobuyoshi Nakada <[email protected]>
* re.c (reg_set_source): make source string frozen without
copying.
* re.c (rb_reg_initialize_m): refactor initialization with
encoding.
Thu Feb 4 15:35:29 2016 Nobuyoshi Nakada <[email protected]>
* string.c (rb_fstring_enc_new, rb_fstring_enc_cstr): functions to
make fstring with encoding.
Thu Feb 4 14:42:29 2016 Martin Duerst <[email protected]>
* common.mk: Added Unicode data file SpecialCasing.txt to be additionally
downloaded (with Kimihito Matsui)
Thu Feb 4 12:39:08 2016 joker1007 <[email protected]>
* cgi/escape/escape.c: Optimize CGI.escape performance by C ext
for ASCII-compatible encodings. [Fix GH-1238]
Thu Feb 4 11:53:56 2016 Martin Duerst <[email protected]>
* common.mk: Introduce two variables (UNICODE_DATA_DIR and
UNICODE_SRC_DATA_DIR) to eliminate repetitions.
Wed Feb 3 12:13:20 2016 NARUSE, Yui <[email protected]>
* string.c (str_new_frozen): if the given string is embeddedable
but not embedded, embed a new copied string. [Bug #11946]
Wed Feb 3 08:25:38 2016 boshan <[email protected]>
* ext/openssl/ossl_pkey.c (Init_ossl_pkey): [DOC] Fix typo
"encrypted" to "decrypted". [Fix GH-1235]
Wed Feb 3 08:21:32 2016 Seiei Miyagi <[email protected]>
* ext/ripper/lib/ripper/lexer.rb (on_heredoc_dedent): Fix
Ripper.lex error in dedenting squiggly heredoc. heredoc tree is
also an array of Elem in the outer tree. [Fix GH-1234]
Wed Feb 3 02:33:39 2016 NARUSE, Yui <[email protected]>
* re.c (rb_reg_prepare_enc): use already compiled US-ASCII regexp
if given string is ASCII only.
121.2s to 113.9s on my x86_64-freebsd10.2 Intel Core i5 661
Tue Feb 2 13:02:03 2016 NARUSE, Yui <[email protected]>
* re.c: Introduce RREGEXP_PTR.
patch by dbussink.
partially merge https://github.com/ruby/ruby/pull/497
* include/ruby/ruby.h: ditto.
* gc.c: ditto.
* ext/strscan/strscan.c: ditto.
* parse.y: ditto.
* string.c: ditto.
Tue Feb 2 09:08:27 2016 SHIBATA Hiroshi <[email protected]>
* lib/rubygems/specification.rb: `coding` is effective only first
line except shebang.
* lib/rubygems/package.rb, lib/rubygems/package/*: ditto.
Mon Feb 1 21:41:58 2016 SHIBATA Hiroshi <[email protected]>
* lib/rubygems.rb, lib/rubygems/*, test/rubygems/*: Update rubygems-2.5.2.
It supports to enable frozen string literal and add `--norc` option for
disable to `.gemrc` configuration.
See 2.5.2 release notes for other fixes and enhancements.
https://github.com/rubygems/rubygems/blob/a8aa3bac723f045c52471c7b9328310a048561e0/History.txt#L3
Sun Jan 31 12:33:13 2016 Dan Kreiger <[email protected]>
* test/drb/ut_large.rb (multiply, avg, median): add additional
math operations to DRbLarge. [Fix GH-1086]
Sun Jan 31 12:19:15 2016 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_file_exhaustive.rb (test_lstat): Add lacking test
for File#lstat. [Fix GH-1231]
Sun Jan 31 12:15:33 2016 Prayag Verma <[email protected]>
* doc/standard_library.rdoc: fix typo [Fix GH-1230]
Spelling mistakes -
outputing > outputting
publich > publish
Sat Jan 30 15:18:07 2016 Nobuyoshi Nakada <[email protected]>
* vm_eval.c (rb_check_funcall_with_hook): also should call the
given hook before returning Qundef when overridden respond_to?
method returned false. [ruby-core:73556] [Bug #12030]
Fri Jan 29 17:40:07 2016 Nobuyoshi Nakada <[email protected]>
* win32/file.c (rb_readlink): drop garbage after the substitute
name, as rb_w32_read_reparse_point returns the expected buffer
size but "\??\" prefix is dropped from the result.
* win32/win32.c (w32_readlink): ditto, including NUL-terminator.
Fri Jan 29 17:07:27 2016 NAKAMURA Usaku <[email protected]>
* win32/win32.c (fileattr_to_unixmode, rb_w32_reparse_symlink_p): volume
mount point should be treated as directory, not symlink.
[ruby-core:72483] [Bug #11874]
* win32/win32.c (rb_w32_read_reparse_point): check the reparse point is
a volume mount point or not.
* win32/file.c (rb_readlink): follow above change (but this pass won't
be used).
Fri Jan 29 16:17:07 2016 Lucas Buchala <[email protected]>
* enum.c (enum_take_while, enum_drop_while): rename block
parameter to obj, since they are generic objects. [Fix GH-1226]
Fri Jan 29 14:15:26 2016 Nobuyoshi Nakada <[email protected]>
* lib/erb.rb (ERB::Compiler#detect_magic_comment): allow
frozen-string-literal in comment as well as encoding.
* lib/erb.rb (ERB#def_method): insert def line just before the
first non-comment and non-empty line, not to leave duplicated
and stale magic comments.
Fri Jan 29 11:13:33 2016 Jeremy Evans <[email protected]>
* lib/erb.rb (ERB#set_eoutvar): explicitly make mutable string as
a buffer to make ERB work with --enable-frozen-string-literal.
[ruby-core:73561] [Bug #12031]
Fri Jan 29 10:44:56 2016 SHIBATA Hiroshi <[email protected]>
* lib/net/http/header.rb: Warn nil variable on HTTP Header.
It caused to NoMethodError. [fix GH-952][fix GH-641] Patch by @teosz
* test/net/http/test_httpheader.rb: Added test for nil HTTP Header.
Thu Jan 28 17:31:43 2016 Nobuyoshi Nakada <[email protected]>
* ext/socket/socket.c (sock_gethostname): support unlimited size
hostname.
Wed Jan 27 21:03:45 2016 SHIBATA Hiroshi <[email protected]>
* test/-ext-/string/test_capacity.rb: Added missing library.
Wed Jan 27 18:53:40 2016 Martin Duerst <[email protected]>
* enc/unicode.c: Fixed bit mask in macro OnigCodePointCount
Wed Jan 27 17:54:42 2016 Martin Duerst <[email protected]>
* enc/unicode.c: Protect code point count by macro, in order to
be able to use the remaining bits for flags.
(with Kimihito Matsui)
Wed Jan 27 16:34:35 2016 boshan <[email protected]>
* lib/tempfile.rb (Tempfile#initialize): [DOC] the first parameter
`basename` is optional and defaulted to an empty string since
[GH-523]. [Fix GH-1225]
Wed Jan 27 16:25:54 2016 Koichi ITO <[email protected]>
* array.c (rb_ary_dig): [DOC] fix the exception class to be raised
when intermediate object does not have dig method. TypeError
will be raised now. [Fix GH-1224]
Tue Jan 26 19:36:15 2016 Aggelos Avgerinos <[email protected]>
* array.c (permute0, rpermute0): [DOC] Substitute indexes ->
indices in documentation for consistency. [Fix GH-1222]
Tue Jan 26 15:21:37 2016 Eric Wong <[email protected]>
* compile.c (caller_location): use rb_fstring_cstr for "<compiled>"
(it is converted to fstring anyways inside rb_iseq_new_with_opt)
* iseq.c (iseqw_s_compile): ditto
* iseq.c (rb_iseq_new_main): use rb_fstring_cstr for "<main>"
* vm.c (Init_VM): ditto, share with with above
* iseq.c (iseqw_s_compile_file): rb_fstring before rb_io_t->pathv
share "<main>" with above
* vm.c (rb_binding_add_dynavars): fstring "<temp>" immediately
Tue Jan 26 15:14:01 2016 Kazuki Yamaguchi <[email protected]>
* compile.c (iseq_peephole_optimize): don't apply tailcall
optimization to send/invokesuper instructions with blockiseq.
This is a follow-up to the changes in r51903; blockiseq is now
the third operand of send/invokesuper instructions.
[ruby-core:73413] [Bug #12018]
Tue Jan 26 14:26:46 2016 Eric Wong <[email protected]>
* signal.c (sig_list): use fstring for hash key
* test/ruby/test_signal.rb (test_signal_list_dedupe_keys): added
Tue Jan 26 13:08:34 2016 Nobuyoshi Nakada <[email protected]>
* signal.c (rb_f_kill): should immediately deliver reserved
signals SIGILL and SIGFPE, not only SIGSEGV and SIGBUS.
Tue Jan 26 07:57:28 2016 Joseph Tibbertsma <[email protected]>
* gc.c (RVALUE_PAGE_WB_UNPROTECTED): fix a typo of argument name.
[Fix GH-1221]
Mon Jan 25 17:26:54 2016 Eric Wong <[email protected]>
* ruby_assert.h (RUBY_ASSERT_WHEN): fix reference to macro name
* vm_core.h: include ruby_assert.h before using
[ruby-core:73371]
Mon Jan 25 15:55:30 2016 Nobuyoshi Nakada <[email protected]>
* symbol.c (sym_check_asciionly): more informative error message
with the encoding name and the inspected content.
[ruby-core:73398] [Feature #12016]
Mon Jan 25 09:38:26 2016 SHIBATA Hiroshi <[email protected]>
* test/ruby/test_string.rb: added testcase for next!, succ and succ!
[fix GH-1213] Patch by @K0mAtoru
Mon Jan 25 09:32:25 2016 SHIBATA Hiroshi <[email protected]>
* lib/webrick/httpservlet/filehandler.rb: fix documentation for namespace.
[fix GH-1219][ci skip] Patch by @leafac
Sun Jan 24 19:34:23 2016 Eric Wong <[email protected]>
* vm_insnhelper.c (vm_check_if_namespace): tiny size reduction
Sun Jan 24 18:12:36 2016 Martin Duerst <[email protected]>
* common.mk: Simplifying Unicode data file download logic to make
it more reliable (including additional fix not in r53633) [Bug #12007]
Sun Jan 24 16:54:11 2016 Nobuyoshi Nakada <[email protected]>
* ext/io/wait/wait.c (io_wait_readwrite): [EXPERIMENTAL] allow to
wait for multiple modes, readable and writable, at once. the
arguments may change in the future. [Feature #12013]
Sat Jan 23 22:30:59 2016 K0mA <[email protected]>
* test/ruby/test_array.rb (test_keep_if): Add test for
Array#keep_if separate from Array#select! [Fix GH-1218]
Sat Jan 23 20:54:26 2016 SHIBATA Hiroshi <[email protected]>
* common.mk: revert r53633. It broke rubyci and travis.
https://travis-ci.org/ruby/ruby/builds/104259623
Sat Jan 23 20:10:29 2016 Shugo Maeda <[email protected]>
* range.c (range_eqq): revert r51585 because rb_call_super() is
called in range_include() and thus r51585 doesn't work when the
receiver Range object consists of non linear objects such as Date
objects.
[ruby-core:72908] [Bug #12003]
Sat Jan 23 18:37:37 2016 Martin Duerst <[email protected]>
* ChangeLog: Fixing wrong time on previous commit, and adding
previous commit message to svn [ci skip]
Sat Jan 23 18:30:30 2016 Martin Duerst <[email protected]>
* common.mk: Simplifying Unicode data file download logic to make
it more reliable [Bug #12007]
Sat Jan 23 16:29:42 2016 Martin Duerst <[email protected]>
* tool/downloader.rb: Fixed a logical error, improved documentation
Sat Jan 23 11:42:43 2016 Peter Suschlik <[email protected]>
* README.md: Use SVG Travis badge over PNG for better quality and
device support. [Fix GH-1214] [Fix GH-1216]
Sat Jan 23 11:29:16 2016 Pascal Betz <[email protected]>
* lib/csv.rb: Update documentation of CSV header converter for
r45498, [GH-575]. [Fix GH-1215]
Fri Jan 22 17:36:46 2016 Nobuyoshi Nakada <[email protected]>
* vm_core.h (VM_ASSERT): use RUBY_ASSERT instead of rb_bug.
* error.c (rb_assert_failure): assertion with stack dump.
* ruby_assert.h (RUBY_ASSERT): new header for the assertion.
Fri Jan 22 00:25:57 2016 NARUSE, Yui <[email protected]>
* regparse.c (fetch_name_with_level): allow non word characters
at the first character. [Feature #11949]
* regparse.c (fetch_name): ditto.
Thu Jan 21 17:34:01 2016 NARUSE, Yui <[email protected]>
* marshal.c (r_object0): honor Marshal.load post proc
value for TYPE_LINK. by Hiroshi Nakamura <[email protected]>
https://github.com/ruby/ruby/pull/1204 fix GH-1204
Thu Jan 21 16:37:50 2016 NARUSE, Yui <[email protected]>
* Makefile.in (update-rubyspec): fix r53208 like r53451.
Wed Jan 20 20:58:25 2016 NAKAMURA Usaku <[email protected]>
* common.mk, Makefile.in: update-config_files is only for Unix
platforms.
Wed Jan 20 17:13:39 2016 Nobuyoshi Nakada <[email protected]>
* tool/extlibs.rb: add --cache option to change cache directory.
Tue Jan 19 17:03:40 2016 Martin Duerst <[email protected]>
* common.mk: Added Unicode data file CaseFolding.txt to be additionally
downloaded (with Kimihito Matsui)
Tue Jan 19 10:09:58 2016 Sho Hashimoto <[email protected]>
* lib/shell.rb (Shell.debug_output_exclusive_unlock): remove
because Mutex#exclusive_unlock was already deleted. [fix GH-1185]
Tue Jan 19 09:38:27 2016 Nick Cox <[email protected]>
* vm_method.c: fix grammar in respond_to? warning.
[fix GH-1047]
Mon Jan 18 14:37:07 2016 Nobuyoshi Nakada <[email protected]>
* parse.y (parser_here_document): an escaped newline is not an
actual newline, and the rest part should not be dedented.
[ruby-core:72855] [Bug #11989]
Mon Jan 18 12:04:34 2016 SHIBATA Hiroshi <[email protected]>
* test/ruby/test_string.rb: Added extra testcase for test_rstrip_bang
and test_lstrip_bang. [fix GH-1178] Patch by @Matrixbirds
Mon Jan 18 11:47:27 2016 SHIBATA Hiroshi <[email protected]>
* string.c: fix a typo. [fix GH-1202][ci skip] Patch by @sunboshan
Sun Jan 17 21:15:30 2016 NARUSE, Yui <[email protected]>
* configure.in: improve ICC (Intel C Compiler) support.
* configure.in (CXX): The name of icc's c++ compiler is `icpc`.
* configure.in (warnings): Add `-diag-disable=2259` to suppress
noisy warnings: "non-pointer conversion from "..." to "..." may
lose significant bits".
* configure.in (optflags): Add `-fp-model precise` like -fno-fast-math.
* lib/mkmf.rb: icc supports -Werror=division-by-zero
and -Werror=deprecated-declarations, but doesn't support
-Wdivision-by-zero and -Wdeprecated-declarations.
Sun Jan 17 20:40:10 2016 Martin Duerst <[email protected]>
* string.c: Any kind of option is now taking the new code path for
upcase/downcase/capitalize/swapcase. :lithuanian can be used for
testing if no specific option is desired.
* test/ruby/enc/test_case_mapping.rb: Adjusted to above.
(with Kimihito Matsui)
Sun Jan 17 20:10:10 2016 Martin Duerst <[email protected]>
* enc/unicode.c: Fixed a logical error and some comments.
* test/ruby/enc/test_case_mapping.rb: Made tests more general.
(with Kimihito Matsui)
Sun Jan 17 17:41:41 2016 Martin Duerst <[email protected]>
* enc/unicode.c: Removed artificial expansion for Turkic,
added hand-coded support for Turkic, fixed logic for swapcase.
* string.c: Made use of new case mapping code possible from upcase,
capitalize, and swapcase (with :lithuanian as a guard).
* test/ruby/enc/test_case_mapping.rb: Adjusted for above.
(with Kimihito Matsui)
Sun Jan 17 15:30:57 2016 Nobuyoshi Nakada <[email protected]>
* ext/socket/option.c (sockopt_bool): relax boolean size to be one
too not only sizeof(int). Winsock getsockopt() returns a single
byte as a boolean socket option. [ruby-core:72730] [Bug #11958]
Sun Jan 17 14:43:01 2016 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_env.rb: [Fix GH-1201]
* Extract test code for ENV#keep_if from ENV#select_bang
* Add a test case for ENV#select_bang,keep_if
Sun Jan 17 14:42:25 2016 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_env.rb: [Fix GH-1201]
* Extract test code for ENV#delete_if from ENV#reject_bang
* Add a test case for ENV#reject_bang,delete_if
Sun Jan 17 14:40:22 2016 Nobuyoshi Nakada <[email protected]>
* ext/socket/option.c (check_size): extract a macro to check
binary data size, with a consistent message.
* ext/socket/option.c (sockopt_byte): fix error message,
sizeof(int) differs from sizeof(unsigned char) in general.
Sat Jan 16 21:16:21 2016 Nobuyoshi Nakada <[email protected]>
* parse.y (xstring): reset heredoc indent after dedenting,
so that following string literal would not be dedented.
[ruby-core:72857] [Bug #11990]
Sat Jan 16 17:24:24 2016 Martin Duerst <[email protected]>
* enc/unicode.c: Artificial mapping to test buffer expansion code.
* string.c: Fixed buffer expansion logic.
* test/ruby/enc/test_case_mapping.rb: Tests for above.
(with Kimihito Matsui)
Sat Jan 16 16:47:14 2016 SHIBATA Hiroshi <[email protected]>
* ext/openssl/lib/openssl/pkey.rb: Added 2048 bit DH parameter.
* test/openssl/test_pkey_dh.rb: ditto.
Sat Jan 16 10:51:19 2016 SHIBATA Hiroshi <[email protected]>
* enc/unicode.c: fix implicit conversion error with clang. fixup r53548.
* string.c: ditto.
Sat Jan 16 10:31:00 2016 SHIBATA Hiroshi <[email protected]>
* common.mk: test-sample was changed to test-basic.
[Feature #11982][ruby-core:72823]
* basictest/runner.rb: ditto. rename from tool/rubytest.rb.
* basictest/test.rb: ditto. rename from sample/test.rb.
* defs/gmake.mk: picked from r53540
* sample/test.rb: backward compatibility for chkbuild.
Sat Jan 16 10:23:23 2016 Martin Duerst <[email protected]>
* string.c, enc/unicode.c: New code path as a preparation for Unicode-wide
case mapping. The code path is currently guarded by the :lithuanian
option to avoid accidental problems in daily use.
* test/ruby/enc/test_case_mapping.rb: Test for above.
* string.c: function 'check_case_options': fixed logical errors
(with Kimihito Matsui)
Fri Jan 15 20:20:20 2016 Naohisa Goto <[email protected]>
* regint.h (PLATFORM_UNALIGNED_WORD_ACCESS): The value of
UNALIGNED_WORD_ACCESS should be used to determine whether
unaligned word access is allowed or not. After this commit,
./configure CPPFLAGS="-DUNALIGNED_WORD_ACCESS=0" disables
unaligned word access even on platforms that support the feature.
Fri Jan 15 16:12:10 2016 Nobuyoshi Nakada <[email protected]>
* parse.y (string1): reset heredoc indent for each string literal
so that concatenated string would not be dedented.
[ruby-core:72857] [Bug #11990]
Thu Jan 14 20:01:00 2016 NARUSE, Yui <[email protected]>
* lib/uri/generic.rb (URI::Generic#to_s): change encoding to
UTF-8 as Ruby 2.2/ by Koichi ITO <[email protected]>
https://github.com/ruby/ruby/pull/1188 fix GH-1188
Thu Jan 14 17:36:16 2016 Nobuyoshi Nakada <[email protected]>
* variable.c (rb_f_global_variables): add matched back references
only, as well as defined? operator.
Thu Jan 14 16:12:09 2016 Nobuyoshi Nakada <[email protected]>
* sprintf.c (rb_str_format): format exact number more exactly.
Thu Jan 14 15:08:43 2016 Tony Arcieri <[email protected]>
* Remove 512-bit DH group. It's affected by LogJam Attack.
https://weakdh.org/
[fix GH-1196][Bug #11968][ruby-core:72766]
Thu Jan 14 11:44:29 2016 Nobuyoshi Nakada <[email protected]>
* variable.c (rb_f_global_variables): add $1..$9 only if $~ is
set. fix the condition removed at r14014.
Wed Jan 13 17:21:45 2016 SHIBATA Hiroshi <[email protected]>
* .travis.yml: removed commented-out code.
Wed Jan 13 17:14:54 2016 SHIBATA Hiroshi <[email protected]>
* .travis.yml: removed osx code. follow up with r53517
Wed Jan 13 16:56:19 2016 Nobuyoshi Nakada <[email protected]>
* iseq.c (rb_iseq_mark): mark parent iseq to prevent dynamically
generated iseq by eval from GC. [ruby-core:72620] [Bug #11928]
Wed Jan 13 03:42:58 2016 Eric Wong <[email protected]>
* class.c (Init_class_hierarchy): resolve name for rb_cObject ASAP
* object.c (rb_mod_const_set): move name resolution to rb_const_set
* variable.c (rb_const_set): do class resolution here
[ruby-core:72807] [Bug #11977]
Wed Jan 13 00:37:12 2016 Satoshi Ohmori <[email protected]>
* man/ruby.1: fix double word typo. [Fix GH-1194]
Tue Jan 12 21:01:09 2016 Benoit Daloze <[email protected]>
* common.mk: update URL and name for the Ruby spec suite.
Tue Jan 12 19:52:19 2016 sorah (Shota Fukumori) <[email protected]>
* lib/forwardable.rb: Convert given accessors to String.
r53381 changed to accept only Symbol or String for accessors, but
there are several rubygems that pass classes (e.g. Array,
Hash, ...) as accessors. Prior r53381, it was accepted because Class#to_s
returns its class name. After r53381 given accessors are checked
with define_method, but it accepts only Symbol or String, otherwise
raises TypeError.
def_delegator Foo, :some_method
This change is to revert unexpected incompatibility. But this behavior
may change in the future.
Mon Jan 12 18:41:41 2016 Martin Duerst <[email protected]>
* string.c: made a variable name more grammatically correct
Mon Jan 12 18:34:34 2016 Martin Duerst <[email protected]>
* string.c: minor grammar fix [ci skip]
Mon Jan 12 16:09:09 2016 Martin Duerst <[email protected]>
* test/ruby/enc/test_casing_options.rb: Tests for option
parsing/checking for upcase/downcase/capitalize/swapcase
(see r53503; with Kimihito Matsui)
Mon Jan 12 16:03:03 2016 Martin Duerst <[email protected]>
* string.c: Added option parsing/checking for upcase/downcase/
capitalize/swapcase (with Kimihito Matsui)
Mon Jan 11 21:28:28 2016 Martin Duerst <[email protected]>
* include/ruby/oniguruma.h: Added flags needed for upcase/downcase
Unicode addition (with Kimihito Matsui)
Mon Jan 11 09:50:24 2016 Nobuyoshi Nakada <[email protected]>
* configure.in: check if the API version number is consistent with
the program version number.
Sun Jan 10 20:57:25 2016 Nobuyoshi Nakada <[email protected]>
* compile.c (compile_massign_lhs): when index ends with splat,
append rhs value to it like POSTARG, since VM_CALL_ARGS_SPLAT
splats the last argument only. [ruby-core:72777] [Bug #11970]
Sun Jan 10 15:45:10 2016 Nobuyoshi Nakada <[email protected]>
* include/ruby/missing.h (explicit_bzero_by_memset_s): remove
inline implementation by memset_s, which needs a macro before
including headers and can cause problems in extension libraries
by the order of the macro and headers.
Sun Jan 10 13:41:36 2016 Eric Wong <[email protected]>
* io.c (rb_deferr): remove long obsolete global
Sun Jan 10 09:14:42 2016 Eric Wong <[email protected]>
* ext/psych/lib/psych/visitors/yaml_tree.rb (visit_String):
eliminate chomp
* lib/net/http.rb (connect): eliminate delete
* lib/net/http/header.rb (basic_encode): ditto
* lib/net/imap.rb (authenticate): eliminate gsub
(self.encode_utf7): shorten delete arg
* lib/net/smtp.rb (base64_encode): eliminate gsub
* lib/open-uri.rb (OpenURI.open_http): eliminate delete
* lib/rss/rss.rb: ditto
* lib/securerandom.rb (base64): ditto
(urlsafe_base64): eliminate delete!
* lib/webrick/httpauth/digestauth.rb (split_param_value):
eliminate chop
* lib/webrick/httpproxy.rb (do_CONNECT): eliminate delete
(setup_upstream_proxy_authentication): ditto
[ruby-core:72666] [Feature #11938]
Sat Jan 9 23:19:14 2016 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_hash.rb (test_try_convert): Add test for
Hash.try_convert. [Fix GH-1190]
Sat Jan 9 23:15:25 2016 Jon Moss <[email protected]>
* ext/openssl/ossl.c: Add missing variables to documentation
examples. [Fix GH-1189]
Sat Jan 9 18:25:57 2016 Nobuyoshi Nakada <[email protected]>
* symbol.h (is_attrset_id): ASET is an attrset ID. fix
unexpected safe call instead of an ordinary ASET.
Sat Jan 9 10:44:33 2016 Nobuyoshi Nakada <[email protected]>
* configure.in, win32/setup.mak: extract RUBY_PROGRAM_VERSION from
RUBY_VERSION in version.h instead of RUBY_API_VERSION numbers in
include/ruby/version.h, and cut it into version numbers.
Sat Jan 9 07:13:33 2016 Koichi Sasada <[email protected]>
* gc.c: rename PAGE_* to HEAP_PAGE_* because PAGE_SIZE is used
in Mac OS X.
* test/ruby/test_gc.rb: catch up this fix.
Sat Jan 9 05:45:40 2016 Koichi Sasada <[email protected]>
* gc.c: PAGE_BITMAP_PLANES (the number of bitmap) is 4, not 3.
Sat Jan 9 05:42:57 2016 Koichi Sasada <[email protected]>
* gc.c: rename constant names HEAP_* to PAGE_*.
Keys of GC::INTERNAL_CONSTANTS are also renamed.
* test/ruby/test_gc.rb: catch up this fix.
Fri Jan 8 22:30:06 2016 Akinori MUSHA <[email protected]>
* doc/regexp.rdoc: [DOC] Elaborate on the \G anchor. [ci skip]
Fri Jan 8 19:49:27 2016 Koichi Sasada <[email protected]>
* gc.c: remove heap_page::body. Instead of this field,
heap_page::start field works well.
Fri Jan 8 19:31:52 2016 Koichi Sasada <[email protected]>
* gc.c: rename rb_heap_t::page_length to rb_heap_t::total_pages.
`page_length' is not clear (we may understand with length of
a page).
Fri Jan 8 17:07:14 2016 Koichi Sasada <[email protected]>
* gc.c: remove heap_page::heap. This field is only used to recognize
whether a page is in a tomb or not. Instead of this field,
heap_page::flags::in_tomb (1 bit field) is added.
Also type of heap_page::(total|free|final)_slots are changed from
int to short. 2B is enough for them.
Fri Jan 8 09:33:59 2016 Shugo Maeda <[email protected]>
* iseq.c (rb_iseq_compile_with_option): move variable initialization
code to avoid maybe-uninitialized warnings by gcc 4.8.
Fri Jan 8 00:03:22 2016 Shugo Maeda <[email protected]>
* enum.c (enum_min, enum_max): do the same optimization as r53454.
Thu Jan 7 22:32:21 2016 Kenta Murata <[email protected]>
* ruby.h: undef HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P
and HAVE_BUILTIN___BUILTIN_TYPES_COMPATIBLE_P on C++.
[ruby-core:72736] [Bug #11962]
Thu Jan 7 22:02:21 2016 Shugo Maeda <[email protected]>
* enum.c (enum_minmax): optimize object comparison in
Enumerable#minmax.
Thu Jan 7 14:49:12 2016 Nobuyoshi Nakada <[email protected]>
* thread.c (rb_thread_pending_interrupt_p): no pending interrupt
before initialization.
* thread.c (thread_raise_m, rb_thread_kill): uninitialized thread
cannot interrupt. [ruby-core:72732] [Bug #11959]
Thu Jan 7 11:34:14 2016 Nobuyoshi Nakada <[email protected]>
* include/ruby/backward.h (ruby_show_copyright_to_die): for source
code backward compatibility.
* ruby.c (process_options): return Qtrue to exit the process
successfully.
* version.c (ruby_show_copyright): no longer exit.
Wed Jan 6 17:22:53 2016 Nobuyoshi Nakada <[email protected]>
* lib/optparse.rb (OptionParser#order!): add `into` optional
keyword argument to store the results. [Feature #11191]
Tue Jan 5 21:44:37 2016 SHIBATA Hiroshi <[email protected]>
* ChangeLog: fix wrong class name.
Tue Jan 5 21:43:50 2016 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_string.rb(test_chr): added test for String#chr
[fix GH-1179]
Tue Jan 5 21:32:26 2016 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_numeric.rb (test_nonzero_p): added test for Numeric#nonzero?
[fix GH-1187]
Tue Jan 5 11:47:23 2016 Damir Gaynetdinov <[email protected]>
* doc/marshal.rdoc: Clarify object references example, that the
reference is same object. [Fix GH-1156]
Tue Jan 5 05:06:51 2016 Eric Wong <[email protected]>
* ext/stringio/stringio.c (strio_binmode): implement to set encoding
* test/stringio/test_stringio.rb (test_binmode): new test
[ruby-core:72699] [Bug #11945]
Mon Jan 4 15:44:37 2016 Sho Hashimoto <[email protected]>
* variable.c (rb_mod_deprecate_constant): [DOC] added
documentation for Module#deprecate_constant. [ci skip]
Mon Jan 4 15:36:38 2016 Sho Hashimoto <[email protected]>
* thread_sync.c: [DOC] remove SizedQueue#close argument.
[ci skip]
Mon Jan 4 10:14:24 2016 SHIBATA Hiroshi <[email protected]>
* test/coverage/test_coverage.rb: ignored test when enabled to coverage.
It lead to crash with `make test-all`.
Mon Jan 4 08:10:44 2016 Yuichiro Kaneko <[email protected]>
* insns.def (opt_case_dispatch): Move a comment to the
appropriate position.
[ci skip]
Sun Jan 3 23:55:13 2016 Nobuyoshi Nakada <[email protected]>
* lib/rubygems/security.rb (DIGEST_ALGORITHM, KEY_ALGORITHM):
should check same name as the used constants.
[ruby-core:72674] [Bug #11940]
Sun Jan 3 19:22:01 2016 Nobuyoshi Nakada <[email protected]>
* aclocal.m4: add fallback file for non-aclocal environments.
[ruby-core:72683] [Bug #11942]
Sun Jan 3 13:56:49 2016 Yuichiro Kaneko <[email protected]>
* eval_error.c (rb_print_undef): Use `rb_method_visibility_t`
instead of `int`.
* eval_intern.h (rb_print_undef): ditto
* proc.c (mnew_internal): ditto
* vm_method.c (rb_export_method): ditto
[Misc #11649] [ruby-core:71311] [fix GH-1078]
Sun Jan 3 12:12:09 2016 Nobuyoshi Nakada <[email protected]>
* acinclude.m4: rename aclocal.m4, which should be generated by
aclocal. [ruby-core:72675] [Bug #11941]
Sat Jan 2 21:07:55 2016 Eric Wong <[email protected]>
* thread_sync.c (queue_do_pop): avoid cast with Qfalse
(rb_szqueue_push): ditto, use queue_sleep wrapper
Sat Jan 2 16:16:14 2016 Masatoshi SEKI <[email protected]>
* lib/erb.rb: Allow ERB subclass to add token easily.
[Feature #11936]
* test/erb/test_erb.rb: ditto.
Sat Jan 2 14:44:31 2016 Nobuyoshi Nakada <[email protected]>
* parse.y (regexp): set_yylval_num sets u1, should use nd_tag
instead of nd_state. [ruby-core:72638] [Bug #11932]
Sat Jan 2 02:27:22 2016 Marc-Andre Lafortune <[email protected]>
* lib/ostruct.rb: Fix case of frozen object with initializer.
Bug revealed by RubySpec [ruby-core:72639]
Fri Jan 1 22:01:52 2016 Kazuhiro NISHIYAMA <[email protected]>
* NEWS: mention CSV's liberal_parsing option.
Fri Jan 1 19:38:23 2016 okkez <[email protected]>
* doc/NEWS-2.3.0: fix double words typo.
[ci skip][fix GH-1183]
Fri Jan 1 15:28:56 2016 Nobuyoshi Nakada <[email protected]>
* compile.c (remove_unreachable_chunk): decrease count of
call_info in removed instructions. fix up r53402.
Fri Jan 1 12:05:53 2016 Nobuyoshi Nakada <[email protected]>
* compile.c (remove_unreachable_chunk): remove unreferred label
to optimize away unreachable chunk.
Fri Jan 1 11:42:57 2016 James Edward Gray II <[email protected]>
* lib/csv.rb (CSV): Add a liberal_parsing option.
Patch by Braden Anderson. [#11839]
* test/csv/test_features.rb: test liberal_parsing
Fri Jan 1 10:27:28 2016 Nobuyoshi Nakada <[email protected]>
* tool/mkconfig.rb (RbConfig): prefix SDKROOT to oldincludedir
not includedir, the latter is outside the ruby installation.
[ruby-core:72496] [Bug #11881]
Fri Jan 1 08:53:02 2016 Yuki Kurihara <[email protected]>
* test/ruby/test_lazy_enumerator.rb (test_take_bad_arg): Add test
code in case of Enumerator::Lazy#take called with negative number.
[ruby-dev:49467] [Bug #11933]
Fri Jan 1 05:06:20 2016 Nobuyoshi Nakada <[email protected]>
* parse.y (parser_here_document): update indent for each line in
indented here document with single-quotes.
[ruby-core:72479] [Bug #11871]
Fri Jan 1 03:26:44 2016 Nobuyoshi Nakada <[email protected]>
* lib/ostruct.rb (freeze): define deferred accessors before
freezing to get rid of an error when just reading frozen
OpenStruct.
Thu Dec 31 14:36:45 2015 Marc-Andre Lafortune <[email protected]>
* lib/ostruct.rb: Fix new_ostruct_member to correctly avoid
redefinition [#11901]
Thu Dec 31 02:45:12 2015 NARUSE, Yui <[email protected]>
* test/ruby/test_module.rb (test_classpath): r53376 may change
the order of m.constants.
`make TESTS='-v ruby/test_class.rb ruby/test_module.rb' test-all`
may fail after that.
http://rubyci.s3.amazonaws.com/tk2-243-31075/ruby-trunk/log/20151230T164202Z.log.html.gz
Thu Dec 31 02:20:00 2015 Benoit Daloze <[email protected]>
* common.mk (help): Fix typo.
Wed Dec 30 20:53:09 2015 SHIBATA Hiroshi <[email protected]>
* lib/net/http/responses.rb: Added new response class for 451 status code.
* lib/net/http.rb: documentation for HTTPUnavailableForLegalReasons
Wed Dec 30 20:45:45 2015 SHIBATA Hiroshi <[email protected]>
* lib/webrick/httpstatus.rb: Added HTTP 451 Status Code.
[fix GH-1167] Patch by @MuhammetDilmac
https://tools.ietf.org/html/draft-tbray-http-legally-restricted-status-00
Wed Dec 30 20:25:52 2015 SHIBATA Hiroshi <[email protected]>
* doc/syntax/calling_methods.rdoc: fix old operator for safe navigation
operator. [ci skip][fix GH-1182] Patch by @dougo
Wed Dec 30 16:43:23 2015 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_string.rb (test_ord): Add test for String#ord.
[Fix GH-1181]
Wed Dec 30 11:28:57 2015 Nobuyoshi Nakada <[email protected]>
* lib/forwardable.rb (def_instance_delegator): adjust backtrace of
method body by tail call optimization. adjusting the delegated
target is still done by deleting backtrace.
* lib/forwardable.rb (def_single_delegator): ditto.
Wed Dec 30 11:18:42 2015 Elliot Winkler <[email protected]>
* lib/forwardable.rb (def_instance_delegator) fix delegating to
'args' and 'block', clashing with local variables in generated
methods. [ruby-core:72579] [Bug #11916]
* lib/forwardable.rb (def_single_delegator): ditto.
Wed Dec 30 09:58:56 2015 Nobuyoshi Nakada <[email protected]>
* object.c (rb_class_inherited_p): search the corresponding
ancestor to prepended module from prepending class itself.
[ruby-core:72493] [Bug #11878]
Wed Dec 30 09:20:00 2015 Yuki Kurihara <[email protected]>
* test/stringio/test_io.rb (test_flag): add assertion for error when
text and binary mode are mixed.
[ruby-dev:49465] [Feature #11921]
Wed Dec 30 08:43:59 2015 Yuki Kurihara <[email protected]>
* test/stringio/test_stringio.rb (test_initialize): add test for
StringIO#initialize. [ruby-core:72585] [Feature #11920]
Wed Dec 30 05:19:24 2015 Eric Wong <[email protected]>
* class.c (struct clone_const_arg): adjust for id_table
(clone_const): ditto
(clone_const_i): ditto
(rb_mod_init_copy): ditto
(rb_singleton_class_clone_and_attach): ditto
(rb_include_class_new): ditto
(include_modules_at): ditto
* constant.h (rb_free_const_table): ditto
* gc.c (free_const_entry_i): ditto
(rb_free_const_table): ditto
(obj_memsize_of): ditto
(mark_const_entry_i): ditto
(mark_const_tbl): ditto
* internal.h (struct rb_classext_struct): ditto
* object.c (rb_mod_const_set): resolve class name on assignment
* variable.c (const_update): replace with const_tbl_update
(const_tbl_update): new function
(fc_i): adjust for id_table
(find_class_path): ditto
(autoload_const_set): st_update => const_tbl_update
(rb_const_remove): adjust for id_table
(sv_i): ditto
(rb_local_constants_i): ditto
(rb_local_constants): ditto
(rb_mod_const_at): ditto
(rb_mod_const_set): ditto
(rb_const_lookup): ditto
[ruby-core:72112] [Feature #11614]
Wed Dec 30 04:10:13 2015 CHIKANAGA Tomoyuki <[email protected]>
* thread_pthread.c (rb_thread_create_timer_thread): destroy attr even
if pthread_create() failed.
Wed Dec 30 02:55:09 2015 Eric Wong <[email protected]>
* thread_pthread.c (setup_communication_pipe): delay setting owner
(rb_thread_create_timer_thread): until thread creation succeeds
[ruby-core:72590] [Bug #11922]
Tue Dec 29 19:12:46 2015 Nobuyoshi Nakada <[email protected]>
* ruby.c (proc_options): -W command line option should be able to
override -w in RUBYOPT environment variable.
Tue Dec 29 17:54:16 2015 Nobuyoshi Nakada <[email protected]>
* eval.c (ignored_block): warn if a block is given to `using`,
which is probably for `Module.new`.
Tue Dec 29 12:48:34 2015 Nobuyoshi Nakada <[email protected]>
* lib/ostruct.rb (OpenStruct): make respond_to? working on
just-allocated objects for workaround of Psych.
[ruby-core:72501] [Bug #11884]
Tue Dec 29 10:35:00 2015 Kenta Murata <[email protected]>
* test/mkmf/test_have_func.rb (test_have_func):
Add assertion to examine the existence of HAVE_RUBY_INIT.
* test/mkmf/test_have_func.rb (test_not_have_func):
Add assertion to examine the absence of HAVE_RUBY_INIT.
Tue Dec 29 06:50:42 2015 Eric Wong <[email protected]>
* thread_sync.c: static classes
Tue Dec 29 05:30:30 2015 Eric Wong <[email protected]>
* lib/resolv.rb (Resolv::IPv6.create): avoid modifying frozen
* test/resolv/test_dns.rb (test_ipv6_create): test for above
[Bug #11910] [ruby-core:72559]
Mon Dec 28 14:55:57 2015 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_string.rb (TestString#test_rstrip_bang): Add test
for String#rstrip!. [Fix GH-1176]
Mon Dec 28 09:18:53 2015 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_string.rb (TestString#test_lstrip_bang): Add test
for String#lstrip!. [Fix GH-1176]
Sun Dec 27 23:32:26 2015 Masaki Suketa <[email protected]>
* ext/win32ole/win32ole.c (ole_variant2val): refactoring.
Sun Dec 27 21:14:42 2015 NAKAMURA Usaku <[email protected]>
* process.c (rb_execarg_parent_start1): need to convert the encoding to
ospath's one.
Sun Dec 27 20:54:22 2015 NAKAMURA Usaku <[email protected]>
* process.c: use rb_w32_uchdir() instead of plain chdir() on Windows.
reported by naruse via twitter.
* process.c (rb_execarg_addopt): need to convert the encoding to
ospath's one.
Sun Dec 27 20:00:31 2015 SHIBATA Hiroshi <[email protected]>
* enc/x_emoji.h: fix dead-link.
Sun Dec 27 19:55:55 2015 SHIBATA Hiroshi <[email protected]>
* doc/NEWS-2.3.0: fix a typo.
Sun Dec 27 18:08:15 2015 Kuniaki IGARASHI <[email protected]>
* string.c (rb_str_lstrip_bang, rb_str_rstrip_bang): [DOC] Fix
ruby-doc comments for String#rstrip! and lstrip!. It looks like
dropped bang. [Fix GH-1175]
Sun Dec 27 15:14:20 2015 Eric Wong <[email protected]>
* io.c (io_getpartial): remove unused kwarg from template
* test/ruby/test_io.rb (test_readpartial_bad_args): new
[Bug #11885]
Sun Dec 27 11:50:53 2015 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_string.rb (test_rstrip, test_lstrip): Add tests
for String#lstrip and rstrip. The test cases are used from
string.c ruby-doc comments. [Fix GH-1174]
Sun Dec 27 11:47:46 2015 Kuniaki IGARASHI <[email protected]>
* test/ruby/test_string.rb (test_insert): Add test for
String#insert. The test cases are written in string.c
comments as a reference. [Fix GH-1173]
Sun Dec 27 11:03:33 2015 Nobuyoshi Nakada <[email protected]>
* parse.y (show_bitstack): trace stack_type value if yydebug.
Sun Dec 27 10:03:14 2015 Nobuyoshi Nakada <[email protected]>
* enc/depend (enc, trans): fix version dependency, shared object
files depend on the RUBY_SO_NAME value for runtime link.
Sun Dec 27 09:47:20 2015 Masaki Suketa <[email protected]>
* ext/win32ole/win32ole.c (ole_vstr2wc, ole_variant2val): fix blank
string conversion.
[Bug #11880]
Thanks Akio Tajima for the patch!
Sun Dec 27 09:34:53 2015 craft4coder <[email protected]>
* doc/extension.rdoc: [DOC] `nul` should be uppercase.
change 'nul' => 'NUL'. [Fix GH-1172]
Sat Dec 26 18:29:01 2015 Kouhei Sutou <[email protected]>
* lib/xmlrpc/client.rb: Support SSL options in async methods of
XMLRPC::Client.
[Bug #11489]
Reported by Aleksandar Kostadinov. Thanks!!!
Sat Dec 26 11:26:38 2015 Nobuyoshi Nakada <[email protected]>
* miniinit.c (Init_enc): add some common aliases of built-in
encodings. [ruby-core:72481] [Bug #11872]
Fri Dec 25 22:43:26 2015 Nobuyoshi Nakada <[email protected]>
* configure.in: extract RUBY_RELEASE_DAY at generating Makefile.
* version.h (RUBY_RELEASE_DATE): construct from RUBY_RELEASE_YEAR,
RUBY_RELEASE_MONTH, and RUBY_RELEASE_DAY.
Fri Dec 25 21:33:06 2015 Yukihiro Matsumoto <[email protected]>
* version.h (RUBY_VERSION): 2.4.0 development has started.
Fri Dec 25 14:12:12 2015 Martin Duerst <[email protected]>
* doc/ChangeLog-2.3.0, ext/tk/lib/tkextlib/SUPPORT_STATUS,
include/ruby/version.h: minor grammar fixes [ci skip]
Fri Dec 25 08:23:22 2015 Tadashi Saito <[email protected]>
* compile.c, cont.c, doc, man: fix common misspelling.
[ruby-core:72466] [Bug #11870]
For the changes before 2.3.0, see doc/ChangeLog-2.3.0
For the changes before 2.2.0, see doc/ChangeLog-2.2.0
For the changes before 2.1.0, see doc/ChangeLog-2.1.0
For the changes before 2.0.0, see doc/ChangeLog-2.0.0
For the changes before 1.9.3, see doc/ChangeLog-1.9.3
For the changes before 1.8.0, see doc/ChangeLog-1.8.0
Local variables:
coding: us-ascii
add-log-time-format: (lambda ()
(let* ((time (current-time))
(system-time-locale "C")
(diff (+ (cadr time) 32400))
(lo (% diff 65536))
(hi (+ (car time) (/ diff 65536))))
(format-time-string "%a %b %e %H:%M:%S %Y" (list hi lo) t)))
indent-tabs-mode: t
tab-width: 8
change-log-indent-text: 2
end:
vim: tabstop=8 shiftwidth=2
|