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
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
|
Inital Release: OTP 24.0
Git Tag: OTP-24.0
Date: 2021-03-26
Trouble Report Id: OTP-10391, OTP-13126, OTP-14485, OTP-14601,
OTP-14646, OTP-14647, OTP-14650, OTP-14700,
OTP-14793, OTP-15107, OTP-15523, OTP-16334,
OTP-16517, OTP-16560, OTP-16607, OTP-16611,
OTP-16653, OTP-16656, OTP-16678, OTP-16686,
OTP-16687, OTP-16698, OTP-16703, OTP-16706,
OTP-16712, OTP-16718, OTP-16720, OTP-16722,
OTP-16723, OTP-16724, OTP-16725, OTP-16749,
OTP-16750, OTP-16788, OTP-16793, OTP-16800,
OTP-16809, OTP-16811, OTP-16814, OTP-16822,
OTP-16824, OTP-16865, OTP-16867, OTP-16877,
OTP-16878, OTP-16879, OTP-16880, OTP-16881,
OTP-16882, OTP-16883, OTP-16884, OTP-16885,
OTP-16898, OTP-16905, OTP-16910, OTP-16926,
OTP-16936, OTP-16940, OTP-16943, OTP-16944,
OTP-16945, OTP-16947, OTP-16949, OTP-16950,
OTP-16952, OTP-16957, OTP-16963, OTP-16964,
OTP-16968, OTP-16970, OTP-16971, OTP-16974,
OTP-16980, OTP-16981, OTP-16986, OTP-16987,
OTP-16995, OTP-17001, OTP-17005, OTP-17007,
OTP-17014, OTP-17015, OTP-17020, OTP-17023,
OTP-17024, OTP-17028, OTP-17044, OTP-17049,
OTP-17051, OTP-17057, OTP-17059, OTP-17062,
OTP-17077, OTP-17078, OTP-17084, OTP-17092,
OTP-17095, OTP-17103, OTP-17104, OTP-17105,
OTP-17106, OTP-17117, OTP-17118, OTP-17120,
OTP-17121, OTP-17122, OTP-17123, OTP-17131,
OTP-17133, OTP-17140, OTP-17153, OTP-17156,
OTP-17168, OTP-17170, OTP-17171, OTP-17172,
OTP-17175, OTP-17177, OTP-17180, OTP-17181,
OTP-17183, OTP-17189, OTP-17192, OTP-17198,
OTP-17199, OTP-17201, OTP-17203, OTP-17206,
OTP-17207, OTP-17210, OTP-17213, OTP-17214,
OTP-17216, OTP-17217, OTP-17219, OTP-17221,
OTP-17222, OTP-17226, OTP-17236, OTP-17243,
OTP-17257, OTP-17259, OTP-17260, OTP-17262,
OTP-17263, OTP-17266, OTP-17267, OTP-17270,
OTP-17272, OTP-17275, OTP-17276, OTP-17277,
OTP-17278, OTP-17284, OTP-17286, OTP-17287,
OTP-17288
Seq num: ERIERL-537, ERIERL-619, ERL-1113, ERL-1281,
ERL-1308, ERL-1313, ERL-1332, ERL-1335,
ERL-1348, ERL-1354, ERL-1367, ERL-1378,
ERL-1379, ERL-1380, ERL-1381, ERL-1418,
ERL-1430, ERL-1431, ERL-1450, ERL-1480,
ERL-892, GH-4019, GH-4033, GH-4360, GH-4469,
GH-4473, GH-4493, GH-4544, GH-4588, GH-4621,
GH-4626
System: OTP
Release: 24
Application: asn1-5.1, common_test-1.20.1, compiler-8.0,
crypto-5.0, debugger-5.1, dialyzer-4.4,
edoc-1.0, erl_docgen-1.1, erl_interface-5.0,
erts-12.0, et-1.7, ftp-1.1, inets-7.4,
jinterface-1.12, kernel-8.0, megaco-4.0,
mnesia-4.19.1, observer-2.9.6, odbc-2.13.4,
os_mon-2.7, parsetools-2.3, reltool-0.9,
runtime_tools-1.16.1, sasl-4.1, snmp-5.8.1,
ssh-4.12, ssl-10.4, stdlib-3.15,
syntax_tools-2.6, tftp-1.0.3, tools-3.5,
wx-2.0, xmerl-1.4
Predecessor: OTP
Check out the git tag OTP-24.0, and build a full OTP system including
documentation.
---------------------------------------------------------------------
--- HIGHLIGHTS ------------------------------------------------------
---------------------------------------------------------------------
OTP-15523 Application(s): ftp
Related Id(s): OTP-15352, PR-1968
Add support for FTPES (explicit FTP over TLS).
OTP-16611 Application(s): kernel
Related Id(s): OTP-16749
A compatibility adaptor for gen_tcp to use the new
socket API has been implemented (gen_tcp_socket). Used
when setting the kernel application variable
inet_backend = socket.
OTP-16686 Application(s): debugger, erts, kernel, stdlib
Extended error information for failing BIF calls as
proposed in EEP 54 has been implemented.
When a BIF call from the Erlang shell fails, more
information about which argument or arguments that were
in error will be printed. The same extended error
information will by proc_lib, common_test, and qlc when
BIF calls fail.
For applications that wish to provide the same extended
error information, there are new functions
erl_error:format_exception/3 and
erl_error:format_exception/4.
There is a new error/3 BIF that allows applications or
libraries to provide extended error information in the
same way for their own exceptions.
OTP-16706 Application(s): compiler
Related Id(s): ERL-1281
Variables bound between the keywords 'try' and 'of' can
now be used in the clauses following the 'of' keyword
(that is, in the success case when no exception was
raised).
OTP-16718 Application(s): erts, kernel, stdlib
Related Id(s): PR-2735
Process aliases as outlined by EEP 53 has been
introduced. Process aliases is introduced in order to
provide a lightweight mechanism that can prevent late
replies after timeout or connection loss. For more
information, see EEP 53 and the documentation of the
new alias/1 BIF and the new options to the monitor/3
BIF.
The call operation in the framework used by gen_server,
gen_statem, and gen_event has been updated to utilize
alias in order to prevent late responses. The
gen_statem behavior still use a proxy process in the
distributed case, since it has always prevented late
replies and aliases wont work against pre OTP 24 nodes.
The proxy process can be removed in OTP 26.
The alias feature also made it possible to introduce
new functions similar to the erpc:receive_response()
function in the gen behaviors, so the new functions
gen_server:receive_response(),
gen_statem:receive_response(),
gen_event:receive_response() have also been introduced.
OTP-16800 Application(s): wx
The application has been completely rewritten in order
to use wxWidgets version 3 as its base.
Add basic documentation generated from the wxWidgets
project.
OTP-16824 Application(s): compiler
Related Id(s): PR-2664, PR-3006
*** POTENTIAL INCOMPATIBILITY ***
Compiler warnings and errors now include column numbers
in addition to line numbers.
When a compiler message is emitted, the source line is
printed along with a marker (a ^ character) that
indicates the column position of the issue. The option
'brief' removes the printout of the source line.
The compiler option {error_location, line | column} has
been added. The default value is column. Besides adding
column numbers to compilation warnings and errors, the
option also determines whether column numbers are
included in abstract code. If tools stop working,
setting the environment variable ERL_COMPILER_OPTIONS
can help (include {error_location, line}).
The compiler will now call the function
PT:parse_transform_info/0 in parse transforms (if it
exists). It can be used by parse transforms to signal
that they can only handle line numbers in abstract
code.
OTP-16885 Application(s): erts
Related Id(s): PR-2745
The BeamAsm JIT-compiler has been added to Erlang/OTP.
The JIT-compiler is enabled by default on most x86
64-bit platforms that have a C++ compiler that can
compile C++17. To verify that a JIT enabled emulator is
running you can use erlang:system_info(emu_flavor).
For more information see the internal documentation of
BeamAsm in erts.
OTP-16949 Application(s): edoc
Related Id(s): OTP-17192, PR-2803
*** POTENTIAL INCOMPATIBILITY ***
EDoc, the Erlang documentation engine, hits version 1.0
with this release, which means a few changes.
EDoc is now capable of emitting EEP-48 doc chunks. This
means that, with some configuration, community projects
can now provide documentation for shell_docs the same
way that OTP libraries did since OTP 23.0.
The @spec and @type EDoc tags have been deprecated.
These are not supported with the new chunk-generating
doclet and layout. Moreover, previously when there was
a redundant @spec tag and -spec attribute defined for
the same function, the @spec tag would take precedence.
Now, the -spec attribute takes precedence and is more
important. The same is true for redundant @type tags
and -type attributes. Warnings are now emitted when
such redundant entries are found.
See the Doc chunks chapter in the Edoc User's Guide for
more details.
OTP-16964 Application(s): compiler
Generators in list and binary comprehensions will now
raise a {bad_generator,Generator} exception if the
generator has an incorrect type (instead of raising an
ad-hoc badarg or badarih exception). Similarly, when a
filter does not evaluate to a boolean, a
{bad_filter,Filter} exception will be raised. Some
minor bugs in the compilation of binary comprehensions
have also been fixed.
OTP-16981 Application(s): compiler
Related Id(s): ERL-1113
Some compiler warnings, such as the warning for an
expression whose result is ignored, could not be
suppressed by assigning to a variable beginning with
'_', but only by assigning to the anonymous variable
('_'). This has now been changed so that any warning
that can be suppressed by assigning to the anonymous
variable can also be suppressed by assigning to a
variable beginning with '_'.
OTP-17044 Application(s): ssl
Related Id(s): PR-2654
Make TLS handshakes in Erlang distribution concurrent.
OTP-17213 Application(s): wx
Related Id(s): PR-3027
Added support for wxWebView.
OTP-17226 Application(s): compiler
Related Id(s): GH-4019, PR-4545
The compiler will now inline funs that are used only
once immediately after their definition.
---------------------------------------------------------------------
--- POTENTIAL INCOMPATIBILITIES -------------------------------------
---------------------------------------------------------------------
OTP-15107 Application(s): stdlib
Related Id(s): ERL-1381, PR-2813
Time-outs in gen_statem with relative time 0 did not
behave quite according to the intended model. This has
now been corrected.
The correction introduces a small potential
incompatibility e.g when combining a state time-out
with inserted events, and the inserted event does a
state change in the state with the time-out. Before
this correction the state time-out could be delivered
even after the second state change, but now it is
guaranteed that a state time-out is only delivered in
the state it was started for, even in this corner case.
OTP-16560 Application(s): megaco
All the pre-v3 codec(s) (prev3a, prev3b and prev3c) was
deprecated in OTP-23.0. They have now been removed.
OTP-16656 Application(s): crypto
The functions and cipher names that were deprecated in
OTP-23.0 are now removed.
OTP-16749 Application(s): erts, kernel
Related Id(s): OTP-14601
The experimental new socket API has been further
developed. Some backwards incompatible changes with
respect to OTP 23 have been made.
The control message format has been changed so a
decoded value is now in the 'value' field instead of in
the 'data' field. The 'data' field now always contains
binary data.
Some type names have been changed regarding message
headers and control message headers.
socket:bind/2 now returns plain ok instead of {ok,
Port} which was only relevant for the inet and inet6
address families and often not interesting. To find out
which port was chosen use socket:sockname/1.
OTP-16809 Application(s): kernel
Related Id(s): ERL-1313
Change the value of the tag head returned by
disk_log:info/1 from {ok, Head} to just Head.
OTP-16811 Application(s): kernel
Remove the support for distributed disk logs. The new
function disk_log:all/0 is to be used instead of
disk_log:accessible_logs/0. The function
disk_log:close/1 is to be used instead of
disk_log:lclose/1,2.
OTP-16824 Application(s): compiler
Related Id(s): PR-2664, PR-3006
*** HIGHLIGHT ***
Compiler warnings and errors now include column numbers
in addition to line numbers.
When a compiler message is emitted, the source line is
printed along with a marker (a ^ character) that
indicates the column position of the issue. The option
'brief' removes the printout of the source line.
The compiler option {error_location, line | column} has
been added. The default value is column. Besides adding
column numbers to compilation warnings and errors, the
option also determines whether column numbers are
included in abstract code. If tools stop working,
setting the environment variable ERL_COMPILER_OPTIONS
can help (include {error_location, line}).
The compiler will now call the function
PT:parse_transform_info/0 in parse transforms (if it
exists). It can be used by parse transforms to signal
that they can only handle line numbers in abstract
code.
OTP-16878 Application(s): erts
The code loader has been rewritten in order to be able
to load JIT:ed code. As a consequence of this, it is no
longer possible to load HiPE code.
OTP-16943 Application(s): os_mon
Related Id(s): OTP-16906
The temporarily introduced configuration parameter
memsup_improved_system_memory_data has been removed.
OTP-16945 Application(s): erts
Change escripts to output any errors or warnings to
standard error instead of standard out.
OTP-16949 Application(s): edoc
Related Id(s): OTP-17192, PR-2803
*** HIGHLIGHT ***
EDoc, the Erlang documentation engine, hits version 1.0
with this release, which means a few changes.
EDoc is now capable of emitting EEP-48 doc chunks. This
means that, with some configuration, community projects
can now provide documentation for shell_docs the same
way that OTP libraries did since OTP 23.0.
The @spec and @type EDoc tags have been deprecated.
These are not supported with the new chunk-generating
doclet and layout. Moreover, previously when there was
a redundant @spec tag and -spec attribute defined for
the same function, the @spec tag would take precedence.
Now, the -spec attribute takes precedence and is more
important. The same is true for redundant @type tags
and -type attributes. Warnings are now emitted when
such redundant entries are found.
See the Doc chunks chapter in the Edoc User's Guide for
more details.
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
OTP-16968 Application(s): kernel
The pg2 module has been removed.
OTP-16970 Application(s): erl_interface
The registry functionality part of erl_interface has
been removed. It was as of OTP 23 deprecated and
scheduled for removal in OTP 24.
OTP-16971 Application(s): stdlib
The filename:src/1 function which was deprecated in OTP
20 has been removed. Use filelib:find_source/1,3
instead.
OTP-16974 Application(s): ssl
Removed ssl:ssl_accept/1,2,3 and ssl:cipher:suites/0,1
use ssl:handshake/1,2,3 and ssl:cipher_suites/2,3
instead.
OTP-16987 Application(s): erts
The erlang:monitor_node/2 BIF will now fail with a
notalive exception if distribution has not been started
on the current node; it used to fail with a badarg
exception.
OTP-17062 Application(s): kernel
Related Id(s): ERIERL-537, ERL-1418, GH-4469
Let disk_log:open/1 change the size if a wrap log is
opened for the first time, that is, the disk log
process does not exist, and the value of option size
does not match the current size of the disk log.
OTP-17156 Application(s): kernel
Fix various issues with the gen_tcp_socket. Including
documenting some incompatibilities.
OTP-17216 Application(s): kernel
Related Id(s): PR-2989
The behaviour for gen_tcp:connect/3,4 has been changed
to not per default bind to an address, which allows the
network stack to delay the address and port selection
to when the remote address is known. This allows better
port re-use, and thus enables far more outgoing
connections, since the ephemeral port range no longer
has to be a hard limit.
There is a theoretical possibility that this behaviour
change can affect the set of possible error values, or
have other small implications on some platforms.
OTP-17219 Application(s): wx
Related Id(s): OTP-16800
Due to the support of the new backend versions some API
incompatibilities have been introduced. Examples of
changes are:
wxWindowDC default creators have been removed
wxClientDC default creators have been removed
wxPaintDC default creators have been removed
wxWindow:setVirtualSizeHints() has been deprecated in
wxWidgets and removed
wxWindow:makeModal() has been deprecated in wxWidgets
and removed
wxToolBar:add/insertTool without label have been
deprecated in wxWidgets and removed
wxStyledTextCtrl some functions have changed arguments
from boolean to int
wxSizerItem:new() Some arguments have become options
Removed deprecated wxSizerItem:setWindow() use
assignWindow()
Removed deprecated wxSizerItem:setSpacer() use
assignSpacer()
Removed deprecated wxSizerItem:setSpacer() use
assignSpacer()
Removed deprecated wxSizerItem:setSizer() use
assignSizer()
wxMenu append/insert/prepend have changed return value
and lost IsCheckable argument
wxListCtrl:setItem/4 changed return value
wxImage:convertToGreyscale() options have changed
wxGridSizer:wxGridSizer() options have changed
wxGrid API have many changes
wxGraphicsRenderer:create*GradientBrush() uses
GradientStops now
wxGraphicsRenderer:createPen() have been removed
wxGraphicsRenderer:create*GradientBrush() uses
GradientStops now
wxGLCanvas API is incompatible
wxFlexGridSizer:wxFlexGridSizer() options have changed
wxDisplay:new() options have changed
wxCalendarDateAttr:new(ColText [,OptList]) have been
removed
wxBitmapButton:set/getBitmapSelected() have been
removed
OTP-17259 Application(s): ssh
Related Id(s): ERIERL-619, OTP-16511
The RSA SHA1 sign/verify variants are disabled by
default. That is, ssh-rsa is disabled by default as
well as the SHA1 sign/verify with RSA keys from id_rsa
and ssh_host_rsa_key. All SHA2 sign/verify are enabled
by default.
The reason is that SHA1 is now considered easy to
break.
To enable RSA with SHA1, for example for a very old and
unsafe peer, see Example 9 in the User's Guide chapter
Configuring algorithms in SSH.
OTP-17275 Application(s): erts
Related Id(s): PR-4553
The erl command line arguments +Bi, +Bd, and +B
erroneously caused reception of the USR1 signal to
terminate the runtime system without creating a crash
dump. Reception of the USR1 signal now always cause
termination *with* creation of a crash dump, regardless
of command line arguments passed. This bug has existed
at least since OTP R5B.
---------------------------------------------------------------------
--- OTP-24.0 --------------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-17272 Application(s): otp
Related Id(s): GH-4626, PR-4627
Updated autoconf auxiliary files.
OTP-17278 Application(s): otp
Related Id(s): GH-4621
Do not allow a mandatory application to be disabled
using the configure switch --without-appname.
---------------------------------------------------------------------
--- asn1-5.1 --------------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-17123 Application(s): asn1, compiler, et, xmerl
The compiler will now emit warnings when (previously
bound) underscore-prefixed variables are matched.
Full runtime dependencies of asn1-5.1: erts-7.0, kernel-3.0,
stdlib-2.0
---------------------------------------------------------------------
--- common_test-1.20.1 ----------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-16940 Application(s): common_test
Related Id(s): ERL-1335
The option release_shell could crash when used together
with the spec option.
--- Improvements and New Features ---
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
Full runtime dependencies of common_test-1.20.1: compiler-6.0,
crypto-3.6, debugger-4.1, erts-7.0, ftp-1.0.0, inets-6.0, kernel-4.0,
observer-2.1, runtime_tools-1.8.16, sasl-2.4.2, snmp-5.1.2, ssh-4.0,
stdlib-3.5, syntax_tools-1.7, tools-2.8, xmerl-1.3.8
---------------------------------------------------------------------
--- compiler-8.0 ----------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-17077 Application(s): compiler, erts, stdlib
Related Id(s): ERL-1431, PR-2903, PR-2905, PR-2906
A floating point zero (0.0) can be both positive (+0.0)
and negative (-0.0). Multiple bugs in the compiler,
runtime system, and STDLIB have been fixed to ensure
that the minus sign on 0.0 is not lost.
OTP-17104 Application(s): compiler
Related Id(s): ERL-1380
A repeated stack trace variable in a try/catch was not
rejected. The following example will now cause a
compilation error:
try E catch _:A:A -> A end.
OTP-17118 Application(s): compiler, stdlib
Related Id(s): PR-2825
Eliminated a Dialyzer crashed when the -MMD option is
used to generate a dependency file and a BEAM file a
the same time.
OTP-17206 Application(s): compiler
When the makedep option was given, the compiler would
crash if the dependency output contained non-latin1
characters. The compiler will now output the dependency
information encoded in UTF-8 to avoid crashing.
--- Improvements and New Features ---
OTP-10391 Application(s): compiler
Related Id(s): OTP-16226
Selective receive optimization will now be applied much
more often.
The new recv_opt_info compile flag can be used to print
diagnostics relating to this optimization.
You can read more about the selective receive
optimization in the Efficiency Guide.
OTP-16334 Application(s): compiler
erlang:throw/1 will no longer build stack traces when
we can prove that they will never be inspected.
OTP-16706 Application(s): compiler
Related Id(s): ERL-1281
*** HIGHLIGHT ***
Variables bound between the keywords 'try' and 'of' can
now be used in the clauses following the 'of' keyword
(that is, in the success case when no exception was
raised).
OTP-16824 Application(s): compiler
Related Id(s): PR-2664, PR-3006
*** HIGHLIGHT ***
*** POTENTIAL INCOMPATIBILITY ***
Compiler warnings and errors now include column numbers
in addition to line numbers.
When a compiler message is emitted, the source line is
printed along with a marker (a ^ character) that
indicates the column position of the issue. The option
'brief' removes the printout of the source line.
The compiler option {error_location, line | column} has
been added. The default value is column. Besides adding
column numbers to compilation warnings and errors, the
option also determines whether column numbers are
included in abstract code. If tools stop working,
setting the environment variable ERL_COMPILER_OPTIONS
can help (include {error_location, line}).
The compiler will now call the function
PT:parse_transform_info/0 in parse transforms (if it
exists). It can be used by parse transforms to signal
that they can only handle line numbers in abstract
code.
OTP-16867 Application(s): compiler
Related Id(s): ERL-1354
Fixed a performance bug that made functions with lots
of try/after blocks slow to compile.
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
OTP-16964 Application(s): compiler
*** HIGHLIGHT ***
Generators in list and binary comprehensions will now
raise a {bad_generator,Generator} exception if the
generator has an incorrect type (instead of raising an
ad-hoc badarg or badarih exception). Similarly, when a
filter does not evaluate to a boolean, a
{bad_filter,Filter} exception will be raised. Some
minor bugs in the compilation of binary comprehensions
have also been fixed.
OTP-16981 Application(s): compiler
Related Id(s): ERL-1113
*** HIGHLIGHT ***
Some compiler warnings, such as the warning for an
expression whose result is ignored, could not be
suppressed by assigning to a variable beginning with
'_', but only by assigning to the anonymous variable
('_'). This has now been changed so that any warning
that can be suppressed by assigning to the anonymous
variable can also be suppressed by assigning to a
variable beginning with '_'.
OTP-17078 Application(s): compiler
Related Id(s): ERL-1430, PR-2918
The previously undocumented compiler options
warn_missing_spec and warn_missing_spec_all are now
documented.
OTP-17123 Application(s): asn1, compiler, et, xmerl
The compiler will now emit warnings when (previously
bound) underscore-prefixed variables are matched.
OTP-17168 Application(s): compiler
Erlang source files not encoded in utf-8 will no longer
be accepted by the compiler unless it contains a
"coding: latin-1" comment.
OTP-17172 Application(s): compiler
New compiler options from_abstr and no_lint have been
added. They are useful when implementing other
languages running on the BEAM.
OTP-17207 Application(s): compiler, erts
The bit matching and construction syntax now supports
16-bit floats (IEEE 754-2008).
OTP-17226 Application(s): compiler
Related Id(s): GH-4019, PR-4545
*** HIGHLIGHT ***
The compiler will now inline funs that are used only
once immediately after their definition.
OTP-17260 Application(s): compiler
It is now possible to disable warnings emitted from the
compiler's optimization passes with the new options
nowarn_opportunistic, nowarn_nomatch, nowarn_ignored,
and nowarn_failed.
Full runtime dependencies of compiler-8.0: crypto-3.6, erts-11.0,
kernel-7.0, stdlib-3.13
---------------------------------------------------------------------
--- crypto-5.0 ------------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-16882 Application(s): crypto
Add /usr/local/opt/openssl to the openssl configure
search path. This path is where some tools on OS X
place openssl.
OTP-17105 Application(s): crypto, erts, odbc, wx
Related Id(s): PR-2872
Fix compiler warnings produced by the clang compiler.
--- Improvements and New Features ---
OTP-16656 Application(s): crypto
*** POTENTIAL INCOMPATIBILITY ***
The functions and cipher names that were deprecated in
OTP-23.0 are now removed.
OTP-17001 Application(s): crypto
Related Id(s): PR-2852
Removed installed directory priv/obj/ containing
superfluous object files.
Full runtime dependencies of crypto-5.0: erts-9.0, kernel-5.3,
stdlib-3.4
---------------------------------------------------------------------
--- debugger-5.1 ----------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16686 Application(s): debugger, erts, kernel, stdlib
*** HIGHLIGHT ***
Extended error information for failing BIF calls as
proposed in EEP 54 has been implemented.
When a BIF call from the Erlang shell fails, more
information about which argument or arguments that were
in error will be printed. The same extended error
information will by proc_lib, common_test, and qlc when
BIF calls fail.
For applications that wish to provide the same extended
error information, there are new functions
erl_error:format_exception/3 and
erl_error:format_exception/4.
There is a new error/3 BIF that allows applications or
libraries to provide extended error information in the
same way for their own exceptions.
Full runtime dependencies of debugger-5.1: compiler-5.0, erts-9.0,
kernel-5.3, stdlib-3.4, wx-1.2
---------------------------------------------------------------------
--- dialyzer-4.4 ----------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16883 Application(s): dialyzer
Some internal HiPE modules have been moved into the
dialyzer application so that dialyzer works when HiPE
is disabled.
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
OTP-16986 Application(s): dialyzer
Related Id(s): ERL-1379, ERL-1480, GH-4033
Add warning option no_underspecs.
OTP-16995 Application(s): dialyzer
Related Id(s): ERL-1348
Report filename and location for warnings returned due
to the -Wunknown option. When used from the
command-line, one location per file is printed.
OTP-17084 Application(s): dialyzer
Add types and specifications for documentation.
OTP-17177 Application(s): dialyzer
Related Id(s): OTP-16824
Add option error_location. The option is recognized if
included in the environment variable
ERL_COMPILER_OPTIONS.
OTP-17183 Application(s): dialyzer
Related Id(s): ERL-892, GH-4493
Clarify how to declare records used in match patterns.
Full runtime dependencies of dialyzer-4.4: compiler-7.0, erts-9.0,
kernel-5.3, stdlib-3.4, syntax_tools-2.0, wx-1.2
---------------------------------------------------------------------
--- edoc-1.0 --------------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-17092 Application(s): edoc
Fix so that the edoc_doclet option file_suffix also
effects the links emitted into the module index.
--- Improvements and New Features ---
OTP-16949 Application(s): edoc
Related Id(s): OTP-17192, PR-2803
*** HIGHLIGHT ***
*** POTENTIAL INCOMPATIBILITY ***
EDoc, the Erlang documentation engine, hits version 1.0
with this release, which means a few changes.
EDoc is now capable of emitting EEP-48 doc chunks. This
means that, with some configuration, community projects
can now provide documentation for shell_docs the same
way that OTP libraries did since OTP 23.0.
The @spec and @type EDoc tags have been deprecated.
These are not supported with the new chunk-generating
doclet and layout. Moreover, previously when there was
a redundant @spec tag and -spec attribute defined for
the same function, the @spec tag would take precedence.
Now, the -spec attribute takes precedence and is more
important. The same is true for redundant @type tags
and -type attributes. Warnings are now emitted when
such redundant entries are found.
See the Doc chunks chapter in the Edoc User's Guide for
more details.
OTP-17095 Application(s): edoc
Related Id(s): PR-2914
Edoc has been updated to use -spec to document its own
interface instead of @doc@ tags.
Together with this change the inter-application linking
for -spec style documentation has been improved.
OTP-17153 Application(s): edoc
Related Id(s): PR-2674
Allow user defined edoc macros to be functions.
Full runtime dependencies of edoc-1.0: erts-6.0, inets-5.10,
kernel-3.0, stdlib-3.15, syntax_tools-1.6.14, xmerl-1.3.7
---------------------------------------------------------------------
--- erl_docgen-1.1 --------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-17122 Application(s): erl_docgen, stdlib
Fixed bug in shell_docs and erl_docgen that interpreted
em tags as strong.
OTP-17243 Application(s): erl_docgen, ftp, kernel, ssh, ssl,
tftp
Related Id(s): PR-4557
Missing runtime dependencies has been added to this
application.
OTP-17257 Application(s): erl_docgen
Fix bug where see* elements within type/name were
removed when generating html. Bug has been present
since OTP-21.
--- Improvements and New Features ---
OTP-16877 Application(s): erl_docgen
Add support for displaying .svg images.
OTP-17192 Application(s): erl_docgen
Related Id(s): PR-2803
Updated the way specs are generated after changes in
edoc.
Full runtime dependencies of erl_docgen-1.1: edoc-1.0, erts-9.0,
kernel-8.0, stdlib-3.15, xmerl-1.3.7
---------------------------------------------------------------------
--- erl_interface-5.0 -----------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16720 Application(s): erl_interface, erts, jinterface
Related Id(s): PR-2680
Accept 64-bit process identifiers from external nodes.
This is the first step in an upgrade path toward using
64-bit pids in a future OTP release.
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
OTP-16970 Application(s): erl_interface
*** POTENTIAL INCOMPATIBILITY ***
The registry functionality part of erl_interface has
been removed. It was as of OTP 23 deprecated and
scheduled for removal in OTP 24.
OTP-17005 Application(s): erl_interface, erts, jinterface,
kernel, stdlib
Related Id(s): OTP-16718
Accept references up to a size of 160-bits from remote
nodes. This is the first step in an upgrade path toward
using references up to 160-bits in a future OTP
release.
OTP-17007 Application(s): erl_interface, erts, jinterface
Accept 64-bit port identifiers from external nodes.
This is the first step in an upgrade path toward using
64-bit port identifiers in a future OTP release.
OTP-17270 Application(s): erl_interface
Related Id(s): OTP-17127
Support the new link protocol in order to be able to
phase out the old link protocol in the future.
erl_interface does not support setting up or removing
links from the erl_interface side, so the bug present
with the old protocol did not effect erl_interface.
This since both participants of a link simultaneously
needed to operate on the link in order to trigger the
bug.
--- Known Bugs and Problems ---
OTP-16607 Application(s): erl_interface
Related Id(s): OTP-16608
The ei API for decoding/encoding terms is not fully
64-bit compatible since terms that have a
representation on the external term format larger than
2 GB cannot be handled.
---------------------------------------------------------------------
--- erts-12.0 -------------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-16822 Application(s): erts
Related Id(s): PR-2723
file:open/2 now throws an badarg error when opened with
both the ram and raw options.
OTP-16879 Application(s): erts
The estone benchmark has been updated to better reflect
changes in the compiler and run-time system.
OTP-16880 Application(s): erts
Fix profile guided optimization of run-time system when
using GCC 7 or later.
OTP-16884 Application(s): erts
Fix double close of fd when creating crash dump.
OTP-17014 Application(s): erts
Improve erl error message when unable to open included
args_file.
OTP-17020 Application(s): erts
Remove warning text about the -- operation from
documentation
The -- operation was optimized in Erlang/OTP 22 so that
its worst case complexity is O(N*log(N)), where N is
the total size of the input lists. Therefore, the
warning in the documentation saying that the time
complexity is proportional to length(A)*length(B) is
incorrect and is no longer needed. Notice that
Erlang/OTP 21 will no longer be supported when
Erlang/OTP 24 gets released.
OTP-17077 Application(s): compiler, erts, stdlib
Related Id(s): ERL-1431, PR-2903, PR-2905, PR-2906
A floating point zero (0.0) can be both positive (+0.0)
and negative (-0.0). Multiple bugs in the compiler,
runtime system, and STDLIB have been fixed to ensure
that the minus sign on 0.0 is not lost.
OTP-17105 Application(s): crypto, erts, odbc, wx
Related Id(s): PR-2872
Fix compiler warnings produced by the clang compiler.
OTP-17131 Application(s): erts
Related Id(s): GH-4360, PR-3031
Windows process erl.exe killed if its service process
erlsrv.exe terminates.
OTP-17275 Application(s): erts
Related Id(s): PR-4553
*** POTENTIAL INCOMPATIBILITY ***
The erl command line arguments +Bi, +Bd, and +B
erroneously caused reception of the USR1 signal to
terminate the runtime system without creating a crash
dump. Reception of the USR1 signal now always cause
termination *with* creation of a crash dump, regardless
of command line arguments passed. This bug has existed
at least since OTP R5B.
--- Improvements and New Features ---
OTP-14601 Application(s): erts, kernel
Related Id(s): OTP-16749, PR-2641, PR-2670
The experimental socket module can now use any protocol
(by name) the OS supports. Suggested in PR-2641,
implemented in PR-2670.
OTP-16653 Application(s): erts
The deprecated function erlang:get_stacktrace/0 has
been removed. Use the new syntax in try/catch to
retrieve the stack backtrace.
OTP-16678 Application(s): erts, stdlib, syntax_tools, tools
Related Id(s): PR-2627
Support for handling abstract code created before OTP
R15 has been dropped.
OTP-16686 Application(s): debugger, erts, kernel, stdlib
*** HIGHLIGHT ***
Extended error information for failing BIF calls as
proposed in EEP 54 has been implemented.
When a BIF call from the Erlang shell fails, more
information about which argument or arguments that were
in error will be printed. The same extended error
information will by proc_lib, common_test, and qlc when
BIF calls fail.
For applications that wish to provide the same extended
error information, there are new functions
erl_error:format_exception/3 and
erl_error:format_exception/4.
There is a new error/3 BIF that allows applications or
libraries to provide extended error information in the
same way for their own exceptions.
OTP-16687 Application(s): erts
Related Id(s): PR-2762, PR-2996
The erlang module documentation has been updated to
improve clarity and description of edge cases.
OTP-16703 Application(s): erts, kernel
Related Id(s): PR-2620
An example implementation of Erlang distribution over
UDS using distribution processes has been introduced.
Thanks to Jérôme de Bretagne
OTP-16712 Application(s): erts
Improve code generation when creating funs by adding a
new beam instruction make_fun3 that does not do GC and
allows for better register allocation.
OTP-16718 Application(s): erts, kernel, stdlib
Related Id(s): PR-2735
*** HIGHLIGHT ***
Process aliases as outlined by EEP 53 has been
introduced. Process aliases is introduced in order to
provide a lightweight mechanism that can prevent late
replies after timeout or connection loss. For more
information, see EEP 53 and the documentation of the
new alias/1 BIF and the new options to the monitor/3
BIF.
The call operation in the framework used by gen_server,
gen_statem, and gen_event has been updated to utilize
alias in order to prevent late responses. The
gen_statem behavior still use a proxy process in the
distributed case, since it has always prevented late
replies and aliases wont work against pre OTP 24 nodes.
The proxy process can be removed in OTP 26.
The alias feature also made it possible to introduce
new functions similar to the erpc:receive_response()
function in the gen behaviors, so the new functions
gen_server:receive_response(),
gen_statem:receive_response(),
gen_event:receive_response() have also been introduced.
OTP-16720 Application(s): erl_interface, erts, jinterface
Related Id(s): PR-2680
Accept 64-bit process identifiers from external nodes.
This is the first step in an upgrade path toward using
64-bit pids in a future OTP release.
OTP-16749 Application(s): erts, kernel
Related Id(s): OTP-14601
*** POTENTIAL INCOMPATIBILITY ***
The experimental new socket API has been further
developed. Some backwards incompatible changes with
respect to OTP 23 have been made.
The control message format has been changed so a
decoded value is now in the 'value' field instead of in
the 'data' field. The 'data' field now always contains
binary data.
Some type names have been changed regarding message
headers and control message headers.
socket:bind/2 now returns plain ok instead of {ok,
Port} which was only relevant for the inet and inet6
address families and often not interesting. To find out
which port was chosen use socket:sockname/1.
OTP-16788 Application(s): erts
Remove old unused +MYm and ERL_MALLOC_LIB options.
OTP-16814 Application(s): erts
Related Id(s): PR-2704
Increase timer resolution on windows.
OTP-16878 Application(s): erts
*** POTENTIAL INCOMPATIBILITY ***
The code loader has been rewritten in order to be able
to load JIT:ed code. As a consequence of this, it is no
longer possible to load HiPE code.
OTP-16881 Application(s): erts
Add support in the Erlang/OTP build system to generate
a compilation database that can be used by third-party
tools (such as irony in Emacs) to compile the erts C
and C++ source code. Create the database using make
compdb.
OTP-16885 Application(s): erts
Related Id(s): PR-2745
*** HIGHLIGHT ***
The BeamAsm JIT-compiler has been added to Erlang/OTP.
The JIT-compiler is enabled by default on most x86
64-bit platforms that have a C++ compiler that can
compile C++17. To verify that a JIT enabled emulator is
running you can use erlang:system_info(emu_flavor).
For more information see the internal documentation of
BeamAsm in erts.
OTP-16898 Application(s): erts
Related Id(s): OTP-16856
By default all ERTS internal memory allocators based on
alloc_util will now use their own separate carrier pool
for migration of carriers instead of using a node
global carrier pool. This was the default behavior
between OTP 17 and OTP 21, but changed to use a node
global carrier pool as of OTP 22.0. Usage of the node
global carrier pool proved troublesome since it had a
tendency to spread long lived blocks into allocators
with normally short lived blocks causing increased
memory fragmentation. The node global carrier pool
behavior as well as other behaviors can be configured
using the +M<S>cp command line argument.
OTP-16936 Application(s): erts, stdlib
Related Id(s): ERL-1367
New functions have been added to the maps module:
merge_with/3, intersect/2, intersect_with/3,
filtermap/2, from_keys/2, and maps:foreach/2.
maps:merge_with/3 is the same as merge/2 but takes an
extra fun that is used to combine items with the same
key.
maps:intersect/2 computes the intersection of two maps.
maps:intersect_with/3 is the same as intersect/2 but
takes an extra fun that is used to combine intersecting
items.
maps:filtermap/2 allows filtering and mapping of a map
in a single pass.
maps:from_keys/2 constructs a map from a list of keys
and a single value and can be used to to optimize sets
operations such as from_list/1, filter/2,
intersection/2, and subtract/2.
maps:foreach/2 allows iteration over a map without
returning any value.
OTP-16945 Application(s): erts
*** POTENTIAL INCOMPATIBILITY ***
Change escripts to output any errors or warnings to
standard error instead of standard out.
OTP-16952 Application(s): erts, kernel
A new erl parameter for specifying a file descriptor
with configuration data has been added. This makes it
possible to pass the parameter "-configfd FD" when
executing the erl command. When this option is given,
the system will try to read and parse configuration
parameters from the file descriptor.
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
OTP-16980 Application(s): erts, stdlib
Related Id(s): ERL-1308
The pretty printer for floating point number have been
changed to make it easier to see if the integer part of
the number has been rounded. After the change the digit
that may have been rounded always appears last or just
before the exponent character (e or E). This is
accomplished by always printing the number using
scientific notation if it is so large that the integer
part could be rounded.
OTP-16987 Application(s): erts
*** POTENTIAL INCOMPATIBILITY ***
The erlang:monitor_node/2 BIF will now fail with a
notalive exception if distribution has not been started
on the current node; it used to fail with a badarg
exception.
OTP-17005 Application(s): erl_interface, erts, jinterface,
kernel, stdlib
Related Id(s): OTP-16718
Accept references up to a size of 160-bits from remote
nodes. This is the first step in an upgrade path toward
using references up to 160-bits in a future OTP
release.
OTP-17007 Application(s): erl_interface, erts, jinterface
Accept 64-bit port identifiers from external nodes.
This is the first step in an upgrade path toward using
64-bit port identifiers in a future OTP release.
OTP-17028 Application(s): erts
One can now pass the ERL_ROOTDIR environment variable
to the erl and start scrips. This makes it easier to
use Erlang for Android apps. On Android, apps don't
control where they will be installed.
OTP-17057 Application(s): erts, stdlib
All long running functions in the maps API are now
yielding. In previous releases the functions
maps:from_list/1, maps:keys/1 and maps:values/1 did not
yield. This could cause unfair scheduling of processes.
OTP-17207 Application(s): compiler, erts
The bit matching and construction syntax now supports
16-bit floats (IEEE 754-2008).
Full runtime dependencies of erts-12.0: kernel-8.0, sasl-3.3,
stdlib-3.13
---------------------------------------------------------------------
--- et-1.7 ----------------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-17123 Application(s): asn1, compiler, et, xmerl
The compiler will now emit warnings when (previously
bound) underscore-prefixed variables are matched.
Full runtime dependencies of et-1.7: erts-9.0, kernel-5.3,
runtime_tools-1.10, stdlib-3.4, wx-1.2
---------------------------------------------------------------------
--- ftp-1.1 ---------------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-16926 Application(s): ftp
Related Id(s): ERL-1450, GH-4473
Use OTP supervisor as intended, avoiding surprising
behavior as the killing of the user's process. Also,
FTP state handling logic is improved to avoid race
conditions that could result in unexpected errors.
OTP-17243 Application(s): erl_docgen, ftp, kernel, ssh, ssl,
tftp
Related Id(s): PR-4557
Missing runtime dependencies has been added to this
application.
--- Improvements and New Features ---
OTP-15523 Application(s): ftp
Related Id(s): OTP-15352, PR-1968
*** HIGHLIGHT ***
Add support for FTPES (explicit FTP over TLS).
Full runtime dependencies of ftp-1.1: erts-7.0, kernel-6.0,
runtime_tools-1.15.1, ssl-10.2, stdlib-3.5
---------------------------------------------------------------------
--- inets-7.4 -------------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16722 Application(s): inets
Drop all support for ftp and tftp in inets code.
OTP-16723 Application(s): inets
Deprecate following functions in httpd_util module:
flatlength/1, lhexlist_to_integer/1,
integer_to_hexlist/1, strip/1, and suffix/1.
OTP-16724 Application(s): inets
Remove support of HTTP 0.9 in httpd.
OTP-16725 Application(s): inets
Remove support of HTTP 0.9 in httpc.
Full runtime dependencies of inets-7.4: erts-6.0, kernel-3.0,
mnesia-4.12, runtime_tools-1.8.14, ssl-5.3.4, stdlib-3.5
---------------------------------------------------------------------
--- jinterface-1.12 -------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16720 Application(s): erl_interface, erts, jinterface
Related Id(s): PR-2680
Accept 64-bit process identifiers from external nodes.
This is the first step in an upgrade path toward using
64-bit pids in a future OTP release.
OTP-17005 Application(s): erl_interface, erts, jinterface,
kernel, stdlib
Related Id(s): OTP-16718
Accept references up to a size of 160-bits from remote
nodes. This is the first step in an upgrade path toward
using references up to 160-bits in a future OTP
release.
OTP-17007 Application(s): erl_interface, erts, jinterface
Accept 64-bit port identifiers from external nodes.
This is the first step in an upgrade path toward using
64-bit port identifiers in a future OTP release.
OTP-17170 Application(s): jinterface
Related Id(s): PR-3005
Make OtpErlangExternalFun's fields module, function and
arity public.
---------------------------------------------------------------------
--- kernel-8.0 ------------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-14700 Application(s): kernel
Related Id(s): PR-2848
A bug has been fixed for the internal inet_res resolver
cache that handled a resolver configuration file status
timer incorrectly and caused performance problems due
to many unnecessary file system accesses.
OTP-16809 Application(s): kernel
Related Id(s): ERL-1313
*** POTENTIAL INCOMPATIBILITY ***
Change the value of the tag head returned by
disk_log:info/1 from {ok, Head} to just Head.
OTP-17243 Application(s): erl_docgen, ftp, kernel, ssh, ssl,
tftp
Related Id(s): PR-4557
Missing runtime dependencies has been added to this
application.
OTP-17262 Application(s): kernel
Related Id(s): GH-4588, OTP-16487, PR-4604
inet:get_rc/0 has been corrected to return host entries
as separate entries instead of (incorrectly) in a list
within the list. This bug was introduced by OTP-16487
in OTP-23.0-rc1.
OTP-17277 Application(s): kernel
The type gen_tcp:option_name() had a duplicate
pktoptions value.
OTP-17286 Application(s): kernel
Related Id(s): PR-4619
Fixed removal of empty groups from internal state in
pg.
OTP-17287 Application(s): kernel
Related Id(s): PR-4581
erl -remsh now prints an error message when it fails to
connect to the remote node.
OTP-17288 Application(s): kernel
Related Id(s): PR-4581
Fix bugs related to corrupt shell history files.
Error messages printed by shell history are now logged
as logger error reports instead of written to standard
error.
--- Improvements and New Features ---
OTP-13126 Application(s): kernel
Related Id(s): PR-3041
The cache used by the DNS resolver inet_res has been
improved to use ETS lookups instead of server calls.
This is a considerable speed improvement for cache
hits.
OTP-14485 Application(s): kernel
Related Id(s): PR-2891
The cache ETS table type for the internal DNS resolver
inet_res has changed type (internally) to get better
speed and atomicity.
OTP-14601 Application(s): erts, kernel
Related Id(s): OTP-16749, PR-2641, PR-2670
The experimental socket module can now use any protocol
(by name) the OS supports. Suggested in PR-2641,
implemented in PR-2670.
OTP-16517 Application(s): kernel
Related Id(s): PR-2827
The DNS resolver inet_res has been updated to support
CAA (RFC 6844) and URI (RFC 7553) records.
OTP-16611 Application(s): kernel
Related Id(s): OTP-16749
*** HIGHLIGHT ***
A compatibility adaptor for gen_tcp to use the new
socket API has been implemented (gen_tcp_socket). Used
when setting the kernel application variable
inet_backend = socket.
OTP-16686 Application(s): debugger, erts, kernel, stdlib
*** HIGHLIGHT ***
Extended error information for failing BIF calls as
proposed in EEP 54 has been implemented.
When a BIF call from the Erlang shell fails, more
information about which argument or arguments that were
in error will be printed. The same extended error
information will by proc_lib, common_test, and qlc when
BIF calls fail.
For applications that wish to provide the same extended
error information, there are new functions
erl_error:format_exception/3 and
erl_error:format_exception/4.
There is a new error/3 BIF that allows applications or
libraries to provide extended error information in the
same way for their own exceptions.
OTP-16698 Application(s): kernel
Related Id(s): PR-2634
The file server can now be bypassed in file:delete/1,2
with the raw option.
OTP-16703 Application(s): erts, kernel
Related Id(s): PR-2620
An example implementation of Erlang distribution over
UDS using distribution processes has been introduced.
Thanks to Jérôme de Bretagne
OTP-16718 Application(s): erts, kernel, stdlib
Related Id(s): PR-2735
*** HIGHLIGHT ***
Process aliases as outlined by EEP 53 has been
introduced. Process aliases is introduced in order to
provide a lightweight mechanism that can prevent late
replies after timeout or connection loss. For more
information, see EEP 53 and the documentation of the
new alias/1 BIF and the new options to the monitor/3
BIF.
The call operation in the framework used by gen_server,
gen_statem, and gen_event has been updated to utilize
alias in order to prevent late responses. The
gen_statem behavior still use a proxy process in the
distributed case, since it has always prevented late
replies and aliases wont work against pre OTP 24 nodes.
The proxy process can be removed in OTP 26.
The alias feature also made it possible to introduce
new functions similar to the erpc:receive_response()
function in the gen behaviors, so the new functions
gen_server:receive_response(),
gen_statem:receive_response(),
gen_event:receive_response() have also been introduced.
OTP-16749 Application(s): erts, kernel
Related Id(s): OTP-14601
*** POTENTIAL INCOMPATIBILITY ***
The experimental new socket API has been further
developed. Some backwards incompatible changes with
respect to OTP 23 have been made.
The control message format has been changed so a
decoded value is now in the 'value' field instead of in
the 'data' field. The 'data' field now always contains
binary data.
Some type names have been changed regarding message
headers and control message headers.
socket:bind/2 now returns plain ok instead of {ok,
Port} which was only relevant for the inet and inet6
address families and often not interesting. To find out
which port was chosen use socket:sockname/1.
OTP-16793 Application(s): kernel
Related Id(s): ERL-1332, PR-2740
New function os:env/0 returns all OS environment
variables as a list of 2-tuples.
OTP-16811 Application(s): kernel
*** POTENTIAL INCOMPATIBILITY ***
Remove the support for distributed disk logs. The new
function disk_log:all/0 is to be used instead of
disk_log:accessible_logs/0. The function
disk_log:close/1 is to be used instead of
disk_log:lclose/1,2.
OTP-16947 Application(s): kernel
Related Id(s): PR-2781
Expand the spec for erl_epmd:listen_port_please/2 to
mirror erl_epmd:port_please/2.
OTP-16952 Application(s): erts, kernel
A new erl parameter for specifying a file descriptor
with configuration data has been added. This makes it
possible to pass the parameter "-configfd FD" when
executing the erl command. When this option is given,
the system will try to read and parse configuration
parameters from the file descriptor.
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
OTP-16968 Application(s): kernel
*** POTENTIAL INCOMPATIBILITY ***
The pg2 module has been removed.
OTP-17005 Application(s): erl_interface, erts, jinterface,
kernel, stdlib
Related Id(s): OTP-16718
Accept references up to a size of 160-bits from remote
nodes. This is the first step in an upgrade path toward
using references up to 160-bits in a future OTP
release.
OTP-17015 Application(s): kernel
Allow utf-8 binaries as parts of logger_formatter
template.
OTP-17062 Application(s): kernel
Related Id(s): ERIERL-537, ERL-1418, GH-4469
*** POTENTIAL INCOMPATIBILITY ***
Let disk_log:open/1 change the size if a wrap log is
opened for the first time, that is, the disk log
process does not exist, and the value of option size
does not match the current size of the disk log.
OTP-17103 Application(s): kernel
Related Id(s): PR-2949
Allow the shell history of an erlang node to be fetched
and stores using a custom callback module. See
shell_history configuration parameter in the kernel
documentation for more details.
OTP-17106 Application(s): kernel
Related Id(s): PR-2885
The simple logger (used to log events that happen
before kernel has been started) has been improved to
print prettier error messages.
OTP-17156 Application(s): kernel
*** POTENTIAL INCOMPATIBILITY ***
Fix various issues with the gen_tcp_socket. Including
documenting some incompatibilities.
OTP-17181 Application(s): kernel
Related Id(s): PR-2457
Added support in logger for setting primary metadata.
The primary metadata is passed as a base metadata to
all log events in the system. See Metadata in the
Logger chapter of the Kernel User's Guide for more
details.
OTP-17189 Application(s): kernel, reltool, sasl
Related Id(s): PR-2675
Recognize new key 'optional_applications' in
application resource files.
OTP-17198 Application(s): kernel
Related Id(s): PR-2721
The Fun's passed to logger:log/2,3,4 can now return
metadata that will only be fetched when needed. See
logger:log/2,3,4 for more details.
OTP-17201 Application(s): kernel
Related Id(s): PR-4534
erpc:multicall() has been rewritten to be able to
utilize the newly introduced and improved
reference/receive optimization.
OTP-17203 Application(s): kernel
Related Id(s): OTP-17156
Add utility fiunction inet:info/1 to provide
miscellaneous info about a socket.
OTP-17216 Application(s): kernel
Related Id(s): PR-2989
*** POTENTIAL INCOMPATIBILITY ***
The behaviour for gen_tcp:connect/3,4 has been changed
to not per default bind to an address, which allows the
network stack to delay the address and port selection
to when the remote address is known. This allows better
port re-use, and thus enables far more outgoing
connections, since the ephemeral port range no longer
has to be a hard limit.
There is a theoretical possibility that this behaviour
change can affect the set of possible error values, or
have other small implications on some platforms.
OTP-17266 Application(s): kernel
Related Id(s): PR-4564
An option {nxdomain_reply, boolean()} has been
implemented in the DNS resolver inet_res. It is useful
since an nxdomain error from a name server does contain
the SOA record if the domain exists at all. This record
is useful to determine a TTL for negative caching of
the failed entry.
OTP-17284 Application(s): kernel
Related Id(s): PR-4615
Optimized lookup of local processes part of groups in
pg.
Full runtime dependencies of kernel-8.0: crypto-5.0, erts-12.0,
sasl-3.0, stdlib-3.13
---------------------------------------------------------------------
--- megaco-4.0 ------------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16560 Application(s): megaco
*** POTENTIAL INCOMPATIBILITY ***
All the pre-v3 codec(s) (prev3a, prev3b and prev3c) was
deprecated in OTP-23.0. They have now been removed.
OTP-17049 Application(s): megaco, snmp
Removed deprecated functions marked for removal.
Full runtime dependencies of megaco-4.0: asn1-3.0, debugger-4.0,
erts-7.0, et-1.5, kernel-3.0, runtime_tools-1.8.14, stdlib-2.5
---------------------------------------------------------------------
--- mnesia-4.19.1 ---------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-17217 Application(s): mnesia
Suppression of deprecation warnings has been added to
the source files of the Mnesia application.
Full runtime dependencies of mnesia-4.19.1: erts-9.0, kernel-5.3,
stdlib-3.4
---------------------------------------------------------------------
--- observer-2.9.6 --------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-17214 Application(s): observer
Updated gui parts to work with the new wx version.
Full runtime dependencies of observer-2.9.6: erts-11.0, et-1.5,
kernel-7.0, runtime_tools-1.8.14, stdlib-3.13, wx-1.2
---------------------------------------------------------------------
--- odbc-2.13.4 -----------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-17105 Application(s): crypto, erts, odbc, wx
Related Id(s): PR-2872
Fix compiler warnings produced by the clang compiler.
Full runtime dependencies of odbc-2.13.4: erts-6.0, kernel-3.0,
stdlib-2.0
---------------------------------------------------------------------
--- os_mon-2.7 ------------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16943 Application(s): os_mon
Related Id(s): OTP-16906
*** POTENTIAL INCOMPATIBILITY ***
The temporarily introduced configuration parameter
memsup_improved_system_memory_data has been removed.
OTP-16944 Application(s): os_mon
Related Id(s): PR-2787
Fix disk_sup to also search the system PATH on linux
when looking for the df program.
Full runtime dependencies of os_mon-2.7: erts-6.0, kernel-3.0,
sasl-2.4, stdlib-2.0
---------------------------------------------------------------------
--- parsetools-2.3 --------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16957 Application(s): parsetools, tools
Add types and specifications for documentation.
OTP-17023 Application(s): parsetools
Let Leex and Yecc recognize the environment variable
ERL_COMPILER_OPTIONS. Add Yecc option {error_location,
column | line}.
Full runtime dependencies of parsetools-2.3: erts-6.0, kernel-3.0,
stdlib-2.5
---------------------------------------------------------------------
--- reltool-0.9 -----------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-17189 Application(s): kernel, reltool, sasl
Related Id(s): PR-2675
Recognize new key 'optional_applications' in
application resource files.
Full runtime dependencies of reltool-0.9: erts-7.0, kernel-3.0,
sasl-2.4, stdlib-3.4, tools-2.6.14, wx-1.2
---------------------------------------------------------------------
--- runtime_tools-1.16.1 --------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
Full runtime dependencies of runtime_tools-1.16.1: erts-11.0,
kernel-7.0, mnesia-4.12, stdlib-3.13
---------------------------------------------------------------------
--- sasl-4.1 --------------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
OTP-17189 Application(s): kernel, reltool, sasl
Related Id(s): PR-2675
Recognize new key 'optional_applications' in
application resource files.
Full runtime dependencies of sasl-4.1: erts-10.2, kernel-5.3,
stdlib-3.4, tools-2.6.14
---------------------------------------------------------------------
--- snmp-5.8.1 ------------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-17049 Application(s): megaco, snmp
Removed deprecated functions marked for removal.
Full runtime dependencies of snmp-5.8.1: crypto-3.3, erts-6.0,
kernel-3.0, mnesia-4.12, runtime_tools-1.8.14, stdlib-2.5
---------------------------------------------------------------------
--- ssh-4.12 --------------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-17243 Application(s): erl_docgen, ftp, kernel, ssh, ssl,
tftp
Related Id(s): PR-4557
Missing runtime dependencies has been added to this
application.
--- Improvements and New Features ---
OTP-16750 Application(s): ssh
Removed usage of erlang:is_port/1 from the SSH
implementation.
OTP-17051 Application(s): ssh
Internal connection setup refactoring.
OTP-17140 Application(s): ssh
Refactor SSH fsm into a (hopefully) more comprehensible
set of gen_statem callback-files.
OTP-17259 Application(s): ssh
Related Id(s): ERIERL-619, OTP-16511
*** POTENTIAL INCOMPATIBILITY ***
The RSA SHA1 sign/verify variants are disabled by
default. That is, ssh-rsa is disabled by default as
well as the SHA1 sign/verify with RSA keys from id_rsa
and ssh_host_rsa_key. All SHA2 sign/verify are enabled
by default.
The reason is that SHA1 is now considered easy to
break.
To enable RSA with SHA1, for example for a very old and
unsafe peer, see Example 9 in the User's Guide chapter
Configuring algorithms in SSH.
Full runtime dependencies of ssh-4.12: crypto-4.6.4, erts-9.0,
kernel-5.3, public_key-1.6.1, runtime_tools-1.15.1, stdlib-3.4.1
---------------------------------------------------------------------
--- ssl-10.4 --------------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-17243 Application(s): erl_docgen, ftp, kernel, ssh, ssl,
tftp
Related Id(s): PR-4557
Missing runtime dependencies has been added to this
application.
--- Improvements and New Features ---
OTP-16974 Application(s): ssl
*** POTENTIAL INCOMPATIBILITY ***
Removed ssl:ssl_accept/1,2,3 and ssl:cipher:suites/0,1
use ssl:handshake/1,2,3 and ssl:cipher_suites/2,3
instead.
OTP-17044 Application(s): ssl
Related Id(s): PR-2654
*** HIGHLIGHT ***
Make TLS handshakes in Erlang distribution concurrent.
OTP-17117 Application(s): ssl
Related Id(s): PR-2933
Randomize internal {active,n} optimization when running
Erlang distribution over TLS to spread RAM/CPU spike
that may occur when starting up a big cluster.
Full runtime dependencies of ssl-10.4: crypto-4.2, erts-10.0,
inets-5.10.7, kernel-6.0, public_key-1.8, runtime_tools-1.15.1,
stdlib-3.12
---------------------------------------------------------------------
--- stdlib-3.15 -----------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-15107 Application(s): stdlib
Related Id(s): ERL-1381, PR-2813
*** POTENTIAL INCOMPATIBILITY ***
Time-outs in gen_statem with relative time 0 did not
behave quite according to the intended model. This has
now been corrected.
The correction introduces a small potential
incompatibility e.g when combining a state time-out
with inserted events, and the inserted event does a
state change in the state with the time-out. Before
this correction the state time-out could be delivered
even after the second state change, but now it is
guaranteed that a state time-out is only delivered in
the state it was started for, even in this corner case.
OTP-16865 Application(s): stdlib
Fix bugs in erl_eval concerning bitstring
comprehensions.
OTP-16905 Application(s): stdlib
File names that start with a dot (such as ".gitignore"
are now treated as file names and not extensions by
filename:extension/1 and filename:rootname/1.
OTP-16950 Application(s): stdlib
Related Id(s): ERL-1378
Fixed a bug where beam_lib:chunks/3 with the
allow_missing_chunks option would crash if a named
chunk was missing.
OTP-17077 Application(s): compiler, erts, stdlib
Related Id(s): ERL-1431, PR-2903, PR-2905, PR-2906
A floating point zero (0.0) can be both positive (+0.0)
and negative (-0.0). Multiple bugs in the compiler,
runtime system, and STDLIB have been fixed to ensure
that the minus sign on 0.0 is not lost.
OTP-17118 Application(s): compiler, stdlib
Related Id(s): PR-2825
Eliminated a Dialyzer crashed when the -MMD option is
used to generate a dependency file and a BEAM file a
the same time.
OTP-17122 Application(s): erl_docgen, stdlib
Fixed bug in shell_docs and erl_docgen that interpreted
em tags as strong.
OTP-17133 Application(s): stdlib
On Solaris, the math:acos/1 and math:asin/1 functions
would not fail for arguments outside the valid domain.
OTP-17222 Application(s): stdlib
Related Id(s): GH-4544
Documented a deficiency in the re module regarding the
[:ascii:] character class matching Latin-1 characters.
--- Improvements and New Features ---
OTP-14646 Application(s): stdlib
Related Id(s): PR-2920
In the rand module it is now possible to seed the
default algorithm using an algorithm alias: default.
Generating pseudo random binaries has been implemented
with rand:bytes/1 and rand:bytes_s/2.
OTP-14647 Application(s): stdlib
Related Id(s): PR-2910
New functions have been added to the proplists module:
to_map/1,2 and from_map/1.
OTP-14650 Application(s): stdlib
Related Id(s): PR-2850
New functions have been added to the queue module:
all/2, any/2, delete/2, delete_r/2, delete_with/2, and
delete_with_r/2.
OTP-14793 Application(s): stdlib
Related Id(s): PR-2791
New function have been added to the queue module:
fold/2 and filtermap/2.
OTP-16678 Application(s): erts, stdlib, syntax_tools, tools
Related Id(s): PR-2627
Support for handling abstract code created before OTP
R15 has been dropped.
OTP-16686 Application(s): debugger, erts, kernel, stdlib
*** HIGHLIGHT ***
Extended error information for failing BIF calls as
proposed in EEP 54 has been implemented.
When a BIF call from the Erlang shell fails, more
information about which argument or arguments that were
in error will be printed. The same extended error
information will by proc_lib, common_test, and qlc when
BIF calls fail.
For applications that wish to provide the same extended
error information, there are new functions
erl_error:format_exception/3 and
erl_error:format_exception/4.
There is a new error/3 BIF that allows applications or
libraries to provide extended error information in the
same way for their own exceptions.
OTP-16718 Application(s): erts, kernel, stdlib
Related Id(s): PR-2735
*** HIGHLIGHT ***
Process aliases as outlined by EEP 53 has been
introduced. Process aliases is introduced in order to
provide a lightweight mechanism that can prevent late
replies after timeout or connection loss. For more
information, see EEP 53 and the documentation of the
new alias/1 BIF and the new options to the monitor/3
BIF.
The call operation in the framework used by gen_server,
gen_statem, and gen_event has been updated to utilize
alias in order to prevent late responses. The
gen_statem behavior still use a proxy process in the
distributed case, since it has always prevented late
replies and aliases wont work against pre OTP 24 nodes.
The proxy process can be removed in OTP 26.
The alias feature also made it possible to introduce
new functions similar to the erpc:receive_response()
function in the gen behaviors, so the new functions
gen_server:receive_response(),
gen_statem:receive_response(),
gen_event:receive_response() have also been introduced.
OTP-16910 Application(s): stdlib
Related Id(s): PR-2771
Improved documentation about exit signals emitted when
a gen_server terminates.
OTP-16936 Application(s): erts, stdlib
Related Id(s): ERL-1367
New functions have been added to the maps module:
merge_with/3, intersect/2, intersect_with/3,
filtermap/2, from_keys/2, and maps:foreach/2.
maps:merge_with/3 is the same as merge/2 but takes an
extra fun that is used to combine items with the same
key.
maps:intersect/2 computes the intersection of two maps.
maps:intersect_with/3 is the same as intersect/2 but
takes an extra fun that is used to combine intersecting
items.
maps:filtermap/2 allows filtering and mapping of a map
in a single pass.
maps:from_keys/2 constructs a map from a list of keys
and a single value and can be used to to optimize sets
operations such as from_list/1, filter/2,
intersection/2, and subtract/2.
maps:foreach/2 allows iteration over a map without
returning any value.
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
OTP-16971 Application(s): stdlib
*** POTENTIAL INCOMPATIBILITY ***
The filename:src/1 function which was deprecated in OTP
20 has been removed. Use filelib:find_source/1,3
instead.
OTP-16980 Application(s): erts, stdlib
Related Id(s): ERL-1308
The pretty printer for floating point number have been
changed to make it easier to see if the integer part of
the number has been rounded. After the change the digit
that may have been rounded always appears last or just
before the exponent character (e or E). This is
accomplished by always printing the number using
scientific notation if it is so large that the integer
part could be rounded.
OTP-17005 Application(s): erl_interface, erts, jinterface,
kernel, stdlib
Related Id(s): OTP-16718
Accept references up to a size of 160-bits from remote
nodes. This is the first step in an upgrade path toward
using references up to 160-bits in a future OTP
release.
OTP-17024 Application(s): stdlib
Add option location to erl_parse:abstract/2.
OTP-17057 Application(s): erts, stdlib
All long running functions in the maps API are now
yielding. In previous releases the functions
maps:from_list/1, maps:keys/1 and maps:values/1 did not
yield. This could cause unfair scheduling of processes.
OTP-17059 Application(s): stdlib
Related Id(s): PR-2864
The sets module now has an optional map-based
implementation, as described in EEP 50.
To use this implementation, pass the {version,2} option
to sets:new/1 or sets:from_list/2.
OTP-17120 Application(s): stdlib
Added shell_docs:supported_tags/0. This function can be
used to retrieve the tags currently supported by
shell_docs.
OTP-17121 Application(s): stdlib
The application/erlang+html documentation storage
format used by shell_docs has been updated to include
the tags b, strong, h4, h5 and h6.
OTP-17171 Application(s): stdlib
Related Id(s): PR-3011
Improved explanation of {continue,Continue} in
Module:init/1 of the gen_server documentation.
OTP-17175 Application(s): stdlib
The erl_eval module now accepts a map for keeping track
of bindings. Using an orddict for bindings will still
work.
OTP-17199 Application(s): stdlib
Related Id(s): PR-2658
Documented epp:scan_erl_form/1 and added
epp:scan_file/2.
OTP-17210 Application(s): stdlib
The standard floating point printing algorithm used by
the io and io_lib modules has been changed from the
algorithm described in [1] to the Ryu algorithm [2].
This gives a significant speed improvement for the
printing of most floating point numbers and a small
memory consumption improvement.
[1]: Robert G. Burger and R. Kent Dybvig. 1996.
Printing floating-point numbers quickly and accurately.
In Proceedings of the ACM SIGPLAN 1996 conference on
Programming language design and implementation (PLDI
'96). Association for Computing Machinery, New York,
NY, USA, 108–116.
DOI:https://doi.org/10.1145/231379.231397
[2]: Ulf Adams. 2018. Ryū: fast float-to-string
conversion. In Proceedings of the 39th ACM SIGPLAN
Conference on Programming Language Design and
Implementation (PLDI 2018). Association for Computing
Machinery, New York, NY, USA, 270–282.
DOI:https://doi.org/10.1145/3192366.3192369
Thanks to Thomas Depierre
OTP-17236 Application(s): stdlib
Related Id(s): PR-3014
Add hex encoding and decoding functions in the binary
module.
OTP-17263 Application(s): stdlib
The undocumented and partially broken ets:filter/3
function has been removed.
OTP-17267 Application(s): stdlib
Add support in shell_docs to display any "text"
documentation format. This means that h(Module) in the
shell now can display the "text/markdown" of Elixir
documentation.
OTP-17276 Application(s): stdlib
Related Id(s): PR-2979
The internal hashing of keys within ETS tables of types
set, bag, duplicate_bag has been salted to diverge from
erlang:phash2. This to avoid bad hashing if phash2 is
used to distribute the keys over separate tables/nodes.
Full runtime dependencies of stdlib-3.15: compiler-5.0, crypto-3.3,
erts-12.0, kernel-7.0, sasl-3.0
---------------------------------------------------------------------
--- syntax_tools-2.6 ------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-16678 Application(s): erts, stdlib, syntax_tools, tools
Related Id(s): PR-2627
Support for handling abstract code created before OTP
R15 has been dropped.
OTP-17180 Application(s): syntax_tools
The igor and erl_tidy modules have been the removed and
are now maintained by their original author Richard
Carlsson. They can be found at github.com/richcarl/igor
and github.com/richcarl/erl_tidy, respectively.
Full runtime dependencies of syntax_tools-2.6: compiler-7.0,
erts-9.0, kernel-5.0, stdlib-3.4
---------------------------------------------------------------------
--- tftp-1.0.3 ------------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-17243 Application(s): erl_docgen, ftp, kernel, ssh, ssl,
tftp
Related Id(s): PR-4557
Missing runtime dependencies has been added to this
application.
Full runtime dependencies of tftp-1.0.3: erts-6.0, kernel-6.0,
stdlib-3.5
---------------------------------------------------------------------
--- tools-3.5 -------------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-17221 Application(s): tools
Related Id(s): PR-4547
For cover-compiled code, the error behaviour of list
and binary comprehensions that used andalso/orelse in
guards could be changed so that a filter that was
supposed be evaluated in guard context was evaluated in
body context. That is, there was a possibility that
comprehensions that did not raise exceptions could
raise exceptions when being run using cover.
--- Improvements and New Features ---
OTP-16678 Application(s): erts, stdlib, syntax_tools, tools
Related Id(s): PR-2627
Support for handling abstract code created before OTP
R15 has been dropped.
OTP-16957 Application(s): parsetools, tools
Add types and specifications for documentation.
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
Full runtime dependencies of tools-3.5: compiler-5.0, erts-11.0,
erts-9.1, kernel-5.4, runtime_tools-1.8.14, stdlib-3.4
---------------------------------------------------------------------
--- wx-2.0 ----------------------------------------------------------
---------------------------------------------------------------------
--- Fixed Bugs and Malfunctions ---
OTP-17105 Application(s): crypto, erts, odbc, wx
Related Id(s): PR-2872
Fix compiler warnings produced by the clang compiler.
--- Improvements and New Features ---
OTP-16800 Application(s): wx
*** HIGHLIGHT ***
The application has been completely rewritten in order
to use wxWidgets version 3 as its base.
Add basic documentation generated from the wxWidgets
project.
OTP-16963 Application(s): common_test, compiler, dialyzer,
erl_interface, erts, kernel, runtime_tools, sasl,
stdlib, tools, wx
*** POTENTIAL INCOMPATIBILITY ***
The experimental HiPE application has been removed,
together with all related functionality in other
applications.
OTP-17213 Application(s): wx
Related Id(s): PR-3027
*** HIGHLIGHT ***
Added support for wxWebView.
OTP-17219 Application(s): wx
Related Id(s): OTP-16800
*** POTENTIAL INCOMPATIBILITY ***
Due to the support of the new backend versions some API
incompatibilities have been introduced. Examples of
changes are:
wxWindowDC default creators have been removed
wxClientDC default creators have been removed
wxPaintDC default creators have been removed
wxWindow:setVirtualSizeHints() has been deprecated in
wxWidgets and removed
wxWindow:makeModal() has been deprecated in wxWidgets
and removed
wxToolBar:add/insertTool without label have been
deprecated in wxWidgets and removed
wxStyledTextCtrl some functions have changed arguments
from boolean to int
wxSizerItem:new() Some arguments have become options
Removed deprecated wxSizerItem:setWindow() use
assignWindow()
Removed deprecated wxSizerItem:setSpacer() use
assignSpacer()
Removed deprecated wxSizerItem:setSpacer() use
assignSpacer()
Removed deprecated wxSizerItem:setSizer() use
assignSizer()
wxMenu append/insert/prepend have changed return value
and lost IsCheckable argument
wxListCtrl:setItem/4 changed return value
wxImage:convertToGreyscale() options have changed
wxGridSizer:wxGridSizer() options have changed
wxGrid API have many changes
wxGraphicsRenderer:create*GradientBrush() uses
GradientStops now
wxGraphicsRenderer:createPen() have been removed
wxGraphicsRenderer:create*GradientBrush() uses
GradientStops now
wxGLCanvas API is incompatible
wxFlexGridSizer:wxFlexGridSizer() options have changed
wxDisplay:new() options have changed
wxCalendarDateAttr:new(ColText [,OptList]) have been
removed
wxBitmapButton:set/getBitmapSelected() have been
removed
Full runtime dependencies of wx-2.0: erts-6.0, kernel-3.0, stdlib-2.0
---------------------------------------------------------------------
--- xmerl-1.4 -------------------------------------------------------
---------------------------------------------------------------------
--- Improvements and New Features ---
OTP-17123 Application(s): asn1, compiler, et, xmerl
The compiler will now emit warnings when (previously
bound) underscore-prefixed variables are matched.
Full runtime dependencies of xmerl-1.4: erts-6.0, kernel-3.0,
stdlib-2.5
---------------------------------------------------------------------
--- Thanks to -------------------------------------------------------
---------------------------------------------------------------------
Alexander Clouter, Andreas Schultz, Bryan Paxton, Cheng Zhe, Dominic
Letz, Erlend Hamberg, Filipe Cristovao, Frej Drejhammar, Henrik
Lagebrand, Jesper Eskilson, Jonathan Klabunde Tomer, José Valim,
Jérôme de Bretagne, Linus.yuan, Luca Favatella, Luis Rascao, Luke
Bakken, Maria-12648430, Mariano Guerra, Mattias Hansson, Max
Nordlund, Maxim Fedorov, Michał Muskała, Mikael Pettersson, Nalin
Ranjan, Nico Piderman, Oskar, Paulo F. Oliveira, Philip Kuryloski,
Philipp Klaus Krause, Pierre Allix, Radek Szymczyszyn, Richard
Carlsson, Ruud Kamphuis, Stavros Aronis, Taras Halturin, Thomas
Depierre, Tianon Gravi, Tony Rogvall, Viktor Söderqvist, Wojtek Mach,
Zeyu Zhang, ergl, gearnode, ilya-klyuchnikov, lagebr, vans163,
yfractal, Łukasz Niemier
---------------------------------------------------------------------
---------------------------------------------------------------------
---------------------------------------------------------------------
|