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
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
|
Patch Package: OTP 19.0
Git Tag: OTP-19.0
Date: 2016-06-02
Trouble Report Id: OTP-10267, OTP-10282, OTP-10292, OTP-10349,
OTP-11879, OTP-12217, OTP-12345, OTP-12502,
OTP-12573, OTP-12590, OTP-12593, OTP-12719,
OTP-12861, OTP-12863, OTP-12883, OTP-12908,
OTP-12951, OTP-12979, OTP-13033, OTP-13034,
OTP-13047, OTP-13058, OTP-13059, OTP-13065,
OTP-13082, OTP-13086, OTP-13087, OTP-13088,
OTP-13089, OTP-13096, OTP-13097, OTP-13111,
OTP-13112, OTP-13122, OTP-13123, OTP-13131,
OTP-13148, OTP-13152, OTP-13153, OTP-13167,
OTP-13174, OTP-13175, OTP-13184, OTP-13191,
OTP-13195, OTP-13206, OTP-13207, OTP-13214,
OTP-13227, OTP-13229, OTP-13244, OTP-13255,
OTP-13256, OTP-13260, OTP-13265, OTP-13267,
OTP-13280, OTP-13288, OTP-13289, OTP-13293,
OTP-13294, OTP-13325, OTP-13341, OTP-13347,
OTP-13359, OTP-13366, OTP-13374, OTP-13375,
OTP-13383, OTP-13392, OTP-13401, OTP-13407,
OTP-13408, OTP-13409, OTP-13410, OTP-13411,
OTP-13419, OTP-13422, OTP-13425, OTP-13429,
OTP-13430, OTP-13431, OTP-13440, OTP-13442,
OTP-13444, OTP-13445, OTP-13449, OTP-13452,
OTP-13458, OTP-13459, OTP-13461, OTP-13464,
OTP-13470, OTP-13474, OTP-13475, OTP-13476,
OTP-13481, OTP-13483, OTP-13485, OTP-13487,
OTP-13488, OTP-13489, OTP-13491, OTP-13493,
OTP-13494, OTP-13495, OTP-13496, OTP-13497,
OTP-13499, OTP-13500, OTP-13501, OTP-13502,
OTP-13503, OTP-13504, OTP-13507, OTP-13508,
OTP-13512, OTP-13516, OTP-13517, OTP-13520,
OTP-13522, OTP-13523, OTP-13524, OTP-13526,
OTP-13527, OTP-13531, OTP-13532, OTP-13534,
OTP-13540, OTP-13541, OTP-13542, OTP-13544,
OTP-13545, OTP-13546, OTP-13548, OTP-13551,
OTP-13552, OTP-13553, OTP-13555, OTP-13556,
OTP-13558, OTP-13559, OTP-13560, OTP-13561,
OTP-13562, OTP-13572, OTP-13576, OTP-13580,
OTP-13590, OTP-13599, OTP-13600, OTP-13601,
OTP-13602, OTP-13610, OTP-13612, OTP-13618,
OTP-13622, OTP-13623, OTP-13625, OTP-13626,
OTP-13627, OTP-13628, OTP-13629, OTP-13630,
OTP-13631, OTP-13632, OTP-13635, OTP-13636,
OTP-13638, OTP-13639, OTP-13642
Seq num: seq13002
System: OTP
Release: 19
Application: asn1-4.0.3, common_test-1.12.2, compiler-7.0,
cosEvent-2.2.1, cosEventDomain-1.2.1,
cosFileTransfer-1.2.1, cosNotification-1.2.2,
cosProperty-1.2.1, cosTime-1.2.2,
cosTransactions-1.3.2, crypto-3.7,
debugger-4.2, dialyzer-3.0, diameter-1.12,
edoc-0.7.19, eldap-1.2.2, erl_docgen-0.4.3,
erl_interface-3.9, erts-8.0, et-1.6,
eunit-2.3, gs-1.6.1, hipe-3.15.1, ic-4.4.1,
inets-6.3, jinterface-1.7, kernel-5.0,
megaco-3.18.1, mnesia-4.14, observer-2.2,
odbc-2.11.2, orber-3.8.2, os_mon-2.4.1,
otp_mibs-1.1.1, parsetools-2.1.2,
percept-0.8.12, public_key-1.2,
reltool-0.7.1, runtime_tools-1.10, sasl-3.0,
snmp-5.2.3, ssh-4.3, ssl-8.0, stdlib-3.0,
syntax_tools-2.0, tools-2.8.4, typer-0.9.11,
wx-1.7, xmerl-1.3.11
Predecessor: OTP
Check out the git tag OTP-19.0, and build a full OTP system including
documentation. Apply one or more applications from this build as
patches to your installation using the 'otp_patch_apply' tool. For
information on install requirements, see descriptions for each
application version below.
---------------------------------------------------------------------
--- HIGHLIGHTS ------------------------------------------------------
---------------------------------------------------------------------
OTP-10267 Application(s): erts
*** POTENTIAL INCOMPATIBILITY ***
The tracing support has been extended to allow a tracer
module to be the trace event handler instead of a
process or port. The tracer module makes it possible
for trace tools to filter or manipulate trace event
data without the trace event first haing to be copied
from the traced process or port.
With the introduction of this feature,
erlang:trace(all|existing, _, _) now also returns the
tracer process as part of the number of processes on
which tracing is enabled. The is incompatible with the
previous releases.
OTP-12345 Application(s): erts, runtime_tools
Add microstate accounting
Microstate accounting is a way to track which state the
different threads within ERTS are in. The main usage
area is to pin point performance bottlenecks by
checking which states the threads are in and then from
there figuring out why and where to optimize.
Since checking whether microstate accounting is on or
off is relatively expensive only a few of the states
are enabled by default and more states can be enabled
through configure.
There is a convinence module called msacc that has been
added to runtime_tools that can assist in gathering and
interpreting the data from Microstate accounting.
For more information see
erlang:statistics(microstate_accounting, _) and the
msacc module in runtime_tools.
OTP-12345 Application(s): erts, runtime_tools
Add microstate accounting
Microstate accounting is a way to track which state the
different threads within ERTS are in. The main usage
area is to pin point performance bottlenecks by
checking which states the threads are in and then from
there figuring out why and where to optimize.
Since checking whether microstate accounting is on or
off is relatively expensive only a few of the states
are enabled by default and more states can be enabled
through configure.
There is a convinence module called msacc that has been
added to runtime_tools that can assist in gathering and
interpreting the data from Microstate accounting.
For more information see
erlang:statistics(microstate_accounting, _) and the
msacc module in runtime_tools.
OTP-12590 Application(s): erts
Related Id(s): OTP-10251
Sharing preserved copy for messages and exit signals
Enable sharing preserved copy with configure option
--enable-sharing-preserving. This will preserve
sharing, within the process, when communication with
other processes in the Erlang node. There is a
trade-off, the copy is more costly but this cost can be
reclaimed if there is a lot of sharing in the message.
With this feature enabled literals will not be copied
in a send except during a purge phase of the module
where the literals are located. This feature is
considered experimental in 19.0.
OTP-13058 Application(s): mnesia
Added experimental external backend plugin api. This
adds the possibility for the user to write other
storage backends for data, for example by using shared
memory or ram-cached disk storage.
The plugin api may change in future versions after
being battle tested.
OTP-13059 Application(s): compiler, stdlib
The pre-processor can now expand the ?FUNCTION_NAME and
?FUNCTION_ARITY macros.
OTP-13059 Application(s): compiler, stdlib
The pre-processor can now expand the ?FUNCTION_NAME and
?FUNCTION_ARITY macros.
OTP-13065 Application(s): stdlib
Related Id(s): PR-960
A new behaviour gen_statem has been implemented. It has
been thoroughly reviewed, is stable enough to be used
by at least two heavy OTP applications, and is here to
stay. But depending on user feedback, we do not expect
but might find it necessary to make minor not backwards
compatible changes into OTP-20.0, so its state can be
designated as "not quite experimental"...
The gen_statem behaviour is intended to replace gen_fsm
for new code. It has the same features and add some
really useful:
-- State code is gathered
-- The state can be any term
-- Events can be postponed
-- Events can be self generated
-- A reply can be sent from a later state
-- There can be multiple sys traceable replies
The callback model(s) for gen_statem differs from the
one for gen_fsm, but it is still fairly easy to rewrite
from gen_fsm to gen_statem.
OTP-13366 Application(s): erts
Related Id(s): OTP-13047
Introduction of configurable management of data
referred to by the message queue of a process. Each
process can be configured individually.
It is now possible to configure the message queue of a
process, so that all data referred by it will be kept
outside of the heap, and by this prevent this data from
being part of garbage collections.
For more information see the documentation of
process_flag(message_queue_data, MQD).
OTP-13464 Application(s): ssl
ssl now uses gen_statem instead of gen_fsm to implement
the ssl connection process, this solves some timing
issues in addtion to making the code more intuitive as
the behaviour can be used cleanly instead of having a
lot of workaround for shortcomings of the behaviour.
OTP-13496 Application(s): erts
*** POTENTIAL INCOMPATIBILITY ***
The tracing support has been extended to allow tracing
on ports. Ports can be traced on using the 'ports',
'send' and 'receive' trace flags.
The first argument of erlang:trace/3 has been extended
so that 'all', 'existing' and 'new' now include both
processes and ports. New Tracee variants,
'all_processes', 'all_ports', 'existing_processes' etc
have been added to specify only processes or ports.
OTP-13503 Application(s): erts
The erts internal tracing support has been changed to
have much less overhead and be more scalable.
This rewrite does not break any backwards
incompatabilities, but it does change the ordering of
some trace messages when compared to previous releases.
It should be noted that this only applies to trace
messages sent to processes or ports, it does not apply
to the new tracer module. However in future releases
they may also be effected by this.
Trace messages are only guaranteed to be ordered from
one traced process or port. In previous releases this
was not visible as a 'send' trace message would always
arrive before the corresponding 'receive' trace message
that is no longer always the case. This also means that
timestamped trace messages may seem to arrive out of
order as the timestamp is taken when the event is
triggered and not when it is put in the queue of the
tracer.
OTP-13572 Application(s): erts, kernel
Related Id(s): PR-612
Experimental support for Unix Domain Sockets has been
implemented. Read the sources if you want to try it
out. Example: gen_udp:open(0,
[{ifaddr,{local,"/tmp/socket"}}]). Documentation will
be written after user feedback on the experimental API.
OTP-13632 Application(s): ssl
Enhance error log messages to facilitate for users to
understand the error
---------------------------------------------------------------------
--- POTENTIAL INCOMPATIBILITIES -------------------------------------
---------------------------------------------------------------------
OTP-10267 Application(s): erts
*** HIGHLIGHT ***
The tracing support has been extended to allow a tracer
module to be the trace event handler instead of a
process or port. The tracer module makes it possible
for trace tools to filter or manipulate trace event
data without the trace event first haing to be copied
from the traced process or port.
With the introduction of this feature,
erlang:trace(all|existing, _, _) now also returns the
tracer process as part of the number of processes on
which tracing is enabled. The is incompatible with the
previous releases.
OTP-11879 Application(s): stdlib
Undocumented syntax for function specifications, -spec
F/A :: Domain -> Range, has been removed (without
deprecation).
Using the is_subtype(V, T) syntax for constraints (in
function specifications) is no longer documented, and
the newer syntax V :: T should be used instead. The
Erlang Parser still recognizes the is_subtype syntax,
and will continue to do so for some time.
OTP-12719 Application(s): stdlib
Background: In record fields with a type declaration
but without an initializer, the Erlang parser inserted
automatically the singleton type 'undefined' to the
list of declared types, if that value was not present
there. That is, the record declaration:
-record(rec, {f1 :: float(), f2 = 42 :: integer(), f3
:: some_mod:some_typ()}).
was translated by the parser to:
-record(rec, {f1 :: float() | 'undefined', f2 = 42 ::
integer(), f3 :: some_mod:some_typ() | 'undefined'}).
The rationale for this was that creation of a "dummy"
#rec{} record should not result in a warning from
dialyzer that, for example, the implicit initialization
of the #rec.f1 field violates its type declaration.
Problems: This seemingly innocent action has some
unforeseen consequences.
For starters, there is no way for programmers to
declare that e.g. only floats make sense for the f1
field of #rec{} records when there is no "obvious"
default initializer for this field. (This also affects
tools like PropEr that use these declarations produced
by the Erlang parser to generate random instances of
records for testing purposes.)
It also means that dialyzer does not warn if e.g. an
is_atom/1 test or something more exotic like an
atom_to_list/1 call is performed on the value of the f1
field.
Similarly, there is no way to extend dialyzer to warn
if it finds record constructions where f1 is not
initialized to some float.
Last but not least, it is semantically problematic when
the type of the field is an opaque type: creating a
union of an opaque and a structured type is very
problematic for analysis because it fundamentally
breaks the opacity of the term at that point.
Change: To solve these problems the parser will not
automatically insert the 'undefined' value anymore;
instead the user has the option to choose the places
where this value makes sense (for the field) and where
it does not and insert the | 'undefined' there
manually.
Consequences of this change: This change means that
dialyzer will issue a warning for all places where
records with uninitialized fields are created and those
fields have a declared type that is incompatible with
'undefined' (e.g. float()). This warning can be
suppressed easily by adding | 'undefined' to the type
of this field. This also adds documentation that the
user really intends to create records where this field
is uninitialized.
OTP-12863 Application(s): syntax_tools
The abstract data type in erl_syntax is augmented with
types and function specifications.
The module erl_prettypr pretty prints types and
function specification, and the output can be parsed.
The types of record fields are no longer ignored. As a
consequence erl_syntax_lib:analyze_record_field/1
returns {Default, Type} instead of Default. The
functions analyze_record_attribute, analyze_attribute,
analyze_form, and analyze_forms in the erl_syntax_lib
module are also affected by this incompatible change.
OTP-13088 Application(s): erts
The functionality behind erlang:open_port/2 when called
with spawn or spawn_executable has been redone so that
the forking of the new program is done in a separate
process called erl_child_setup. This allows for a much
more robust implementation that uses less memory and
does not block the entire emulator if the program to be
started is on an un-accessible NFS. Benchmarks have
shown this approach to be about 3-5 times as fast as
the old approach where the fork/vfork was done by erts.
This is a pure stability and performance fix, however
some error messages may have changed, which is why it
is marked as a backwards incompatible change.
OTP-13148 Application(s): stdlib
Background: The types of record fields have since R12B
been put in a separate form by epp:parse_file(),
leaving the record declaration form untyped. The
separate form, however, does not follow the syntax of
type declarations, and parse transforms inspecting
-type() attributes need to know about the special
syntax. Since the compiler stores the return value of
epp:parse_file() as debug information in the abstract
code chunk ("Abst" or abstract_code), tools too need to
know about the special syntax, if they inspect -type()
attributes in abstract code.
Change: No separate type form is created by
epp:parse_file(), but the type information is kept in
the record fields. This means that all parse transforms
and all tools inspecting -record() declarations need to
recognize {typed_record_field, Field, Type}.
OTP-13184 Application(s): sasl
The module 'overload' is removed.
OTP-13195 Application(s): ssl
Remove default support for DES cipher suites
OTP-13449 Application(s): kernel
The functions rpc:safe_multi_server_call/2,3 that were
deprecated in R12B have been removed.
OTP-13496 Application(s): erts
*** HIGHLIGHT ***
The tracing support has been extended to allow tracing
on ports. Ports can be traced on using the 'ports',
'send' and 'receive' trace flags.
The first argument of erlang:trace/3 has been extended
so that 'all', 'existing' and 'new' now include both
processes and ports. New Tracee variants,
'all_processes', 'all_ports', 'existing_processes' etc
have been added to specify only processes or ports.
OTP-13497 Application(s): erts
When the 'procs' trace flag is enabled, a 'spawned'
trace event is now also generated by a newly created
process. The previous event 'spawn' remains, but as it
is generated by the process that did the spawn, it is
not guaranteed that it is ordered with other trace
events from the newly spawned process. So when tracking
the lifetime of a process this new event should be used
as the creation event.
This new trace event is marked as an incompatabiliy
because tools that expect certain trace events when
enabling 'procs' will have to updated.
OTP-13504 Application(s): compiler
The compiler will no longer put the compilation date
and time into BEAM files. That means that two BEAM
files compiled on the same computer from the same
source code and compilation options will be identical.
Note: If you want to find out whether a BEAM file on
disk is different from the loaded code, compared the
MD5 value obtained from Mod:module_info(md5) with the
MD5 value obtained from beam_lib:md5(BeamFileForMod)
.
OTP-13532 Application(s): erts, runtime_tools
Introduce LTTng tracing via Erlang tracing.
For LTTng to be enabled OTP needs to be built with
configure option --with-dynamic-trace=lttng.
The dynamic trace module dyntrace is now capable to be
used as a LTTng sink for Erlang tracing. For a list of
all tracepoints, see Runtime Tools User's Guide .
This feature also introduces an incompatible change in
trace tags. The trace tags gc_start and gc_end has been
split into gc_minor_start, gc_minor_end and
gc_major_start, gc_major_end.
OTP-13532 Application(s): erts, runtime_tools
Introduce LTTng tracing via Erlang tracing.
For LTTng to be enabled OTP needs to be built with
configure option --with-dynamic-trace=lttng.
The dynamic trace module dyntrace is now capable to be
used as a LTTng sink for Erlang tracing. For a list of
all tracepoints, see Runtime Tools User's Guide .
This feature also introduces an incompatible change in
trace tags. The trace tags gc_start and gc_end has been
split into gc_minor_start, gc_minor_end and
gc_major_start, gc_major_end.
OTP-13542 Application(s): dialyzer
Related Id(s): PR-1014
The type specification syntax for Maps is improved:
--
The association type KeyType := ValueType denotes an
association that must be present.
--
The shorthand ... stands for the association type any()
=> any().
An incompatible change is that #{} stands for the empty
map. The type map() (a map of any size) can be written
as #{...}.
OTP-13553 Application(s): wx
Changed atom 'boolean' fields in #wxMouseState{} to
'boolean()'.
Moved out arguments in wxListCtrl:hitTest to result.
Removed no-op functions in wxGauge that have been
removed from wxWidgets-3.1.
OTP-13561 Application(s): inets
Remove module inets_regexp. Module re should be used
instead.
OTP-13622 Application(s): kernel
Related Id(s): PR-1065
The function inet:gethostbyname/1 now honors the
resolver option inet6 instead of always looking up IPv4
addresses.
---------------------------------------------------------------------
--- asn1-4.0.3 ------------------------------------------------------
---------------------------------------------------------------------
The asn1-4.0.3 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of asn1-4.0.3: erts-7.0, kernel-3.0,
stdlib-2.0
---------------------------------------------------------------------
--- common_test-1.12.2 ----------------------------------------------
---------------------------------------------------------------------
The common_test-1.12.2 application can be applied independently of
other applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13475 Application(s): common_test
The following modules were missing in
common_test.app.src: ct_groups, ct_property_test,
ct_release_test, ct_webtool, ct_webtool_sup,
test_server_gl. They have now been added.
Full runtime dependencies of common_test-1.12.2: compiler-6.0,
crypto-3.6, debugger-4.1, erts-7.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-2.5, syntax_tools-1.7, tools-2.8, xmerl-1.3.8
---------------------------------------------------------------------
--- compiler-7.0 ----------------------------------------------------
---------------------------------------------------------------------
The compiler-7.0 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13430 Application(s): compiler
Related Id(s): ERL-113
compile:forms/1,2 would crash when used in a working
directory thad had been deleted by another process.
(Thanks to Adam Lindberg for reporting this bug.)
OTP-13552 Application(s): compiler, dialyzer
Dialyzer no longer crashes when there is an invalid
function call such as 42(7) in a module being analyzed.
The compiler will now warn for invalid function calls
such as X = 42, x(7). (ERL-138. Thanks to Daniel Feltey
for reporting this bug.)
--- Improvements and New Features ---
OTP-12951 Application(s): compiler
Optimization of tuple matching has been slightly
improved.
OTP-12979 Application(s): compiler
Five deprecated and undocumented functions in the
module core_lib have been removed. The functions are:
get_anno/{1,2}, is_literal/1, is_literal_list/1, and
literal_value. Use the appropriate functions in the
cerl module instead.
OTP-13059 Application(s): compiler, stdlib
*** HIGHLIGHT ***
The pre-processor can now expand the ?FUNCTION_NAME and
?FUNCTION_ARITY macros.
OTP-13280 Application(s): compiler
The function mapfold/4 has been added to the cerl_trees
module.
OTP-13289 Application(s): compiler
Bitstring comprehensions have been generalized to allow
arbitrary expressions in the construction part.
OTP-13374 Application(s): compiler
Related Id(s): ERL-44
The compiler will now produce warnings for binary
patterns that will never match (example: > = Bin).
OTP-13504 Application(s): compiler
*** POTENTIAL INCOMPATIBILITY ***
The compiler will no longer put the compilation date
and time into BEAM files. That means that two BEAM
files compiled on the same computer from the same
source code and compilation options will be identical.
Note: If you want to find out whether a BEAM file on
disk is different from the loaded code, compared the
MD5 value obtained from Mod:module_info(md5) with the
MD5 value obtained from beam_lib:md5(BeamFileForMod)
.
Full runtime dependencies of compiler-7.0: crypto-3.6, erts-7.0,
hipe-3.12, kernel-4.0, stdlib-2.5
---------------------------------------------------------------------
--- cosEvent-2.2.1 --------------------------------------------------
---------------------------------------------------------------------
The cosEvent-2.2.1 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of cosEvent-2.2.1: erts-7.0, kernel-3.0,
orber-3.6.27, stdlib-2.0
---------------------------------------------------------------------
--- cosEventDomain-1.2.1 --------------------------------------------
---------------------------------------------------------------------
The cosEventDomain-1.2.1 application can be applied independently of
other applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of cosEventDomain-1.2.1:
cosNotification-1.1.21, erts-7.0, kernel-3.0, orber-3.6.27,
stdlib-2.0
---------------------------------------------------------------------
--- cosFileTransfer-1.2.1 -------------------------------------------
---------------------------------------------------------------------
The cosFileTransfer-1.2.1 application can be applied independently of
other applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of cosFileTransfer-1.2.1:
cosProperty-1.1.17, erts-7.0, inets-5.10, kernel-3.0, orber-3.6.27,
ssl-5.3.4, stdlib-2.0
---------------------------------------------------------------------
--- cosNotification-1.2.2 -------------------------------------------
---------------------------------------------------------------------
The cosNotification-1.2.2 application can be applied independently of
other applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of cosNotification-1.2.2: cosEvent-2.1.15,
cosTime-1.1.14, erts-7.0, kernel-3.0, orber-3.6.27, stdlib-2.5
---------------------------------------------------------------------
--- cosProperty-1.2.1 -----------------------------------------------
---------------------------------------------------------------------
The cosProperty-1.2.1 application can be applied independently of
other applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of cosProperty-1.2.1: erts-7.0, kernel-3.0,
mnesia-4.12, orber-3.6.27, stdlib-2.0
---------------------------------------------------------------------
--- cosTime-1.2.2 ---------------------------------------------------
---------------------------------------------------------------------
The cosTime-1.2.2 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of cosTime-1.2.2: cosEvent-2.1.15,
erts-7.0, kernel-3.0, orber-3.6.27, stdlib-2.0
---------------------------------------------------------------------
--- cosTransactions-1.3.2 -------------------------------------------
---------------------------------------------------------------------
The cosTransactions-1.3.2 application can be applied independently of
other applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of cosTransactions-1.3.2: erts-7.0,
kernel-3.0, orber-3.6.27, stdlib-2.0
---------------------------------------------------------------------
--- crypto-3.7 ------------------------------------------------------
---------------------------------------------------------------------
The crypto-3.7 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-12217 Application(s): crypto
Refactor crypto to use the EVP interface of OpenSSL,
which is the recommended interface that also enables
access to hardware acceleration for some operations.
OTP-13206 Application(s): crypto
Related Id(s): 832, pr
Add support for 192-bit keys for the aes_cbc cipher.
OTP-13207 Application(s): crypto
Related Id(s): pr829
Add support for 192-bit keys for aes_ecb.
OTP-13214 Application(s): crypto, ssl
Deprecate the function crypto:rand_bytes and make sure
that crypto:strong_rand_bytes is used in all places
that are cryptographically significant.
OTP-13483 Application(s): crypto
Related Id(s): PR-998
Enable AES-GCM encryption/decryption to change the tag
length between 1 to 16 bytes.
Full runtime dependencies of crypto-3.7: erts-6.0, kernel-3.0,
stdlib-2.0
---------------------------------------------------------------------
--- debugger-4.2 ----------------------------------------------------
---------------------------------------------------------------------
The debugger-4.2 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13375 Application(s): debugger
When the debugger searches for source files, it will
also use the location of the source in the compilation
information part of the BEAM file.
Full runtime dependencies of debugger-4.2: compiler-5.0, erts-6.0,
kernel-3.0, stdlib-2.5, wx-1.2
---------------------------------------------------------------------
--- dialyzer-3.0 ----------------------------------------------------
---------------------------------------------------------------------
The dialyzer-3.0 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13520 Application(s): dialyzer
Fix a bug in the translation of forms to types.
OTP-13544 Application(s): dialyzer
Related Id(s): PR-1007
Correct mispelling in Dialyzer's acronym definition.
OTP-13552 Application(s): compiler, dialyzer
Dialyzer no longer crashes when there is an invalid
function call such as 42(7) in a module being analyzed.
The compiler will now warn for invalid function calls
such as X = 42, x(7). (ERL-138. Thanks to Daniel Feltey
for reporting this bug.)
--- Improvements and New Features ---
OTP-10349 Application(s): dialyzer
The evaluation of SCCs in dialyzer_typesig is
optimized.
Maps are used instead of Dicts to further optimize the
evalutation.
OTP-13244 Application(s): dialyzer
Since Erlang/OTP R14A, when support for parameterized
modules was added, module() has included tuple(), but
that part is removed; the type module() is now the same
as atom(), as documented in the Reference Manual.
OTP-13542 Application(s): dialyzer
Related Id(s): PR-1014
*** POTENTIAL INCOMPATIBILITY ***
The type specification syntax for Maps is improved:
--
The association type KeyType := ValueType denotes an
association that must be present.
--
The shorthand ... stands for the association type any()
=> any().
An incompatible change is that #{} stands for the empty
map. The type map() (a map of any size) can be written
as #{...}.
Full runtime dependencies of dialyzer-3.0: compiler-7.0, erts-8.0,
hipe-3.15.1, kernel-5.0, stdlib-3.0, syntax_tools-2.0, wx-1.2
---------------------------------------------------------------------
--- diameter-1.12 ---------------------------------------------------
---------------------------------------------------------------------
The diameter-1.12 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13508 Application(s): diameter
Add diameter:peer_info/1.
That retrieves information in the style of
diameter:service_info/2, but for a single peer
connection.
Full runtime dependencies of diameter-1.12: erts-6.0, kernel-3.0,
ssl-5.3.4, stdlib-2.0
---------------------------------------------------------------------
--- edoc-0.7.19 -----------------------------------------------------
---------------------------------------------------------------------
The edoc-0.7.19 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13558 Application(s): edoc
Handle typed record fields.
Full runtime dependencies of edoc-0.7.19: erts-6.0, inets-5.10,
kernel-3.0, stdlib-2.5, syntax_tools-1.6.14, xmerl-1.3.7
---------------------------------------------------------------------
--- eldap-1.2.2 -----------------------------------------------------
---------------------------------------------------------------------
The eldap-1.2.2 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13590 Application(s): eldap
Related Id(s): PR-1048
If the underlying tcp connection is closed and an LDAP
operation returned tcp_error, the client applications
tend to close the ldap handle with eldap:close. This
will cause a {nocatch, {gen_tcp_error, ...}} exception.
Such errors are now ignored during close, because the
socket will be closed anyway.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of eldap-1.2.2: asn1-3.0, erts-6.0,
kernel-3.0, ssl-5.3.4, stdlib-2.0
---------------------------------------------------------------------
--- erl_docgen-0.4.3 ------------------------------------------------
---------------------------------------------------------------------
The erl_docgen-0.4.3 application can be applied independently of
other applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13600 Application(s): erl_docgen
Related Id(s): ERL-141, Jira:
Generate HTML anchors for datatypes without name
attribute.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
--- Known Bugs and Problems ---
OTP-13638 Application(s): erl_docgen, otp
Updated make rules so it's possible to use the xmllint
target for checking the system documentation.
Removed usage of non defined DTD tag (output) from the
system documentation and corrected a number of xml
faults.
Added support for quote tag and a new level of header
formatting in erl_docgen.
A fault when generating html for manual set markers for
section headings is corrected so now is the title
visible after hyperlink jump.
OTP-13639 Application(s): erl_docgen
Corrected the space handling for the seealso tag.
Full runtime dependencies of erl_docgen-0.4.3: edoc-0.7.13, erts-6.0,
stdlib-2.5, xmerl-1.3.7
---------------------------------------------------------------------
--- erl_interface-3.9 -----------------------------------------------
---------------------------------------------------------------------
The erl_interface-3.9 application can be applied independently of
other applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13488 Application(s): erl_interface, erts, jinterface
Handle terms (pids,ports and refs) from nodes with a
'creation' value larger than 3. This is a preparation
of the distribution protocol to allow OTP 19 nodes to
correctly communicate with future nodes (20 or higher).
The 'creation' value differentiates different
incarnations of the same node (name).
---------------------------------------------------------------------
--- erts-8.0 --------------------------------------------------------
---------------------------------------------------------------------
The erts-8.0 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-12593 Application(s): erts, kernel
The handling of on_load functions has been improved.
The major improvement is that if a code upgrade fails
because the on_load function fails, the previous
version of the module will now be retained.
OTP-13034 Application(s): erts
is_builtin(erlang, apply, 3) will now return true.
OTP-13288 Application(s): erts
Related Id(s): PR913
Fix enif_get_list_length to return false if list is
improper or have length larger than UINT_MAX (did
return true and an incorrect length value).
OTP-13341 Application(s): erts
Related Id(s): PR951
Cleanup hipe signal handling code for x86 and make it
more portable.
OTP-13411 Application(s): erts, kernel
Use fsync instead of fdatasync on Mac OSX.
OTP-13419 Application(s): erts
Make sure to create a crash dump when running out of
memory. This was accidentally removed in the erts-7.3
release.
OTP-13425 Application(s): erts
A bug has been fixed where if erlang was started +B on
a unix platform it would be killed by a SIGUSR2 signal
when creating a crash dump.
OTP-13452 Application(s): erts
Fix race between process_flag(trap_exit,true) and a
received exit signal.
A process could terminate due to exit signal even
though process_flag(trap_exit,true) had returned. A
very specific timing between call to process_flag/2 and
exit signal from another scheduler was required for
this to happen.
OTP-13459 Application(s): erts, stdlib
Don't search for non-existing Map keys twice
For maps:get/2,3 and maps:find/2, searching for an
immediate key, e.g. an atom, in a small map, the search
was performed twice if the key did not exist.
OTP-13474 Application(s): erts
When a abnormally large distribution message is about
to be sent, the VM has been changed to create a crash
dump instead of a core dump.
OTP-13485 Application(s): erts
Related Id(s): ERL-123
Fix erlang:process_info/2 type specification
OTP-13489 Application(s): erts
Related Id(s): ERL-127
Fix bug in open_port/2 with option {args, List}. A vm
crash could be caused by an improper List.
OTP-13494 Application(s): erts
Related Id(s): ERL-126
Don't crash on terminating processes with
erlang:system_profile/1,2
OTP-13512 Application(s): erts
Fixed bugs where the reduction counter was not handled
correct.
OTP-13517 Application(s): erts
Fixed typo in description of the EPMD_DUMP_REQ
response.
OTP-13540 Application(s): erts
Fixed a bug where a process flagged as sensitive would
sometimes record its save_calls when it shouldn't.
OTP-13562 Application(s): erts
Update configure scripts to not use hardcoded path for
/bin/pwd and /bin/rm.
OTP-13628 Application(s): erts
When passing a larger binary than the outputv callback
of a linked-in driver can handle in one io vector slot,
the binary is now split into multiple slots in the io
vector. This change only effects system where the max
size of an io vector slot is smaller then the word size
of the system (e.g. Windows).
This change means that it is now possible on Windows to
send binaries that are larger than 4GB to
port_comnmand, which is what is used for file:write,
gen_tcp:send etc.
--- Improvements and New Features ---
OTP-10267 Application(s): erts
*** HIGHLIGHT ***
*** POTENTIAL INCOMPATIBILITY ***
The tracing support has been extended to allow a tracer
module to be the trace event handler instead of a
process or port. The tracer module makes it possible
for trace tools to filter or manipulate trace event
data without the trace event first haing to be copied
from the traced process or port.
With the introduction of this feature,
erlang:trace(all|existing, _, _) now also returns the
tracer process as part of the number of processes on
which tracing is enabled. The is incompatible with the
previous releases.
OTP-10282 Application(s): erts
Introduce LTTng tracing of Erlang Runtime System
For LTTng to be enabled OTP needs to be built with
configure option --with-dynamic-trace=lttng.
This feature introduces tracepoints for schedulers,
drivers, memory carriers, memory and async thread pool.
For a list of all tracepoints, see Runtime Tools User's
Guide .
OTP-12345 Application(s): erts, runtime_tools
*** HIGHLIGHT ***
Add microstate accounting
Microstate accounting is a way to track which state the
different threads within ERTS are in. The main usage
area is to pin point performance bottlenecks by
checking which states the threads are in and then from
there figuring out why and where to optimize.
Since checking whether microstate accounting is on or
off is relatively expensive only a few of the states
are enabled by default and more states can be enabled
through configure.
There is a convinence module called msacc that has been
added to runtime_tools that can assist in gathering and
interpreting the data from Microstate accounting.
For more information see
erlang:statistics(microstate_accounting, _) and the
msacc module in runtime_tools.
OTP-12573 Application(s): erts
The port of Erlang/OTP to the realtime operating system
OSE has been removed.
OTP-12590 Application(s): erts
Related Id(s): OTP-10251
*** HIGHLIGHT ***
Sharing preserved copy for messages and exit signals
Enable sharing preserved copy with configure option
--enable-sharing-preserving. This will preserve
sharing, within the process, when communication with
other processes in the Erlang node. There is a
trade-off, the copy is more costly but this cost can be
reclaimed if there is a lot of sharing in the message.
With this feature enabled literals will not be copied
in a send except during a purge phase of the module
where the literals are located. This feature is
considered experimental in 19.0.
OTP-12883 Application(s): erts
Halfword BEAM has been removed.
OTP-12908 Application(s): erts, kernel
Added os:perf_counter/1.
The perf_counter is a very very cheap and high
resolution timer that can be used to timestamp system
events. It does not have monoticity guarantees, but
should on most OS's expose a monotonous time.
OTP-13047 Application(s): erts
Support for a fragmented young heap generation. That
is, the young heap generation can consist of multiple
non continuous memory areas. The main reason for this
change is to avoid extra copying of messages that could
not be allocated directly on the receivers heap.
OTP-13086 Application(s): erts
Erlang linked-in driver can now force the call to
open_port to block until a call to erl_drv_init_ack is
made inside the driver. This is useful when you want to
do some asynchronous initialization, for example
getting configuration from a pipe, and you want the
initial open_port call to fail if the configuration is
incomplete or wrong. See the erl_driver documentation
for more details on the API.
OTP-13087 Application(s): erts
Erlang linked-in drivers can now set their own pid's as
seen in erlang:port_info/1 by using the erl_drv_set_pid
function. For more details see the erl_driver
documentation.
OTP-13088 Application(s): erts
*** POTENTIAL INCOMPATIBILITY ***
The functionality behind erlang:open_port/2 when called
with spawn or spawn_executable has been redone so that
the forking of the new program is done in a separate
process called erl_child_setup. This allows for a much
more robust implementation that uses less memory and
does not block the entire emulator if the program to be
started is on an un-accessible NFS. Benchmarks have
shown this approach to be about 3-5 times as fast as
the old approach where the fork/vfork was done by erts.
This is a pure stability and performance fix, however
some error messages may have changed, which is why it
is marked as a backwards incompatible change.
OTP-13096 Application(s): erts
Improved yielding strategy in the implementation of the
following native functions:
-- erlang:binary_to_list/1
-- erlang:binary_to_list/3
-- erlang:bitstring_to_list/1
-- erlang:list_to_binary/1
-- erlang:iolist_to_binary/1
-- erlang:list_to_bitstring/1
-- binary:list_to_bin/1
This in order to improve performance of these
functions.
OTP-13097 Application(s): erts
All garbage collections of processes now bump
reductions. Also the amount of reductions bumped when
garbage collecting has been adjusted. It now better
corresponds to the amount of work performed. This in
order to improve the real time characteristics of the
system.
OTP-13111 Application(s): erts, kernel
New functions that can load multiple functions at once
have been added to the 'code' module. The functions are
code:atomic_load/1, code:prepare_loading/1,
code:finish_loading/1, and
code:ensure_modules_loaded/1.
OTP-13112 Application(s): erts
The -boot_var option for erl now only supports a single
key and single value (as documented). The option used
to allow multiple key/value pairs, but that behavior
was undocumented.
The function erl_prim_loader:start/3 has been removed.
Its documentation has also been removed.
The undocumented and unsupported function
erl_prim_loader:get_files/2 has been removed.
OTP-13122 Application(s): erts
Low level BIF erlang:purge_module/1 is made more robust
against incorrect use. Lingering processes that still
refer the old code are now killed before the module is
purged to prevent fatal VM behavior.
OTP-13123 Application(s): erts
Improved dirty scheduler implementation. For more
information see the NIF documentation.
Note that support for determining whether dirty NIF
support exist or not at compile time using the C
preprocessor macro ERL_NIF_DIRTY_SCHEDULER_SUPPORT has
been removed.
OTP-13167 Application(s): erts
Various optimizations done to process dictionary
access.
OTP-13174 Application(s): erts
Added max_heap_size process flag. See
erlang:process_flag for more details.
OTP-13227 Application(s): erts
Allow dynamic drivers and NIF libraries to be built
with gcc option -fvisibility=hidden for faster loading
and more optimized code.
OTP-13265 Application(s): erts
Add erlang:process_info(Pid, garbage_collection_info)
which returns extended garbage_collection information.
For more details see the documentation.
OTP-13293 Application(s): erts
The functions erlang:list_to_integer/1 and
string:to_integer/1 have been optimized for large
inputs.
OTP-13359 Application(s): erts
Improved memory allocation strategy for hipe native
code on x86_64 (amd64) architectures by reserving
enough low virtual address space needed for the
HiPE/AMD64 small code model. The default virtual
address area for hipe code is set to 512Mb, but can be
changed with emulator flag +MXscs.
OTP-13366 Application(s): erts
Related Id(s): OTP-13047
*** HIGHLIGHT ***
Introduction of configurable management of data
referred to by the message queue of a process. Each
process can be configured individually.
It is now possible to configure the message queue of a
process, so that all data referred by it will be kept
outside of the heap, and by this prevent this data from
being part of garbage collections.
For more information see the documentation of
process_flag(message_queue_data, MQD).
OTP-13401 Application(s): erts
Processes now yield when scanning large message queues
and not finding a matching message. This in order to
improve real time characteristics.
OTP-13440 Application(s): erts
Optimized an erts internal function that is used to
traverse erlang terms. The internal function was mainly
used by term_to_binary and comparison of terms.
Benchmarks have shown up to a 10% performance increase
in those functions after the optimization.
OTP-13442 Application(s): erts
Add the following NIF API functions:
-- enif_cpu_time
-- enif_now_time
-- enif_make_unique_integer
-- enif_is_process_alive
-- enif_is_port_alive
-- enif_term_to_binary
-- enif_binary_to_term
-- enif_port_command
for details of what each function does, see the erl_nif
documentation.
OTP-13487 Application(s): erts, stdlib
Optimize '++' operator and lists:append/2 by using a
single pass to build a new list while checking for
properness.
OTP-13488 Application(s): erl_interface, erts, jinterface
Handle terms (pids,ports and refs) from nodes with a
'creation' value larger than 3. This is a preparation
of the distribution protocol to allow OTP 19 nodes to
correctly communicate with future nodes (20 or higher).
The 'creation' value differentiates different
incarnations of the same node (name).
OTP-13493 Application(s): erts
Related Id(s): PR-999
Don't send unasked for systemd notifications in epmd
OTP-13495 Application(s): erts
The enif_send API has been extended to allow NULL to be
used as the message environment. When used this way, a
message environent is implicitly created and the given
term is copied into that environment before sending.
This can be an optimization if many small messages are
being sent by the nif.
OTP-13496 Application(s): erts
*** HIGHLIGHT ***
*** POTENTIAL INCOMPATIBILITY ***
The tracing support has been extended to allow tracing
on ports. Ports can be traced on using the 'ports',
'send' and 'receive' trace flags.
The first argument of erlang:trace/3 has been extended
so that 'all', 'existing' and 'new' now include both
processes and ports. New Tracee variants,
'all_processes', 'all_ports', 'existing_processes' etc
have been added to specify only processes or ports.
OTP-13497 Application(s): erts
*** POTENTIAL INCOMPATIBILITY ***
When the 'procs' trace flag is enabled, a 'spawned'
trace event is now also generated by a newly created
process. The previous event 'spawn' remains, but as it
is generated by the process that did the spawn, it is
not guaranteed that it is ordered with other trace
events from the newly spawned process. So when tracking
the lifetime of a process this new event should be used
as the creation event.
This new trace event is marked as an incompatabiliy
because tools that expect certain trace events when
enabling 'procs' will have to updated.
OTP-13501 Application(s): erts
Add the erlang:match_spec_test/3 function. The
functions allows the testing of match specifications
for both tracing and ets tables. It can be used to test
that a match specification does the expected filtering
on specific data. It also returns more verbose error
reasons for incorrectly constructed match
specifications.
OTP-13503 Application(s): erts
*** HIGHLIGHT ***
The erts internal tracing support has been changed to
have much less overhead and be more scalable.
This rewrite does not break any backwards
incompatabilities, but it does change the ordering of
some trace messages when compared to previous releases.
It should be noted that this only applies to trace
messages sent to processes or ports, it does not apply
to the new tracer module. However in future releases
they may also be effected by this.
Trace messages are only guaranteed to be ordered from
one traced process or port. In previous releases this
was not visible as a 'send' trace message would always
arrive before the corresponding 'receive' trace message
that is no longer always the case. This also means that
timestamped trace messages may seem to arrive out of
order as the timestamp is taken when the event is
triggered and not when it is put in the queue of the
tracer.
OTP-13507 Application(s): erts
Add possibility to filter send and receive trace with
match specifications.
OTP-13522 Application(s): erts, stdlib
Related Id(s): PR-1025
Add maps:update_with/3,4 and maps:take/2
OTP-13532 Application(s): erts, runtime_tools
*** POTENTIAL INCOMPATIBILITY ***
Introduce LTTng tracing via Erlang tracing.
For LTTng to be enabled OTP needs to be built with
configure option --with-dynamic-trace=lttng.
The dynamic trace module dyntrace is now capable to be
used as a LTTng sink for Erlang tracing. For a list of
all tracepoints, see Runtime Tools User's Guide .
This feature also introduces an incompatible change in
trace tags. The trace tags gc_start and gc_end has been
split into gc_minor_start, gc_minor_end and
gc_major_start, gc_major_end.
OTP-13541 Application(s): erts
Related Id(s): PR-1026
Print heap pointers for garbing processes during
crashdump
OTP-13560 Application(s): erts
Changed and improved low level memory statistics
returned by erlang:system_info/1. The info for
erts_mmap has been moved from mseg_alloc to its own
section returned by {allocator, erts_mmap}.
OTP-13580 Application(s): erts
Add enif_snprintf to the NIF API
The fucntion enif_snprintf is similar to snprintf call
but can handle formating of Erlang terms via %T format
specifier.
OTP-13599 Application(s): erts
The warning in the documentation for erlang:raise/3 has
been removed. It is now officially perfectly fine to
use raise/3 in production code. (Thanks to Per
Hedeland.)
OTP-13627 Application(s): erts
Add -start_epmd command line option, this lets you
disable automatic starting of epmd when starting a
distributed node.
Add -epmd_module command line option, this lets you
specify a module to register and lookup node names in.
The default module is erl_epmd.
OTP-13630 Application(s): erts
erlang:halt now truncates strings longer than 200
characters instead of failing with badarg.
Full runtime dependencies of erts-8.0: kernel-5.0, sasl-3.0,
stdlib-3.0
---------------------------------------------------------------------
--- et-1.6 ----------------------------------------------------------
---------------------------------------------------------------------
The et-1.6 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13545 Application(s): et
Update selector to utilize new garbage collection trace
tags.
Full runtime dependencies of et-1.6: erts-8.0, kernel-3.0,
runtime_tools-1.10, stdlib-2.0, wx-1.2
---------------------------------------------------------------------
--- eunit-2.3 -------------------------------------------------------
---------------------------------------------------------------------
The eunit-2.3 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13612 Application(s): eunit
There is a new debugVal/2 that gives control over the
truncation depth.
Full runtime dependencies of eunit-2.3: erts-6.0, kernel-3.0,
stdlib-2.5
---------------------------------------------------------------------
--- gs-1.6.1 --------------------------------------------------------
---------------------------------------------------------------------
The gs-1.6.1 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of gs-1.6.1: erts-6.0, kernel-3.0,
stdlib-2.0
---------------------------------------------------------------------
--- hipe-3.15.1 -----------------------------------------------------
---------------------------------------------------------------------
The hipe-3.15.1 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13407 Application(s): hipe
Related Id(s): PR-984
HiPE compiler crashed, during compilation, in some
cases that involved inlining of float operations on
complicated control flow graphs.
OTP-13626 Application(s): hipe
Various fixes and improvements to the HiPE LLVM
backend.
-- Add support for LLVM 3.7 and 3.8 in the HiPE/LLVM
x86_64 backend
-- Reinstate support for the LLVM backend on x86 (works
OK for LLVM 3.5 to 3.7 -- LLVM 3.8 has a bug that
prevents it from generating correct native code on x86)
--- Improvements and New Features ---
OTP-13625 Application(s): hipe
Related Id(s): PR-1069
Elimination of maps:is_key/2 calls to HiPE
Full runtime dependencies of hipe-3.15.1: compiler-5.0, erts-7.1,
kernel-3.0, stdlib-2.5, syntax_tools-1.6.14
---------------------------------------------------------------------
--- ic-4.4.1 --------------------------------------------------------
---------------------------------------------------------------------
The ic-4.4.1 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of ic-4.4.1: erts-6.0, kernel-3.0,
stdlib-2.0
---------------------------------------------------------------------
--- inets-6.3 -------------------------------------------------------
---------------------------------------------------------------------
The inets-6.3 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13383 Application(s): inets
Related Id(s): PR-972
Add handling of DELETE Body to http client.
OTP-13445 Application(s): inets
Related Id(s): PR-988
Removed references to mod_include and webtool from
examples and tests.
Thanks to waisbrot
OTP-13561 Application(s): inets
*** POTENTIAL INCOMPATIBILITY ***
Remove module inets_regexp. Module re should be used
instead.
Full runtime dependencies of inets-6.3: erts-6.0, kernel-3.0,
mnesia-4.12, runtime_tools-1.8.14, ssl-5.3.4, stdlib-2.0
---------------------------------------------------------------------
--- jinterface-1.7 --------------------------------------------------
---------------------------------------------------------------------
The jinterface-1.7 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13488 Application(s): erl_interface, erts, jinterface
Handle terms (pids,ports and refs) from nodes with a
'creation' value larger than 3. This is a preparation
of the distribution protocol to allow OTP 19 nodes to
correctly communicate with future nodes (20 or higher).
The 'creation' value differentiates different
incarnations of the same node (name).
---------------------------------------------------------------------
--- kernel-5.0 ------------------------------------------------------
---------------------------------------------------------------------
The kernel-5.0 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-12593 Application(s): erts, kernel
The handling of on_load functions has been improved.
The major improvement is that if a code upgrade fails
because the on_load function fails, the previous
version of the module will now be retained.
OTP-13409 Application(s): kernel
rpc:call() and rpc:block_call() would sometimes cause
an exception (which was not mentioned in the
documentation). This has been corrected so that
{badrpc,Reason} will be returned instead.
OTP-13410 Application(s): kernel
On Windows, for modules that were loaded early (such as
the lists module), code:which/1 would return the path
with mixed slashes and backslashes, for example:
"C:\\Program
Files\\erl8.0/lib/stdlib-2.7/ebin/lists.beam". This has
been corrected.
OTP-13411 Application(s): erts, kernel
Use fsync instead of fdatasync on Mac OSX.
OTP-13444 Application(s): kernel
The default chunk size for the fallback sendfile
implementation, used on platforms that do not have a
native sendfile, has been decreased in order to reduce
connectivity issues.
OTP-13461 Application(s): kernel
Huges writes (2Gb or more) could fail on some Unix
platforms (for example, OS X and FreeBSD).
OTP-13470 Application(s): kernel
Related Id(s): #969, Pull
A bug has been fixed where the DNS resolver inet_res
did not refresh its view of the contents of for example
resolv.conf immediately after start and hence then
failed name resolution. Reported and fix suggested by
Michal Ptaszek in GitHUB pull req #949.
OTP-13516 Application(s): kernel
Related Id(s): PR-1008
Fix process leak from global_group. Thanks to Xuming
who reported and fixed this!
OTP-13622 Application(s): kernel
Related Id(s): PR-1065
*** POTENTIAL INCOMPATIBILITY ***
The function inet:gethostbyname/1 now honors the
resolver option inet6 instead of always looking up IPv4
addresses.
OTP-13631 Application(s): kernel
Related Id(s): PR-911
The Status argument to init:stop/1 is now sanity
checked to make sure erlang:halt does not fail.
--- Improvements and New Features ---
OTP-12908 Application(s): erts, kernel
Added os:perf_counter/1.
The perf_counter is a very very cheap and high
resolution timer that can be used to timestamp system
events. It does not have monoticity guarantees, but
should on most OS's expose a monotonous time.
OTP-13089 Application(s): kernel
The os:cmd call has been optimized on unix platforms to
be more performant as the number of schedulers
increase.
OTP-13111 Application(s): erts, kernel
New functions that can load multiple functions at once
have been added to the 'code' module. The functions are
code:atomic_load/1, code:prepare_loading/1,
code:finish_loading/1, and
code:ensure_modules_loaded/1.
OTP-13191 Application(s): kernel
The code path cache feature turned out not to be very
useful in practice and has been removed. If an attempt
is made to enable the code path cache, there will be a
warning report informing the user that the feature has
been removed.
OTP-13294 Application(s): kernel
When an attempt is made to start a distributed Erlang
node with the same name as an existing node, the error
message will be much shorter and easier to read than
before. Example:
Protocol 'inet_tcp': the name somename@somehost seems
to be in use by another Erlang node
OTP-13325 Application(s): kernel
The output of the default error logger is somewhat
prettier and easier to read. The default error logger
is used during startup of the OTP system. If the
start-up fails, the output will be easier to read.
OTP-13449 Application(s): kernel
*** POTENTIAL INCOMPATIBILITY ***
The functions rpc:safe_multi_server_call/2,3 that were
deprecated in R12B have been removed.
OTP-13458 Application(s): kernel
Update the error reasons in dist_util, and show them in
the logs if net_kernel:verbose(1) has been called.
OTP-13572 Application(s): erts, kernel
Related Id(s): PR-612
*** HIGHLIGHT ***
Experimental support for Unix Domain Sockets has been
implemented. Read the sources if you want to try it
out. Example: gen_udp:open(0,
[{ifaddr,{local,"/tmp/socket"}}]). Documentation will
be written after user feedback on the experimental API.
Full runtime dependencies of kernel-5.0: erts-8.0, sasl-3.0,
stdlib-3.0
---------------------------------------------------------------------
--- megaco-3.18.1 ---------------------------------------------------
---------------------------------------------------------------------
The megaco-3.18.1 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of megaco-3.18.1: 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.14 -----------------------------------------------------
---------------------------------------------------------------------
The mnesia-4.14 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13058 Application(s): mnesia
*** HIGHLIGHT ***
Added experimental external backend plugin api. This
adds the possibility for the user to write other
storage backends for data, for example by using shared
memory or ram-cached disk storage.
The plugin api may change in future versions after
being battle tested.
Full runtime dependencies of mnesia-4.14: erts-7.0, kernel-3.0,
stdlib-2.0
---------------------------------------------------------------------
--- observer-2.2 ----------------------------------------------------
---------------------------------------------------------------------
The observer-2.2 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13500 Application(s): observer, runtime_tools
Update dbg and ttb to work with a tracer module as
tracer and tracing on ports.
OTP-13555 Application(s): observer
Added possibility to change update frequency and length
of the graph windows.
OTP-13556 Application(s): observer
Improved background coloring to work with dark themes
and other visual improvements.
Full runtime dependencies of observer-2.2: erts-7.0, et-1.5,
inets-5.10, kernel-3.0, runtime_tools-1.8.14, stdlib-2.0, wx-1.2
---------------------------------------------------------------------
--- odbc-2.11.2 -----------------------------------------------------
---------------------------------------------------------------------
The odbc-2.11.2 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13559 Application(s): odbc
Configure enhancment for better handling program paths
used in the build process
Full runtime dependencies of odbc-2.11.2: erts-6.0, kernel-3.0,
stdlib-2.0
---------------------------------------------------------------------
--- orber-3.8.2 -----------------------------------------------------
---------------------------------------------------------------------
The orber-3.8.2 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of orber-3.8.2: erts-7.0, inets-5.10,
kernel-3.0, mnesia-4.12, ssl-5.3.4, stdlib-2.5
---------------------------------------------------------------------
--- os_mon-2.4.1 ----------------------------------------------------
---------------------------------------------------------------------
The os_mon-2.4.1 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13526 Application(s): os_mon
Related Id(s): PR-1029
Fix type specification for cpu_sup:util/1
OTP-13548 Application(s): os_mon
Related Id(s): PR-1046
Fix strict compilation on SUN/SPARC
OTP-13601 Application(s): os_mon
Related Id(s): PR-1039
Fix memsup:get_os_wordsize() on 64-bit FreeBSD and
64-bit Linux PPC
Full runtime dependencies of os_mon-2.4.1: erts-6.0, kernel-3.0,
mnesia-4.12, otp_mibs-1.0.9, sasl-2.4, snmp-4.25.1, stdlib-2.0
---------------------------------------------------------------------
--- otp_mibs-1.1.1 --------------------------------------------------
---------------------------------------------------------------------
The otp_mibs-1.1.1 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of otp_mibs-1.1.1: erts-6.0, kernel-3.0,
mnesia-4.12, snmp-4.25.1, stdlib-2.0
---------------------------------------------------------------------
--- parsetools-2.1.2 ------------------------------------------------
---------------------------------------------------------------------
The parsetools-2.1.2 application can be applied independently of
other applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of parsetools-2.1.2: erts-6.0, kernel-3.0,
stdlib-2.5
---------------------------------------------------------------------
--- percept-0.8.12 --------------------------------------------------
---------------------------------------------------------------------
The percept-0.8.12 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13422 Application(s): percept
Remove deprecated erlang:now/0 calls
Full runtime dependencies of percept-0.8.12: erts-6.0, inets-5.10,
kernel-3.0, runtime_tools-1.8.14, stdlib-2.0
---------------------------------------------------------------------
--- public_key-1.2 --------------------------------------------------
---------------------------------------------------------------------
The public_key-1.2 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13408 Application(s): public_key
Handle PEM encoded EC public keys
Full runtime dependencies of public_key-1.2: asn1-3.0, crypto-3.3,
erts-6.0, kernel-3.0, stdlib-2.0
---------------------------------------------------------------------
--- reltool-0.7.1 ---------------------------------------------------
---------------------------------------------------------------------
The reltool-0.7.1 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13033 Application(s): reltool
Related Id(s): OTP-12719
Modify the code as motivated by a change of the Erlang
Parser (undefined is no longer automatically inserted
to the type of record fields without an initializer).
Full runtime dependencies of reltool-0.7.1: erts-7.0, kernel-3.0,
sasl-2.4, stdlib-2.0, tools-2.6.14, wx-1.2
---------------------------------------------------------------------
--- runtime_tools-1.10 ----------------------------------------------
---------------------------------------------------------------------
The runtime_tools-1.10 application can be applied independently of
other applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13576 Application(s): runtime_tools
Related Id(s): ERL-119
Fix bug in dbg:trace_port/2 that could cause the trace
ip driver to produce faulty error reports
"...(re)selected before stop_select was called for
driver trace_ip_drv".
--- Improvements and New Features ---
OTP-12345 Application(s): erts, runtime_tools
*** HIGHLIGHT ***
Add microstate accounting
Microstate accounting is a way to track which state the
different threads within ERTS are in. The main usage
area is to pin point performance bottlenecks by
checking which states the threads are in and then from
there figuring out why and where to optimize.
Since checking whether microstate accounting is on or
off is relatively expensive only a few of the states
are enabled by default and more states can be enabled
through configure.
There is a convinence module called msacc that has been
added to runtime_tools that can assist in gathering and
interpreting the data from Microstate accounting.
For more information see
erlang:statistics(microstate_accounting, _) and the
msacc module in runtime_tools.
OTP-13481 Application(s): observer, runtime_tools
Update observer GUI to support tracing on ports, and to
set matchspecs for send/receive. This required some
minor bugfixes in runtime_tools/dbg.
OTP-13500 Application(s): observer, runtime_tools
Update dbg and ttb to work with a tracer module as
tracer and tracing on ports.
OTP-13502 Application(s): runtime_tools
Updated dbg to accept the new trace options
monotonic_timestamp and strict_monotonic_timestamp.
OTP-13532 Application(s): erts, runtime_tools
*** POTENTIAL INCOMPATIBILITY ***
Introduce LTTng tracing via Erlang tracing.
For LTTng to be enabled OTP needs to be built with
configure option --with-dynamic-trace=lttng.
The dynamic trace module dyntrace is now capable to be
used as a LTTng sink for Erlang tracing. For a list of
all tracepoints, see Runtime Tools User's Guide .
This feature also introduces an incompatible change in
trace tags. The trace tags gc_start and gc_end has been
split into gc_minor_start, gc_minor_end and
gc_major_start, gc_major_end.
Full runtime dependencies of runtime_tools-1.10: erts-8.0,
kernel-5.0, mnesia-4.12, stdlib-3.0
---------------------------------------------------------------------
--- sasl-3.0 --------------------------------------------------------
---------------------------------------------------------------------
The sasl-3.0 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13184 Application(s): sasl
*** POTENTIAL INCOMPATIBILITY ***
The module 'overload' is removed.
Full runtime dependencies of sasl-3.0: erts-8.0, kernel-5.0,
stdlib-3.0, tools-2.6.14
---------------------------------------------------------------------
--- snmp-5.2.3 ------------------------------------------------------
---------------------------------------------------------------------
The snmp-5.2.3 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of snmp-5.2.3: crypto-3.3, erts-6.0,
kernel-3.0, mnesia-4.12, runtime_tools-1.8.14, stdlib-2.5
---------------------------------------------------------------------
--- ssh-4.3 ---------------------------------------------------------
---------------------------------------------------------------------
The ssh-4.3 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13131 Application(s): ssh
Some time optimization mainly in message encoding.
OTP-13175 Application(s): ssh
Optimized the sftp client time by setting new packet
and window sizes.
OTP-13267 Application(s): ssh
The ssh_connection_handler module in SSH is changed and
now uses the new behaviour gen_statem.
The module can be used as an example of a gen_statem
callback module but with a warning: This commit of ssh
is just a straightforward port from gen_fsm to
gen_statem with some code cleaning. Since the state
machine and the state callbacks are almost unchanged
the ssh module does not demonstrate the full potential
of the new behaviour.
The "new" state machine uses compund states. The ssh
server and client state machines are quite similar but
differences exist. With gen_fsm there were flags in the
user data which in fact implemented "substates". Now
with gen_statem those are made explicit in the state
names, eg the state userauth and the binary role-flag
becomes the two state names {userauth, server} and
{userauth, client}.
OTP-13347 Application(s): ssh
Related Id(s): ERL-86
The {error, Reason} tuples returned from ssh_sftp api
functions are described.
OTP-13527 Application(s): ssh
It is now possible to call ssh:daemon/{1,2,3} with
Port=0. This makes the daemon select a free listening
tcp port before opening it. To find this port number
after the call, use the new function ssh:daemon_info/1.
See the reference manual for details.
Full runtime dependencies of ssh-4.3: crypto-3.3, erts-6.0,
kernel-3.0, public_key-1.1, stdlib-3.0
---------------------------------------------------------------------
--- ssl-8.0 ---------------------------------------------------------
---------------------------------------------------------------------
The ssl-8.0 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13635 Application(s): ssl
Timeouts may have the value 0, gauards have been
corrected to allow this
--- Improvements and New Features ---
OTP-13195 Application(s): ssl
*** POTENTIAL INCOMPATIBILITY ***
Remove default support for DES cipher suites
OTP-13214 Application(s): crypto, ssl
Deprecate the function crypto:rand_bytes and make sure
that crypto:strong_rand_bytes is used in all places
that are cryptographically significant.
OTP-13255 Application(s): ssl
Better error handling of user error during TLS upgrade.
ERL-69 is solved by gen_statem rewrite of ssl
application.
OTP-13256 Application(s): ssl
Provide user friendly error message when crypto rejects
a key
OTP-13429 Application(s): ssl
Related Id(s): Pull#956
TLS distribution connections now allow specifying the
options verify_fun, crl_check and crl_cache. See the
documentation. GitHub pull req #956 contributed by
Magnus Henoch.
OTP-13431 Application(s): ssl
Remove confusing error message when closing a
distributed erlang node running over TLS
OTP-13464 Application(s): ssl
*** HIGHLIGHT ***
ssl now uses gen_statem instead of gen_fsm to implement
the ssl connection process, this solves some timing
issues in addtion to making the code more intuitive as
the behaviour can be used cleanly instead of having a
lot of workaround for shortcomings of the behaviour.
OTP-13546 Application(s): ssl
Correct ssl:prf/5 to use the negotiated cipher suites
prf function in ssl:prf/5 instead of the default prf.
OTP-13629 Application(s): ssl
Some legacy TLS 1.0 software does not tolerate the
1/n-1 content split BEAST mitigation technique. Add a
beast_mitigation SSL option (defaulting to
one_n_minus_one) to select or disable the BEAST
mitigation technique.
OTP-13632 Application(s): ssl
*** HIGHLIGHT ***
Enhance error log messages to facilitate for users to
understand the error
OTP-13636 Application(s): ssl
Incresed default DH params to 2048-bit
Full runtime dependencies of ssl-8.0: crypto-3.3, erts-7.0,
inets-5.10.7, kernel-3.0, public_key-1.0, stdlib-3.0
---------------------------------------------------------------------
--- stdlib-3.0 ------------------------------------------------------
---------------------------------------------------------------------
The stdlib-3.0 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13260 Application(s): stdlib
Related Id(s): seq13002
Fix a race bug affecting dets:open_file/2.
OTP-13459 Application(s): erts, stdlib
Don't search for non-existing Map keys twice
For maps:get/2,3 and maps:find/2, searching for an
immediate key, e.g. an atom, in a small map, the search
was performed twice if the key did not exist.
OTP-13531 Application(s): stdlib
Avoid stray corner-case math errors on Solaris, e.g. an
error is thrown on undeflows in exp() and pow() when it
shouldn't be.
OTP-13534 Application(s): stdlib
Related Id(s): ERL-135
Fix linting of map key variables
Map keys cannot be unbound and then used in parallel
matching.
Example: #{ K := V } = #{ k := K } = M. This is illegal
if 'K' is not bound.
OTP-13602 Application(s): stdlib
Fixed a bug in re on openbsd where sometimes re:run
would return an incorrect result.
OTP-13618 Application(s): stdlib
Related Id(s): PR-1001
To avoid potential timer bottleneck on supervisor
restart, timer server is no longer used when the
supervisor is unable to restart a child.
--- Improvements and New Features ---
OTP-10292 Application(s): stdlib
The types of The Abstract Format in the erl_parse
module have been refined.
OTP-11879 Application(s): stdlib
*** POTENTIAL INCOMPATIBILITY ***
Undocumented syntax for function specifications, -spec
F/A :: Domain -> Range, has been removed (without
deprecation).
Using the is_subtype(V, T) syntax for constraints (in
function specifications) is no longer documented, and
the newer syntax V :: T should be used instead. The
Erlang Parser still recognizes the is_subtype syntax,
and will continue to do so for some time.
OTP-12502 Application(s): stdlib
Related Id(s): OTP-12501
The 'random' module has been deprecated. Use the 'rand'
module instead.
OTP-12719 Application(s): stdlib
*** POTENTIAL INCOMPATIBILITY ***
Background: In record fields with a type declaration
but without an initializer, the Erlang parser inserted
automatically the singleton type 'undefined' to the
list of declared types, if that value was not present
there. That is, the record declaration:
-record(rec, {f1 :: float(), f2 = 42 :: integer(), f3
:: some_mod:some_typ()}).
was translated by the parser to:
-record(rec, {f1 :: float() | 'undefined', f2 = 42 ::
integer(), f3 :: some_mod:some_typ() | 'undefined'}).
The rationale for this was that creation of a "dummy"
#rec{} record should not result in a warning from
dialyzer that, for example, the implicit initialization
of the #rec.f1 field violates its type declaration.
Problems: This seemingly innocent action has some
unforeseen consequences.
For starters, there is no way for programmers to
declare that e.g. only floats make sense for the f1
field of #rec{} records when there is no "obvious"
default initializer for this field. (This also affects
tools like PropEr that use these declarations produced
by the Erlang parser to generate random instances of
records for testing purposes.)
It also means that dialyzer does not warn if e.g. an
is_atom/1 test or something more exotic like an
atom_to_list/1 call is performed on the value of the f1
field.
Similarly, there is no way to extend dialyzer to warn
if it finds record constructions where f1 is not
initialized to some float.
Last but not least, it is semantically problematic when
the type of the field is an opaque type: creating a
union of an opaque and a structured type is very
problematic for analysis because it fundamentally
breaks the opacity of the term at that point.
Change: To solve these problems the parser will not
automatically insert the 'undefined' value anymore;
instead the user has the option to choose the places
where this value makes sense (for the field) and where
it does not and insert the | 'undefined' there
manually.
Consequences of this change: This change means that
dialyzer will issue a warning for all places where
records with uninitialized fields are created and those
fields have a declared type that is incompatible with
'undefined' (e.g. float()). This warning can be
suppressed easily by adding | 'undefined' to the type
of this field. This also adds documentation that the
user really intends to create records where this field
is uninitialized.
OTP-12861 Application(s): stdlib
Remove deprecated functions in the modules erl_scan and
erl_parse.
OTP-13059 Application(s): compiler, stdlib
*** HIGHLIGHT ***
The pre-processor can now expand the ?FUNCTION_NAME and
?FUNCTION_ARITY macros.
OTP-13065 Application(s): stdlib
Related Id(s): PR-960
*** HIGHLIGHT ***
A new behaviour gen_statem has been implemented. It has
been thoroughly reviewed, is stable enough to be used
by at least two heavy OTP applications, and is here to
stay. But depending on user feedback, we do not expect
but might find it necessary to make minor not backwards
compatible changes into OTP-20.0, so its state can be
designated as "not quite experimental"...
The gen_statem behaviour is intended to replace gen_fsm
for new code. It has the same features and add some
really useful:
-- State code is gathered
-- The state can be any term
-- Events can be postponed
-- Events can be self generated
-- A reply can be sent from a later state
-- There can be multiple sys traceable replies
The callback model(s) for gen_statem differs from the
one for gen_fsm, but it is still fairly easy to rewrite
from gen_fsm to gen_statem.
OTP-13082 Application(s): stdlib
Optimize binary:split/2 and binary:split/3 with native
BIF implementation.
OTP-13148 Application(s): stdlib
*** POTENTIAL INCOMPATIBILITY ***
Background: The types of record fields have since R12B
been put in a separate form by epp:parse_file(),
leaving the record declaration form untyped. The
separate form, however, does not follow the syntax of
type declarations, and parse transforms inspecting
-type() attributes need to know about the special
syntax. Since the compiler stores the return value of
epp:parse_file() as debug information in the abstract
code chunk ("Abst" or abstract_code), tools too need to
know about the special syntax, if they inspect -type()
attributes in abstract code.
Change: No separate type form is created by
epp:parse_file(), but the type information is kept in
the record fields. This means that all parse transforms
and all tools inspecting -record() declarations need to
recognize {typed_record_field, Field, Type}.
OTP-13152 Application(s): stdlib
Unsized fields of the type bytes in binary generators
are now forbidden. (The other ways of writing unsized
fields, such as binary, are already forbidden.)
OTP-13153 Application(s): stdlib
The type map() is built-in, and cannot be redefined.
OTP-13229 Application(s): stdlib
Related Id(s): ERL-55
Let dets:open_file() exit with a badarg message if
given a raw file name (a binary).
OTP-13392 Application(s): stdlib
Add filename:basedir/2,3
basedir returns suitable path(s) for 'user_cache',
'user_config', 'user_data', 'user_log', 'site_config'
and 'site_data'. On linux and linux like systems the
paths will respect the XDG environment variables.
OTP-13476 Application(s): stdlib
There are new preprocessor directives -error(Term) and
-warning(Term) to cause a compilation error or a
compilation warning, respectively.
OTP-13487 Application(s): erts, stdlib
Optimize '++' operator and lists:append/2 by using a
single pass to build a new list while checking for
properness.
OTP-13522 Application(s): erts, stdlib
Related Id(s): PR-1025
Add maps:update_with/3,4 and maps:take/2
OTP-13523 Application(s): stdlib
lists:join/2 has been added. Similar to string:join/2
but works with arbitrary lists.
OTP-13524 Application(s): stdlib
Related Id(s): PR-1002
Obfuscate asserts to make Dialyzer shut up.
OTP-13623 Application(s): stdlib
Relax translation of initial calls in proc_lib, i.e.
remove the restriction to only do the translation for
gen_server and gen_fsm. This enables user defined gen
based generic callback modules to be displayed nicely
in c:i() and observer.
OTP-13642 Application(s): stdlib
Lower ETS hash load factor to improve lookup
performance at the cost of less than one word per
object.
Full runtime dependencies of stdlib-3.0: compiler-5.0, crypto-3.3,
erts-8.0, kernel-5.0, sasl-3.0
---------------------------------------------------------------------
--- syntax_tools-2.0 ------------------------------------------------
---------------------------------------------------------------------
The syntax_tools-2.0 application can be applied independently of
other applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-12863 Application(s): syntax_tools
*** POTENTIAL INCOMPATIBILITY ***
The abstract data type in erl_syntax is augmented with
types and function specifications.
The module erl_prettypr pretty prints types and
function specification, and the output can be parsed.
The types of record fields are no longer ignored. As a
consequence erl_syntax_lib:analyze_record_field/1
returns {Default, Type} instead of Default. The
functions analyze_record_attribute, analyze_attribute,
analyze_form, and analyze_forms in the erl_syntax_lib
module are also affected by this incompatible change.
Full runtime dependencies of syntax_tools-2.0: compiler-7.0,
erts-8.0, kernel-5.0, stdlib-3.0
---------------------------------------------------------------------
--- tools-2.8.4 -----------------------------------------------------
---------------------------------------------------------------------
The tools-2.8.4 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13499 Application(s): tools
Update fprof to use the new 'spawned' trace event to
determine when a process has been created.
--- Improvements and New Features ---
OTP-13610 Application(s): tools
Various emacs mode improvements, such as better tags
support.
Full runtime dependencies of tools-2.8.4: compiler-5.0, erts-7.0,
inets-5.10, kernel-3.0, runtime_tools-1.8.14, stdlib-2.5
---------------------------------------------------------------------
--- typer-0.9.11 ----------------------------------------------------
---------------------------------------------------------------------
The typer-0.9.11 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of typer-0.9.11: compiler-5.0,
dialyzer-2.7, erts-6.0, hipe-3.10.3, kernel-3.0, stdlib-2.0
---------------------------------------------------------------------
--- wx-1.7 ----------------------------------------------------------
---------------------------------------------------------------------
The wx-1.7 application can be applied independently of other
applications on a full OTP 19 installation.
--- Fixed Bugs and Malfunctions ---
OTP-13491 Application(s): wx
Fixed bugs which could cause called functions to be
invoked twice or not at all when callbacks where
invoked at the same time.
--- Improvements and New Features ---
OTP-13553 Application(s): wx
*** POTENTIAL INCOMPATIBILITY ***
Changed atom 'boolean' fields in #wxMouseState{} to
'boolean()'.
Moved out arguments in wxListCtrl:hitTest to result.
Removed no-op functions in wxGauge that have been
removed from wxWidgets-3.1.
Full runtime dependencies of wx-1.7: erts-6.0, kernel-3.0, stdlib-2.0
---------------------------------------------------------------------
--- xmerl-1.3.11 ----------------------------------------------------
---------------------------------------------------------------------
The xmerl-1.3.11 application can be applied independently of other
applications on a full OTP 19 installation.
--- Improvements and New Features ---
OTP-13551 Application(s): asn1, cosEvent, cosEventDomain,
cosFileTransfer, cosNotification, cosProperty, cosTime,
cosTransactions, eldap, erl_docgen, gs, ic, megaco,
orber, otp_mibs, parsetools, snmp, typer, xmerl
Internal changes
Full runtime dependencies of xmerl-1.3.11: erts-6.0, kernel-3.0,
stdlib-2.5
---------------------------------------------------------------------
--- Thanks to -------------------------------------------------------
---------------------------------------------------------------------
Aleksei Magusev, Alexey Lebedeff, Andreas Schultz, Andrew Bennett,
Byaruhanga Franklin, Constantin Rack, Daniel Sommermann, Daniil
Fedotov, Derek Brown, Diana Corbacho, Dmytro Lytovchenko, Dániel
Szoboszlay, Erik Norgren, FabioBatSilva, Jesper Louis Andersen, Joe
DeVivo, Johan Claesson, John Eckersberg, José Valim, Kenneth Lakin,
Kostis Sagonas, Loïc Hoguin, Luca Favatella, Lukas Larsson, Magnus
Henoch, Magnus Lång, Michael Klishin, Michael Santos, Michal Ptaszek,
Mikael Pettersson, Milton Inostroza, Nathaniel Waisbrot, Nikolaos S.
Papaspyrou, Péter Gömöri, Richard Carlsson, Rico Antonio Felix, Sean
Charles, Serge Aleynikov, Simon Cornish, Stavros Aronis, Stefan
Strigler, Steve Vinoski, Stuart Thackray, Ulf Wiger, Vlad Dumitrescu,
Yiannis Tsiouris, Yuki Ito, def_null, eksperimental, jrobhoward,
tmanevik, xsipewe, xuming
---------------------------------------------------------------------
---------------------------------------------------------------------
---------------------------------------------------------------------
|