aboutsummaryrefslogtreecommitdiffstats
path: root/docs/release-notes.rst
blob: 6c05923108eec68fa93c7a838b46c4de0ab44f81 (plain)
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
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. _release_notes:

=============
Release Notes
=============

Version: 1.13.6
===============

:Release Date: 2023-10-27

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.1.1

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.9.0

Release Purpose
----------------
SDC Montreal release

**Epics**

N/A


**Stories**

*  `SDC-4637 <https://jira.onap.org/browse/SDC-4637>`_ - TLS sdc-be: Truststore & keystore handling for cassandra
*  `SDC-4642 <https://jira.onap.org/browse/SDC-4642>`_ - Add support for TLS to sdc-FE
*  `SDC-4639 <https://jira.onap.org/browse/SDC-4639>`_ - Add support for TLS to sdc-BE
*  `SDC-4654 <https://jira.onap.org/browse/SDC-4654>`_ - Increase unit test coverage


**Bug Fixes**

*  `SDC-4674 <https://jira.onap.org/browse/SDC-4674>`_ - Exception thrown from sdc-FE healthcheck when using http
*  `SDC-4650 <https://jira.onap.org/browse/SDC-4650>`_ - JUEL expression syntax prevents download
*  `SDC-4667 <https://jira.onap.org/browse/SDC-4667>`_ - service role and service function metadata not imported
*  `SDC-4668 <https://jira.onap.org/browse/SDC-4668>`_ - Schema being added to non list properties
*  `SDC-4665 <https://jira.onap.org/browse/SDC-4665>`_ - service role metadata cleared after service creation
*  `SDC-4661 <https://jira.onap.org/browse/SDC-4661>`_ - Unable to import service template with interface
*  `SDC-4664 <https://jira.onap.org/browse/SDC-4664>`_ - Null value in model node type properties after VFC update
*  `SDC-4663 <https://jira.onap.org/browse/SDC-4663>`_ - Null value in model node type properties
*  `SDC-4662 <https://jira.onap.org/browse/SDC-4662>`_ - Certifying mechanism changing structure of csar
*  `SDC-4607 <https://jira.onap.org/browse/SDC-4607>`_ - No properties found when trying to add a node filter to a component instance
*  `SDC-4649 <https://jira.onap.org/browse/SDC-4649>`_ - Declare Output button disabled after saving a default value


**Tasks**

*  `SDC-4666 <https://jira.onap.org/browse/SDC-4666>`_ - Milestone updates required
*  `SDC-4640 <https://jira.onap.org/browse/SDC-4640>`_ - Revert SDC-4640 Remove generation of csar.meta
*  `SDC-4653 <https://jira.onap.org/browse/SDC-4653>`_ - PACKAGES UPGRADES IN DIRECT DEPENDENCIES FOR MONTREAL RELEASE




Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.13.5
===============

:Release Date: 2023-10-09

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.1

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.8.0

Release Purpose
----------------
SDC Montreal early release

**Epics**

N/A


**Stories**

*  `SDC-4647 <https://jira.onap.org/browse/SDC-4647>`_ - Import service with milestones on instance operations
*  `SDC-4635 <https://jira.onap.org/browse/SDC-4635>`_ - Persisting of map entry property values
*  `SDC-4646 <https://jira.onap.org/browse/SDC-4646>`_ - Import VFC with operation milestones
*  `SDC-4636 <https://jira.onap.org/browse/SDC-4636>`_ - Hide or disable milestone filters
*  `SDC-4621 <https://jira.onap.org/browse/SDC-4621>`_ - TLS support in sdc-BE (partially)
*  `SDC-4620 <https://jira.onap.org/browse/SDC-4620>`_ - Support setting interfaces on instances
*  `SDC-4601 <https://jira.onap.org/browse/SDC-4601>`_ - UI Support for operation milestones
*  `SDC-4590 <https://jira.onap.org/browse/SDC-4590>`_ - Backend support for operation milestone filters
*  `SDC-4582 <https://jira.onap.org/browse/SDC-4582>`_ - Backend support for operation milestones with activity inputs
*  `SDC-4577 <https://jira.onap.org/browse/SDC-4577>`_ - Backend support for operation milestones with activities
*  `SDC-4622 <https://jira.onap.org/browse/SDC-4622>`_ - Provide the ability to add user defined values to Service Role / Function metadata


**Bug Fixes**

*  `SDC-4648 <https://jira.onap.org/browse/SDC-4648>`_ - Error updating milestone in operation on instance in service
*  `SDC-4628 <https://jira.onap.org/browse/SDC-4628>`_ - Fail to import service with node filter using 'in_range'
*  `SDC-4645 <https://jira.onap.org/browse/SDC-4645>`_ - Missing Substitution Map Node after update Service
*  `SDC-4644 <https://jira.onap.org/browse/SDC-4644>`_ - Issues found when trying to create activities in interface operations
*  `SDC-4643 <https://jira.onap.org/browse/SDC-4643>`_ - missing properties after service import
*  `SDC-4638 <https://jira.onap.org/browse/SDC-4638>`_ - CSAR contains duplicate syntax
*  `SDC-4634 <https://jira.onap.org/browse/SDC-4634>`_ - NPE on service import
*  `SDC-4633 <https://jira.onap.org/browse/SDC-4633>`_ - Substitution Node not updated during import
*  `SDC-4632 <https://jira.onap.org/browse/SDC-4632>`_ - Outputs - default values / template attributes
*  `SDC-4627 <https://jira.onap.org/browse/SDC-4627>`_ - Order of TOSCA.meta field is hardcoded
*  `SDC-4626 <https://jira.onap.org/browse/SDC-4626>`_ - TOSCA-Meta-File-Version and CSAR-Version accept only following format X.Y
*  `SDC-4629 <https://jira.onap.org/browse/SDC-4629>`_ - Unable to import service with missing 'ecompGeneratedNaming' in metadata
*  `SDC-4630 <https://jira.onap.org/browse/SDC-4630>`_ - Output names are changed after import
*  `SDC-4625 <https://jira.onap.org/browse/SDC-4625>`_ - Changing VFC version wipes List type property values


**Tasks**

*  `SDC-4641 <https://jira.onap.org/browse/SDC-4641>`_ - Allow import of handcrafted templates with specific substitution filter format
*  `SDC-4640 <https://jira.onap.org/browse/SDC-4640>`_ - Remove generation of csar.meta




Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A
    
    
Version: 1.13.4
===============

:Release Date: 2023-09-15

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.1

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.8.0

Release Purpose
----------------
SDC Montreal early release

**Epics**

N/A


**Stories**

*  `SDC-4623 <https://jira.onap.org/browse/SDC-4623>`_ - Improved error handling on service import
*  `SDC-4605 <https://jira.onap.org/browse/SDC-4605>`_ - UI support for service update via csar import
*  `SDC-4578 <https://jira.onap.org/browse/SDC-4578>`_ - Create plugin point for csar generation
*  `SDC-4579 <https://jira.onap.org/browse/SDC-4579>`_ - Add endpoint to update service by csar import
*  `SDC-4616 <https://jira.onap.org/browse/SDC-4616>`_ - User specified output name
*  `SDC-4614 <https://jira.onap.org/browse/SDC-4614>`_ - Support for the policy type definition upgrade
*  `SDC-4602 <https://jira.onap.org/browse/SDC-4602>`_ - UI support for interface definitions on VFC instances
*  `SDC-4613 <https://jira.onap.org/browse/SDC-4613>`_ - Import service with outputs mapped to implicit attributes
*  `SDC-4612 <https://jira.onap.org/browse/SDC-4612>`_ - Implicit attributes in get_attribute list
*  `SDC-4611 <https://jira.onap.org/browse/SDC-4611>`_ - Declare implicit attributes as outputs
*  `SDC-4604 <https://jira.onap.org/browse/SDC-4604>`_ - UI support for service update via tosca template import
*  `SDC-4588 <https://jira.onap.org/browse/SDC-4588>`_ - Import VFC with timeout in interface operation implementation
*  `SDC-4593 <https://jira.onap.org/browse/SDC-4593>`_ - System should validate JSON anywhere it is added as property value
*  `SDC-4575 <https://jira.onap.org/browse/SDC-4575>`_ - UI support for timeout in interface operation implementation
*  `SDC-4576 <https://jira.onap.org/browse/SDC-4576>`_ - Add endpoint to update service by tosca template import
*  `SDC-4580 <https://jira.onap.org/browse/SDC-4580>`_ - Add backend support for timeout in interface operation implementation
*  `SDC-4562 <https://jira.onap.org/browse/SDC-4562>`_ - Support TOSCA functions of complex list/map entries in composition view


**Bug Fixes**

*  `SDC-4618 <https://jira.onap.org/browse/SDC-4618>`_ - Error when importing output with common name in attributes and properties
*  `SDC-4615 <https://jira.onap.org/browse/SDC-4615>`_ - Stringbuilder UI - two scroll bars overlapping
*  `SDC-4603 <https://jira.onap.org/browse/SDC-4603>`_ - Unable to add metadata on inputs
*  `SDC-4610 <https://jira.onap.org/browse/SDC-4610>`_ - Surrounding a value in quotes can lead to failure to parse the value
*  `SDC-4606 <https://jira.onap.org/browse/SDC-4606>`_ - Error thrown from Jsoup validation for < char
*  `SDC-4599 <https://jira.onap.org/browse/SDC-4599>`_ - Fail to import service with CP
*  `SDC-4554 <https://jira.onap.org/browse/SDC-4554>`_ - Custom tosca functions with valid_values and in_range operators not showing properly
*  `SDC-4586 <https://jira.onap.org/browse/SDC-4586>`_ - Changing VFC version on template wipes previously assigned property values based on get_input
*  `SDC-4598 <https://jira.onap.org/browse/SDC-4598>`_ - 'Tosca Function' get_input in Properties Assignment error
*  `SDC-4591 <https://jira.onap.org/browse/SDC-4591>`_ - Import use case fails when interfaces in template do not exist in system
*  `SDC-4596 <https://jira.onap.org/browse/SDC-4596>`_ - Fail to import service with get_property of map-of-string
*  `SDC-4587 <https://jira.onap.org/browse/SDC-4587>`_ - Creation date only works with requests that return 1 service (API)
*  `SDC-4583 <https://jira.onap.org/browse/SDC-4583>`_ - Unable to drag a VFC on to composition if an existing VFC instance has the same name
*  `SDC-4581 <https://jira.onap.org/browse/SDC-4581>`_ - Unable to save yaml content in node filter
*  `SDC-4556 <https://jira.onap.org/browse/SDC-4556>`_ - Upgrading a node does not bring its new capabilities


**Tasks**

*  `SDC-4608 <https://jira.onap.org/browse/SDC-4608>`_ - Improve handling 'empty'/null string in Service fields
*  `SDC-4563 <https://jira.onap.org/browse/SDC-4563>`_ - Remove unused code
*  `SDC-4600 <https://jira.onap.org/browse/SDC-4600>`_ - Replace deprecated maven parameters
*  `SDC-4597 <https://jira.onap.org/browse/SDC-4597>`_ - Add DOT to property's name permitted chars
*  `SDC-4592 <https://jira.onap.org/browse/SDC-4592>`_ - Update error message for missing sub mapping properties
*  `SDC-4589 <https://jira.onap.org/browse/SDC-4589>`_ - Introduce error message for missing properties during the service import
*  `SDC-4585 <https://jira.onap.org/browse/SDC-4585>`_ - Rollback nested transaction
*  `SDC-4569 <https://jira.onap.org/browse/SDC-4569>`_ - Replace/remove outdated dependencies
*  `SDC-4565 <https://jira.onap.org/browse/SDC-4565>`_ - Improvement to maven multi-thread run



Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A
    
    
Version: 1.13.3
===============

:Release Date: 2023-07-14

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.1

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.8.0

Release Purpose
----------------
SDC London release

**Epics**

N/A


**Stories**

N/A


**Bug Fixes**

*  `SDC-4573 <https://jira.onap.org/browse/SDC-4573>`_ - Import service with JUEL-function produces wrong UI representation
*  `SDC-4572 <https://jira.onap.org/browse/SDC-4572>`_ - Error displaying node filters
*  `SDC-4571 <https://jira.onap.org/browse/SDC-4571>`_ - Issue import node filters


**Tasks**

N/A



Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A
    
    
Version: 1.13.2
===============

:Release Date: 2023-07-13

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.1

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.8.0

Release Purpose
----------------
SDC London release

**Epics**

N/A


**Stories**

*  `SDC-4561 <https://jira.onap.org/browse/SDC-4561>`_ - UI support for metadata when editing properties of VFCs
*  `SDC-4558 <https://jira.onap.org/browse/SDC-4558>`_ - Include version in metadata
*  `SDC-4528 <https://jira.onap.org/browse/SDC-4528>`_ - Support TOSCA functions of complex types in composition view
*  `SDC-4555 <https://jira.onap.org/browse/SDC-4555>`_ - Do not collapse complex property when setting element value
*  `SDC-4471 <https://jira.onap.org/browse/SDC-4471>`_ - Create test model
*  `SDC-4537 <https://jira.onap.org/browse/SDC-4537>`_ - Validation of datatype YAML prior to import


**Bug Fixes**

*  `SDC-4568 <https://jira.onap.org/browse/SDC-4568>`_ - Service import issues
*  `SDC-4564 <https://jira.onap.org/browse/SDC-4564>`_ - JUEL function not displayed correctly in UI (ok in template)
*  `SDC-4566 <https://jira.onap.org/browse/SDC-4566>`_ - Occurrences and instance count do not survive import
*  `SDC-4527 <https://jira.onap.org/browse/SDC-4527>`_ - Unable to set tosca function on complex type on input operation
*  `SDC-4551 <https://jira.onap.org/browse/SDC-4551>`_ - Validation problems when trying to set an operation input of complex type
*  `SDC-4529 <https://jira.onap.org/browse/SDC-4529>`_ - Certifying a template with two connected services results in error (using service proxy in the relationship)


**Tasks**

*  `SDC-4569 <https://jira.onap.org/browse/SDC-4569>`_ - Replace outdated dependencies
*  `SDC-4567 <https://jira.onap.org/browse/SDC-4567>`_ - Fix missing logs SDC-BE
*  `SDC-4560 <https://jira.onap.org/browse/SDC-4560>`_ - Update outdated/vulnerable dependencies
*  `SDC-4559 <https://jira.onap.org/browse/SDC-4559>`_ - Remove unused 'org.springframework.boot' dependency
*  `SDC-4553 <https://jira.onap.org/browse/SDC-4553>`_ - Separate execution of UI and API integration tests to speed up verify feedback
*  `SDC-4557 <https://jira.onap.org/browse/SDC-4557>`_ - Update SDC openapi files



Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A
    
    
Version: 1.13.1
===============

:Release Date: 2023-06-23

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.1

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.8.0

Release Purpose
----------------
SDC London release

**Epics**

N/A


**Stories**

*  `SDC-4545 <https://jira.onap.org/browse/SDC-4545>`_ - Support custom tosca functions in operation input values
*  `SDC-4521 <https://jira.onap.org/browse/SDC-4521>`_ - Order response from external assets API
*  `SDC-4520 <https://jira.onap.org/browse/SDC-4520>`_ - Additional metadata in external assets api
*  `SDC-4540 <https://jira.onap.org/browse/SDC-4540>`_ - Enable setting of sasl.mechanism for Kafka communincation
*  `SDC-4409 <https://jira.onap.org/browse/SDC-4409>`_ - Update external query api with new query params


**Bug Fixes**

*  `SDC-4543 <https://jira.onap.org/browse/SDC-4543>`_ - Cannot set instance property
*  `SDC-4498 <https://jira.onap.org/browse/SDC-4498>`_ - Python Code Updates: Service Design and Creation (SDC)
*  `SDC-4539 <https://jira.onap.org/browse/SDC-4539>`_ - Substitution Mapping node properties not updated
*  `SDC-4541 <https://jira.onap.org/browse/SDC-4541>`_ - Fix normative VFCs being set to non normative during service import
*  `SDC-4538 <https://jira.onap.org/browse/SDC-4538>`_ - Cannot set TOSCA function value using nested values for get_input
*  `SDC-4535 <https://jira.onap.org/browse/SDC-4535>`_ - Node filter boolean values output as strings
*  `SDC-4522 <https://jira.onap.org/browse/SDC-4522>`_ - Fix different issues when adding properties
*  `SDC-4530 <https://jira.onap.org/browse/SDC-4530>`_ - NPE in ServiceImportBusinessLogic


**Tasks**

*  `SDC-4548 <https://jira.onap.org/browse/SDC-4548>`_ - Fix docs failure
*  `SDC-4536 <https://jira.onap.org/browse/SDC-4536>`_ - Improve test coverage
*  `SDC-4542 <https://jira.onap.org/browse/SDC-4542>`_ - Disable DMaaP if Kafka active
*  `SDC-4534 <https://jira.onap.org/browse/SDC-4534>`_ - No error on invalid index
*  `SDC-4532 <https://jira.onap.org/browse/SDC-4532>`_ - Remove unused Neo4jErrorsConfiguration
*  `SDC-4531 <https://jira.onap.org/browse/SDC-4531>`_ - Improve error handling for user-created Policies
*  `SDC-4526 <https://jira.onap.org/browse/SDC-4526>`_ - Improve build image time


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A


Version: 1.13.0
===============

:Release Date: 2023-06-02

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.1

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.8.0

Release Purpose
----------------
SDC London release

**Epics**

N/A


**Stories**

*  `SDC-4517 <https://jira.onap.org/browse/SDC-4517>`_ - Support INDEX in node filter tosca functions
*  `SDC-4442 <https://jira.onap.org/browse/SDC-4442>`_ - Support TOSCA functions in operation inputs
*  `SDC-4506 <https://jira.onap.org/browse/SDC-4506>`_ - Support import of service with no substitution mapping node type
*  `SDC-4505 <https://jira.onap.org/browse/SDC-4505>`_ - Support index in tosca functions (nested lists)
*  `SDC-4493 <https://jira.onap.org/browse/SDC-4493>`_ - UI support for default custom function names with get_input structure
*  `SDC-4497 <https://jira.onap.org/browse/SDC-4497>`_ - Disabling archive functionality for normatives
*  `SDC-4395 <https://jira.onap.org/browse/SDC-4395>`_ - Support additional operands for node filters
*  `SDC-4435 <https://jira.onap.org/browse/SDC-4435>`_ - Enable using substitution mapping type directly
*  `SDC-4472 <https://jira.onap.org/browse/SDC-4472>`_ - Stringbuilder support for INDEX token on all functions
*  `SDC-4473 <https://jira.onap.org/browse/SDC-4473>`_ - UI support for default custom function names
*  `SDC-4479 <https://jira.onap.org/browse/SDC-4479>`_ - Support service import with custom tosca functions
*  `SDC-4469 <https://jira.onap.org/browse/SDC-4469>`_ - Support definition of custom tosca function names through configuration
*  `SDC-4477 <https://jira.onap.org/browse/SDC-4477>`_ - VFC Property default value enforced forced to comply with restraints
*  `SDC-4474 <https://jira.onap.org/browse/SDC-4474>`_ - Sort data type drop down lists in add property
*  `SDC-4466 <https://jira.onap.org/browse/SDC-4466>`_ - UI support for custom functions
*  `SDC-4455 <https://jira.onap.org/browse/SDC-4455>`_ - Backend support for custom functions


**Bug Fixes**

*  `SDC-4518 <https://jira.onap.org/browse/SDC-4518>`_ - Actual sub mapping node not used during import
*  `SDC-4515 <https://jira.onap.org/browse/SDC-4515>`_ - Error when adding valid_values constraint to int property
*  `SDC-4523 <https://jira.onap.org/browse/SDC-4523>`_ - Formatting error for operation input of complex type
*  `SDC-4475 <https://jira.onap.org/browse/SDC-4475>`_ - Adding certain characters into property default value causes VFC to break
*  `SDC-4510 <https://jira.onap.org/browse/SDC-4510>`_ - Bug fixes on tosca function
*  `SDC-4512 <https://jira.onap.org/browse/SDC-4512>`_ - Various bugs related to custom tosca functions
*  `SDC-4511 <https://jira.onap.org/browse/SDC-4511>`_ - Not possible to edit property following import service with custom tosca function
*  `SDC-4508 <https://jira.onap.org/browse/SDC-4508>`_ - Remove need for USER_ID header
*  `SDC-4503 <https://jira.onap.org/browse/SDC-4503>`_ - Invalid json being set on propertyConstraints
*  `SDC-4509 <https://jira.onap.org/browse/SDC-4509>`_ - NPE when using concat TOSCA function
*  `SDC-4507 <https://jira.onap.org/browse/SDC-4507>`_ - Service with custom functions not importing correctly
*  `SDC-4500 <https://jira.onap.org/browse/SDC-4500>`_ - Error in console when no default custom tosca functions
*  `SDC-4502 <https://jira.onap.org/browse/SDC-4502>`_ - Error in handling of operation input of complex type
*  `SDC-4468 <https://jira.onap.org/browse/SDC-4468>`_ - SVC4301 RESTRICTED_OPERATION on service composition
*  `SDC-4482 <https://jira.onap.org/browse/SDC-4482>`_ - Fix complex list/map entries in composition view
*  `SDC-4481 <https://jira.onap.org/browse/SDC-4481>`_ - Fix constraints on custom datatype not formatted correctly in CSAR


**Tasks**

*  `SDC-4525 <https://jira.onap.org/browse/SDC-4525>`_ - Exclude outdated transitive dependencies com.fasterxml.jackson.
*  `SDC-4519 <https://jira.onap.org/browse/SDC-4519>`_ - Update vulnerable dependencies
*  `SDC-4504 <https://jira.onap.org/browse/SDC-4504>`_ - Update vulnerable dependencies
*  `SDC-4496 <https://jira.onap.org/browse/SDC-4496>`_ - Update outdated gecko.driver
*  `SDC-4495 <https://jira.onap.org/browse/SDC-4495>`_ - Add retry option to wget commands
*  `SDC-4494 <https://jira.onap.org/browse/SDC-4494>`_ - Update Cassandra to 3.11.15
*  `SDC-4467 <https://jira.onap.org/browse/SDC-4467>`_ - Preparation for JDK17
*  `SDC-4470 <https://jira.onap.org/browse/SDC-4470>`_ - Upgrade vulnerable dependency


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A


Version: 1.12.5
===============

:Release Date: 2023-05-29

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.1

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.8.0

Release Purpose
----------------
SDC London release

**Epics**

N/A


**Stories**

N/A


**Bug Fixes**

*  `SDC-4508 <https://jira.onap.org/browse/SDC-4508>`_ - Remove need for USER_ID header
*  `SDC-4468 <https://jira.onap.org/browse/SDC-4468>`_ - SVC4301 RESTRICTED_OPERATION on service composition


**Tasks**

N/A


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.12.4
===============

:Release Date: 2023-04-03

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.1

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.8.0

Release Purpose
----------------
SDC London release

**Epics**

N/A


**Stories**

*  `SDC-4452 <https://jira.onap.org/browse/SDC-4452>`_ - Add robustness to type creation on service import
*  `SDC-4445 <https://jira.onap.org/browse/SDC-4445>`_ - Stringbuilder support for child elements of type list
*  `SDC-4439 <https://jira.onap.org/browse/SDC-4439>`_ - Support to change substitution mapping node or version after service creation
*  `SDC-4430 <https://jira.onap.org/browse/SDC-4430>`_ - Check for service property usage in sub mapping node change
*  `SDC-4451 <https://jira.onap.org/browse/SDC-4451>`_ - No rollback on import fail


**Bug Fixes**

N/A


**Tasks**

*  `SDC-4456 <https://jira.onap.org/browse/SDC-4456>`_ - Upgrade docker images to use Python 3


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.12.3
===============

:Release Date: 2023-03-24

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.1

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.8.0

Release Purpose
----------------
SDC London early release

**Epics**

N/A


**Stories**

*  `SDC-4438 <https://jira.onap.org/browse/SDC-4438>`_ - Allign properties import during service import
*  `SDC-4441 <https://jira.onap.org/browse/SDC-4441>`_ - Order targets in policy target modal
*  `SDC-4423 <https://jira.onap.org/browse/SDC-4423>`_ - Support for delete of non normative interface types
*  `SDC-4427 <https://jira.onap.org/browse/SDC-4427>`_ - Provide input name suggestion
*  `SDC-4385 <https://jira.onap.org/browse/SDC-4385>`_ - Provide input name when declaring service property as input
*  `SDC-4429 <https://jira.onap.org/browse/SDC-4429>`_ - Sort drop down lists in VFC requirements and capabilities
*  `SDC-4424 <https://jira.onap.org/browse/SDC-4424>`_ - VFC property metadata backend support
*  `SDC-4422 <https://jira.onap.org/browse/SDC-4422>`_ - Sort properties in node filter modal
*  `SDC-4316 <https://jira.onap.org/browse/SDC-4316>`_ - Add validation for int and float constraints


**Bug Fixes**

*  `SDC-4437 <https://jira.onap.org/browse/SDC-4437>`_ - Certifying a template with two connected services results in error
*  `SDC-4434 <https://jira.onap.org/browse/SDC-4434>`_ - Error thrown when setting default value for list of floats property in VFC
*  `SDC-4432 <https://jira.onap.org/browse/SDC-4432>`_ - Valid values constraints not showing for lists
*  `SDC-4431 <https://jira.onap.org/browse/SDC-4431>`_ - Property with '::' in name produces wrong Input
*  `SDC-4405 <https://jira.onap.org/browse/SDC-4405>`_ - Setting Tosca Function on top of unsaved value causes problems
*  `SDC-4404 <https://jira.onap.org/browse/SDC-4404>`_ - Error opening list property for editing
*  `SDC-4410 <https://jira.onap.org/browse/SDC-4410>`_ - Fix instance declared inputs mapped to substitution mapping
*  `SDC-4428 <https://jira.onap.org/browse/SDC-4428>`_ - Fix undeclarePropertiesAsInput in UI after Service Import
*  `SDC-4425 <https://jira.onap.org/browse/SDC-4425>`_ - Unable to use stringbuilder to for simple list/map items
*  `SDC-4420 <https://jira.onap.org/browse/SDC-4420>`_ - VFC interface operation not clearing artifact details when unchecked
*  `SDC-4421 <https://jira.onap.org/browse/SDC-4421>`_ - Operation implementation name not formatting correctly


**Tasks**

*  `SDC-4287 <https://jira.onap.org/browse/SDC-4287>`_ - PACKAGES UPGRADES IN DIRECT DEPENDENCIES FOR LONDON RELEASE
*  `SDC-4446 <https://jira.onap.org/browse/SDC-4446>`_ - Fix missing default no-args constructor
*  `SDC-4425 <https://jira.onap.org/browse/SDC-4425>`_ - Update vulnerable dependency - javax.servlet:javax.servlet-api
*  `SDC-4415 <https://jira.onap.org/browse/SDC-4415>`_ - PortalRestApiCentralServiceImpl- Add null test before using nullable values
*  `SDC-4372 <https://jira.onap.org/browse/SDC-4372>`_ - Remove 'Security Hotspot - Weak Cryptography' reported by Sonar
*  `SDC-4414 <https://jira.onap.org/browse/SDC-4414>`_ - TranslationService- Add null test before using nullable values


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.12.2
===============

:Release Date: 2023-02-24

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.0

-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC London early release

**Epics**

N/A


**Stories**

*  `SDC-4411 <https://jira.onap.org/browse/SDC-4411>`_ - Delete non-normative data types
*  `SDC-4365 <https://jira.onap.org/browse/SDC-4365>`_ - Show boolean-type constraint as drop-down list
*  `SDC-4379 <https://jira.onap.org/browse/SDC-4379>`_ - Support TOSCA functions for list of map entries in property assignment view
*  `SDC-4371 <https://jira.onap.org/browse/SDC-4371>`_ - Service Import - general page validation
*  `SDC-4383 <https://jira.onap.org/browse/SDC-4383>`_ - Implement option to choose 'None' for not mandatory drop-box field
*  `SDC-4378 <https://jira.onap.org/browse/SDC-4378>`_ - Support for delete property from non-normative data type
*  `SDC-4373 <https://jira.onap.org/browse/SDC-4373>`_ - Edit properties of non-normative data types
*  `SDC-4331 <https://jira.onap.org/browse/SDC-4331>`_ - Constraints in data type view
*  `SDC-4360 <https://jira.onap.org/browse/SDC-4360>`_ - Enable UI component to display property constraints
*  `SDC-4366 <https://jira.onap.org/browse/SDC-4366>`_ - Validate service input default values against constraints
*  `SDC-4361 <https://jira.onap.org/browse/SDC-4361>`_ - Stop auto-generation of inputs from substitution mapping node


**Bug Fixes**

*  `SDC-4418 <https://jira.onap.org/browse/SDC-4418>`_ - Type list of floats not generated correctly in tosca
*  `SDC-4375 <https://jira.onap.org/browse/SDC-4375>`_ - Fix handling of default values for VFC properties
*  `SDC-4412 <https://jira.onap.org/browse/SDC-4412>`_ - Constraint validation failure for list or map with valid values
*  `SDC-4416 <https://jira.onap.org/browse/SDC-4416>`_ - Cannot view archived components on UI
*  `SDC-4413 <https://jira.onap.org/browse/SDC-4413>`_ - Compilation error when building
*  `SDC-4399 <https://jira.onap.org/browse/SDC-4399>`_ - Error validating list property with equals constraint
*  `SDC-4401 <https://jira.onap.org/browse/SDC-4401>`_ - Constraint validation failure for yaml value
*  `SDC-4398 <https://jira.onap.org/browse/SDC-4398>`_ - Incorrect behaviour for list valid values
*  `SDC-3384 <https://jira.onap.org/browse/SDC-3384>`_ - Wrong behavior for 'edit' attribute
*  `SDC-4400 <https://jira.onap.org/browse/SDC-4400>`_ - Issues adding values to complex properties in Property Assignment
*  `SDC-4403 <https://jira.onap.org/browse/SDC-4403>`_ - NPE when setting value of complex property
*  `SDC-4396 <https://jira.onap.org/browse/SDC-4396>`_ - AttributeServlet- Add null test before using nullable values
*  `SDC-4394 <https://jira.onap.org/browse/SDC-4394>`_ - Support for copy/paste tosca functions into operation inputs
*  `SDC-4392 <https://jira.onap.org/browse/SDC-4392>`_ - Issues adding values to map in Property Assignment
*  `SDC-4380 <https://jira.onap.org/browse/SDC-4380>`_ - Fix ng lint command missing configuration
*  `SDC-4384 <https://jira.onap.org/browse/SDC-4384>`_ - Omit tenant metadata when not set
*  `SDC-4382 <https://jira.onap.org/browse/SDC-4382>`_ - Cannot set value to a instance property with valid values constraint
*  `SDC-4377 <https://jira.onap.org/browse/SDC-4377>`_ - Inconsistent behaviour for interface properties removal
*  `SDC-3794 <https://jira.onap.org/browse/SDC-3794>`_ - Incorrect substitution type being set in Services/VFs
*  `SDC-4374 <https://jira.onap.org/browse/SDC-4374>`_ - Setting input value destroys constraints
*  `SDC-4376 <https://jira.onap.org/browse/SDC-4376>`_ - Unable to discard service input changes
*  `SDC-4369 <https://jira.onap.org/browse/SDC-4369>`_ - Import failures added to additional_types
*  `SDC-4364 <https://jira.onap.org/browse/SDC-4364>`_ - NPE when deleting interface operation from VFC
*  `SDC-4357 <https://jira.onap.org/browse/SDC-4357>`_ - in_range constraints missing from TOSCA template
*  `SDC-3863 <https://jira.onap.org/browse/SDC-3863>`_ - Composition window category name shows instead of displayName
*  `SDC-4352 <https://jira.onap.org/browse/SDC-4352>`_ - Unable to set values on properties of VFC instances in a service
*  `SDC-4362 <https://jira.onap.org/browse/SDC-4362>`_ - Fix tiles on Home page always show model as SDC AID
*  `SDC-4354 <https://jira.onap.org/browse/SDC-4354>`_ - Unable to edit VFC property after checkout


**Tasks**

*  `SDC-4408 <https://jira.onap.org/browse/SDC-4408>`_ - NotificationWebsocketHandler- Add null test before using nullable values
*  `SDC-4406 <https://jira.onap.org/browse/SDC-4406>`_ - Update INFO.yaml
*  `SDC-4402 <https://jira.onap.org/browse/SDC-4402>`_ - ConfigurationImpl- Add null test before using nullable values
*  `SDC-4397 <https://jira.onap.org/browse/SDC-4397>`_ - AbstractTemplateServlet- Add null test before using nullable values
*  `SDC-4381 <https://jira.onap.org/browse/SDC-4381>`_ - Fix major bug reported by Sonar
*  `SDC-4358 <https://jira.onap.org/browse/SDC-4358>`_ - Improve getting Service with specific version
*  `SDC-4370 <https://jira.onap.org/browse/SDC-4370>`_ - Fix broken 'start-sdc' profile
*  `SDC-4112 <https://jira.onap.org/browse/SDC-4112>`_ - Skip swagger to improve build time
*  `SDC-4359 <https://jira.onap.org/browse/SDC-4359>`_ - Fix Blocker Bug reported by Sonar
*  `SDC-3529 <https://jira.onap.org/browse/SDC-3529>`_ - Fix Sonar CRITICAL BUGs


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A


Version: 1.12.1
===============

:Release Date: 2023-01-27

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.0
   
-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC London early release

**Epics**

N/A


**Stories**

*  `SDC-4346 <https://jira.onap.org/browse/SDC-4346>`_ - Property Constraints on Service inputs
*  `SDC-4279 <https://jira.onap.org/browse/SDC-4279>`_ - Import data type in UI
*  `SDC-4344 <https://jira.onap.org/browse/SDC-4344>`_ - Implement hiding mechanism
*  `SDC-4341 <https://jira.onap.org/browse/SDC-4341>`_ - Disable editing of normative data types
*  `SDC-4330 <https://jira.onap.org/browse/SDC-4330>`_ - Improve composition view filtering
*  `SDC-4333 <https://jira.onap.org/browse/SDC-4333>`_ - Support TOSCA functions of primitive list entries in composition view
*  `SDC-4332 <https://jira.onap.org/browse/SDC-4332>`_ - Download data type from UI
*  `SDC-4320 <https://jira.onap.org/browse/SDC-4320>`_ - Constraint validation - Policy Properties in a Service
*  `SDC-4319 <https://jira.onap.org/browse/SDC-4319>`_ - Support TOSCA functions of primitive map entries in composition view
*  `SDC-4311 <https://jira.onap.org/browse/SDC-4311>`_ - Update needed to allow assignment of TOSCA functions to List/Map/Custom datatypes
*  `SDC-4305 <https://jira.onap.org/browse/SDC-4305>`_ - Add support for comparable type constraints for scalar values
*  `SDC-4288 <https://jira.onap.org/browse/SDC-4288>`_ - Support TOSCA functions in list entries
*  `SDC-4299 <https://jira.onap.org/browse/SDC-4299>`_ - Add support for comparable type constraints for strings
*  `SDC-4283 <https://jira.onap.org/browse/SDC-4283>`_ - Node filter/Substitution filter: type validation just works during edit
*  `SDC-4264 <https://jira.onap.org/browse/SDC-4264>`_ - Support TOSCA functions for map values
*  `DMAAP-1787 <https://jira.onap.org/browse/DMAAP-1787>`_ - [SDC] Migrate SDC to use kafka native messaging
*  `SDC-4221 <https://jira.onap.org/browse/SDC-4221>`_ - Open Data type from Catalog
*  `SDC-4260 <https://jira.onap.org/browse/SDC-4260>`_ - Update UI Constraints component to support addition of pattern constraints
*  `SDC-4220 <https://jira.onap.org/browse/SDC-4220>`_ - View data types in UI catalog
*  `SDC-4223 <https://jira.onap.org/browse/SDC-4223>`_ - Update UI Constraints component to support addition of scalar type constraints
*  `SDC-4258 <https://jira.onap.org/browse/SDC-4258>`_ - Addition of Properties to a Data type in UI
*  `SDC-4219 <https://jira.onap.org/browse/SDC-4219>`_ - Create UI Component for viewing property constraints
*  `SDC-4170 <https://jira.onap.org/browse/SDC-4170>`_ - Support TOSCA functions in operation implementation properties


**Bug Fixes**

*  `SDC-4318 <https://jira.onap.org/browse/SDC-4318>`_ - Fix constraints saving as strings
*  `SDC-4351 <https://jira.onap.org/browse/SDC-4351>`_ - Error importing data type in the UI
*  `SDC-4352 <https://jira.onap.org/browse/SDC-4352>`_ - Unable to set values on properties of VFC instances in a service
*  `SDC-4349 <https://jira.onap.org/browse/SDC-4349>`_ - Added datatype property not include in model definitions
*  `SDC-4343 <https://jira.onap.org/browse/SDC-4343>`_ - Invalid property values provided: Unsupported value provided for is_default property supported value type is boolean.
*  `SDC-4348 <https://jira.onap.org/browse/SDC-4348>`_ - Frontend cache causing data types not found
*  `SDC-4345 <https://jira.onap.org/browse/SDC-4345>`_ - Property Constraint error when uprading VFC instance version in service
*  `SDC-4334 <https://jira.onap.org/browse/SDC-4334>`_ - Error creating in_range constraint for non integer properties
*  `SDC-4339 <https://jira.onap.org/browse/SDC-4339>`_ - Possible to add property to data type with type belonging to other model
*  `SDC-4342 <https://jira.onap.org/browse/SDC-4342>`_ - Constraint not added when creating property
*  `SDC-3505 <https://jira.onap.org/browse/SDC-3505>`_ - SDC be API returns HTTP 200 response code on error
*  `SDC-4338 <https://jira.onap.org/browse/SDC-4338>`_ - Primitive types should not be shown under data types in catalog
*  `SDC-4337 <https://jira.onap.org/browse/SDC-4337>`_ - Data type cache not updated when data type updated
*  `SDC-4335 <https://jira.onap.org/browse/SDC-4335>`_ - Datatype workspace opens up from wrong menuItem
*  `SDC-4290 <https://jira.onap.org/browse/SDC-4290>`_ - Resource property constraint values mutable in Service design
*  `SDC-4315 <https://jira.onap.org/browse/SDC-4315>`_ - Not possible to add value to list of map property
*  `SDC-4312 <https://jira.onap.org/browse/SDC-4312>`_ - NPE thrown in editing constraints
*  `SDC-3216 <https://jira.onap.org/browse/SDC-3216>`_ - Artifact type "CONTROLLER_BLUEPRINT_ARCHIVE" is not recognized based on its type.
*  `SDC-2851 <https://jira.onap.org/browse/SDC-2851>`_ - Tosca List Entry Schema failed to be recoginized with creating VSP
*  `SDC-4310 <https://jira.onap.org/browse/SDC-4310>`_ - Adding property to VF/Service throws js-exception
*  `SDC-4292 <https://jira.onap.org/browse/SDC-4292>`_ - Swagger UI fails to load
*  `SDC-4307 <https://jira.onap.org/browse/SDC-4307>`_ - Not possible to set value on a VFC property with constraint
*  `SDC-4294 <https://jira.onap.org/browse/SDC-4294>`_ - Pattern constraint validation failure
*  `SDC-4306 <https://jira.onap.org/browse/SDC-4306>`_ - Some default responses in the generated openapi files are missing descriptions
*  `SDC-4302 <https://jira.onap.org/browse/SDC-4302>`_ - Fix docker build issue
*  `SDC-4291 <https://jira.onap.org/browse/SDC-4291>`_ - Import VFC with constraint PATTERN ignores constraint
*  `SDC-4303 <https://jira.onap.org/browse/SDC-4303>`_ - NPE thrown when checking out Service
*  `SDC-4293 <https://jira.onap.org/browse/SDC-4293>`_ - in_range constraint validation gives unhelpful error message
*  `SDC-4286 <https://jira.onap.org/browse/SDC-4286>`_ - Constraint not displayed when cycling through properties
*  `SDC-4274 <https://jira.onap.org/browse/SDC-4274>`_ - Numeric constraint values generated as strings
*  `SDC-4281 <https://jira.onap.org/browse/SDC-4281>`_ - Empty interfaces and operations in generated tosca
*  `SDC-4271 <https://jira.onap.org/browse/SDC-4271>`_ - SDC-simulator not logging to STDOUT
*  `SDC-3536 <https://jira.onap.org/browse/SDC-3536>`_ - SDC-ONBOARDING-BE log does not use stdout
*  `SDC-4266 <https://jira.onap.org/browse/SDC-4266>`_ - Error while importing a Service: icon cannot be changed once the resource is certified
*  `SDC-4267 <https://jira.onap.org/browse/SDC-4267>`_ - EcompIntImpl - And null test before using nullable value
*  `SDC-4253 <https://jira.onap.org/browse/SDC-4253>`_ - Changing property in a node filter causes several issues
*  `SDC-4222 <https://jira.onap.org/browse/SDC-4222>`_ - Fix behaviour when validation of property constraints
*  `SDC-4269 <https://jira.onap.org/browse/SDC-4269>`_ - ExternalTestingManagerImpl - Add null test before using nullable value
*  `SDC-3535 <https://jira.onap.org/browse/SDC-3535>`_ - SDC-FE log does not use STDOUT
*  `SDC-3534 <https://jira.onap.org/browse/SDC-3534>`_ - SDC-BE log does not use STDOUT
*  `SDC-4268 <https://jira.onap.org/browse/SDC-4268>`_ - Model for "SOL001" shows incorrectly in GUI
*  `SDC-4265 <https://jira.onap.org/browse/SDC-4265>`_ - DefaultPropertyDeclarator - Add null test before using nullable value
*  `SDC-4259 <https://jira.onap.org/browse/SDC-4259>`_ - Interfaces in VNFD in ETSI NSD
*  `SDC-4242 <https://jira.onap.org/browse/SDC-4242>`_ - fix doc config files in master and kohn branch
*  `SDC-4255 <https://jira.onap.org/browse/SDC-4255>`_ - Interface is formatted using extended notation when no implementation added at VFC level
*  `SDC-4237 <https://jira.onap.org/browse/SDC-4237>`_ - Tosca Export: a boolean, from a default complex type value, is being exported as string


**Tasks**

*  `SDC-4347 <https://jira.onap.org/browse/SDC-4347>`_ - Improve test coverage for Constraints
*  `SDC-4317 <https://jira.onap.org/browse/SDC-4317>`_ - Improve test coverage
*  `SDC-4308 <https://jira.onap.org/browse/SDC-4308>`_ - Update openapi files in the docs
*  `SDC-4313 <https://jira.onap.org/browse/SDC-4313>`_ - Upgrade testing frameworks to latest not-vulnerable versions
*  `SDC-4314 <https://jira.onap.org/browse/SDC-4314>`_ - Fix broken build
*  `SDC-4215 <https://jira.onap.org/browse/SDC-4215>`_ - Multitenancy feature in SDC
*  `SDC-4304 <https://jira.onap.org/browse/SDC-4304>`_ - Update INFO.yaml
*  `SDC-4300 <https://jira.onap.org/browse/SDC-4300>`_ - Add missing 'scalar-unit.bitrate' data type
*  `SDC-4289 <https://jira.onap.org/browse/SDC-4289>`_ - Fix broken build
*  `SDC-4275 <https://jira.onap.org/browse/SDC-4275>`_ - Add SonarCloud badges to README
*  `DOC-798 <https://jira.onap.org/browse/DOC-798>`_ - Create docs for 'Kohn' main release
*  `SDC-4243 <https://jira.onap.org/browse/SDC-4243>`_ - Issues with 'range' data type detected
*  `SDC-4261 <https://jira.onap.org/browse/SDC-4261>`_ - Fix Readme formatting for Catalog-UI
*  `SDC-4254 <https://jira.onap.org/browse/SDC-4254>`_ - Remove 'Powered by Jetty' from default jetty response
*  `SDC-4256 <https://jira.onap.org/browse/SDC-4256>`_ - Improve error reporting when onboarding a VSP and storage is full


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.12.0
===============

:Release Date: 2022-10-28

SDC SDKs Versions
-----------------

-  sdc-distribution-client (Kafka)

   :Version: 2.0.0
   
-  sdc-distribution-client (DMaap MR - deprecated)

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC London early release

**Epics**

N/A


**Stories**

*  `SDC-4207 <https://jira.onap.org/browse/SDC-4207>`_ - Constraint validation - Node Template Interfaces
*  `SDC-4229 <https://jira.onap.org/browse/SDC-4229>`_ - Default Substitution Mapping
*  `DMAAP-1787 <https://jira.onap.org/browse/DMAAP-1787>`_ - [SDC] Migrate SDC to use kafka native messaging
*  `SDC-4216 <https://jira.onap.org/browse/SDC-4216>`_ - Support import of VFCs with property constraints
*  `SDC-4209 <https://jira.onap.org/browse/SDC-4209>`_ - Constraint validation - Instance Attributes in a Service
*  `SDC-4210 <https://jira.onap.org/browse/SDC-4210>`_ - VFC properties - Increase character limit to 100 and allow use of @ character
*  `SDC-4214 <https://jira.onap.org/browse/SDC-4214>`_ - View Data type properties in UI
*  `SDC-4142 <https://jira.onap.org/browse/SDC-4142>`_ - Service import - Import updated node types with new attributes
*  `SDC-4208 <https://jira.onap.org/browse/SDC-4208>`_ - Enable viewing of VFC property details when checked in
*  `SDC-4190 <https://jira.onap.org/browse/SDC-4190>`_ - Constraint validation - Instance Properties in a Service
*  `SDC-4193 <https://jira.onap.org/browse/SDC-4193>`_ - View data type in UI
*  `SDC-4184 <https://jira.onap.org/browse/SDC-4184>`_ - API for fetching single data type
*  `DMAAP-1744 <https://jira.onap.org/browse/DMAAP-1744>`_ - Move SDC and clients to use Strimzi Kafka


**Bug Fixes**

*  `SDC-4224 <https://jira.onap.org/browse/SDC-4224>`_ - Import service with policy error
*  `SDC-4225 <https://jira.onap.org/browse/SDC-4225>`_ - Import of service with concat property value issue
*  `SDC-4227 <https://jira.onap.org/browse/SDC-4227>`_ - Error importing service with instance interfaces
*  `SDC-4189 <https://jira.onap.org/browse/SDC-4189>`_ - security risk: Improper Input Validation
*  `SDC-4217 <https://jira.onap.org/browse/SDC-4217>`_ - Setting value on interface operation property with constraint throws exception
*  `SDC-4218 <https://jira.onap.org/browse/SDC-4218>`_ - Fix cant set properties on an instance in the composition view
*  `SDC-4211 <https://jira.onap.org/browse/SDC-4211>`_ - Fetch data type endpoint is returning Optional instead of the requested Data Type
*  `SDC-4213 <https://jira.onap.org/browse/SDC-4213>`_ - Onboard-ui build started to fail with problems in ./node_modules/react-show-more-text/lib/ShowMoreText.css
*  `SDC-4196 <https://jira.onap.org/browse/SDC-4196>`_ - Empty interface operation definitions throw exception
*  `SDC-4192 <https://jira.onap.org/browse/SDC-4192>`_ - X-Frame-Options not configured: Lack of clickjacking protection
*  `SDC-4185 <https://jira.onap.org/browse/SDC-4185>`_ - Composition Window doesnot allow to update new version of VFC


**Tasks**

*  `SDC-4204 <https://jira.onap.org/browse/SDC-4204>`_ - Finalize Documentation
*  `SDC-4232 <https://jira.onap.org/browse/SDC-4232>`_ - Remove temp file if Minio-upload failed
*  `SDC-4231 <https://jira.onap.org/browse/SDC-4231>`_ - Fix potential NPE in importing property constraints
*  `SDC-4230 <https://jira.onap.org/browse/SDC-4230>`_ - Fix Critical bug reported by Sonar
*  `SDC-4228 <https://jira.onap.org/browse/SDC-4228>`_ - Update Vulnerable 3PP commons-text-1.9
*  `SDC-4205 <https://jira.onap.org/browse/SDC-4205>`_ - Remove unused code


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.11.9
===============

:Release Date: 2022-09-28

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC Kohn M4 release

**Epics**

*  `SDC-4034 <https://jira.onap.org/browse/SDC-4034>`_ - Service Import
*  `SDC-4037 <https://jira.onap.org/browse/SDC-4037>`_ - Additional TOSCA constructs support Kohn
*  `SDC-4035 <https://jira.onap.org/browse/SDC-4035>`_ - Deletion of archived assets
*  `SDC-4037 <https://jira.onap.org/browse/SDC-4037>`_ - Additional TOSCA constructs support Kohn
*  `SDC-4036 <https://jira.onap.org/browse/SDC-4036>`_ - Enable application metrics


**Stories**

*  `SDC-4186 <https://jira.onap.org/browse/SDC-4186>`_ - Service import - Import unknown interface types
*  `SDC-4187 <https://jira.onap.org/browse/SDC-4187>`_ - Service import - Import unknown capability types
*  `SDC-4176 <https://jira.onap.org/browse/SDC-4176>`_ - Service import - Import unknown group types
*  `SDC-4173 <https://jira.onap.org/browse/SDC-4173>`_ - Support tosca functions for node capability filters
*  `SDC-4153 <https://jira.onap.org/browse/SDC-4153>`_ - Service import - Import necessary artifact types
*  `SDC-4162 <https://jira.onap.org/browse/SDC-4162>`_ - Service Import - yaml error


**Bug Fixes**

*  `SDC-4125 <https://jira.onap.org/browse/SDC-4125>`_ - Error thrown when setting policy property with get_property
*  `SDC-4188 <https://jira.onap.org/browse/SDC-4188>`_ - Fix show add button for Req and Capabilities in VF
*  `SDC-4181 <https://jira.onap.org/browse/SDC-4181>`_ - Simulator showing server exception when no content type is provided
*  `SDC-4179 <https://jira.onap.org/browse/SDC-4179>`_ - maven-resources-plugin filtering problem with plugins-configuration.yaml
*  `SDC-4175 <https://jira.onap.org/browse/SDC-4175>`_ - Capablity Types not refreshing after model change


**Tasks**

*  `SDC-4183 <https://jira.onap.org/browse/SDC-4183>`_ - Improve the catalog-fe README
*  `SDC-4066 <https://jira.onap.org/browse/SDC-4066>`_ - Improve catalog-ui test coverage
*  `SDC-4180 <https://jira.onap.org/browse/SDC-4180>`_ - Local paths shown in the compiled onboard UI app
*  `SDC-4178 <https://jira.onap.org/browse/SDC-4178>`_ - Update 'Deployment dependency map'


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.11.8
===============

:Release Date: 2022-09-09

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC Kohn early release

**Epics**

    N/A


**Stories**

*  `SDC-4168 <https://jira.onap.org/browse/SDC-4168>`_ - Support import of service with TOSCA functions in sub properties
*  `SDC-4171 <https://jira.onap.org/browse/SDC-4171>`_ - Relax checking on operation property values
*  `SDC-4128 <https://jira.onap.org/browse/SDC-4128>`_ - Support TOSCA functions for node filters
*  `SDC-4151 <https://jira.onap.org/browse/SDC-4151>`_ - Support TOSCA functions in sub properties in properties assignment
*  `SDC-4131 <https://jira.onap.org/browse/SDC-4131>`_ - Service import - Import updated node types
*  `SDC-4149 <https://jira.onap.org/browse/SDC-4149>`_ - Allow to select properties in the get_attribute function
*  `SDC-4140 <https://jira.onap.org/browse/SDC-4140>`_ - Service import - Import updated data types
*  `SDC-4137 <https://jira.onap.org/browse/SDC-4137>`_ - Service Import - general page validation
*  `SDC-4082 <https://jira.onap.org/browse/SDC-4082>`_ - Service Import - Inputs
*  `SDC-4136 <https://jira.onap.org/browse/SDC-4136>`_ - Allow ETSI VNF without other node template


**Bug Fixes**

*  `SDC-4174 <https://jira.onap.org/browse/SDC-4174>`_ - New node filter API does not accept legacy payload
*  `SDC-4166 <https://jira.onap.org/browse/SDC-4166>`_ - Importing service with TOSCA function yaml value
*  `SDC-4169 <https://jira.onap.org/browse/SDC-4169>`_ - application exposed to path traversal attack
*  `SDC-4134 <https://jira.onap.org/browse/SDC-4134>`_ - Import VFC not importing interfaces
*  `SDC-4145 <https://jira.onap.org/browse/SDC-4145>`_ - NPE thrown for interface operation template with no inputs
*  `SDC-4150 <https://jira.onap.org/browse/SDC-4150>`_ - Import service - sub import files are not loading
*  `SDC-4097 <https://jira.onap.org/browse/SDC-4097>`_ - Wrong Inputs creation on 'Add Service'
*  `SDC-4144 <https://jira.onap.org/browse/SDC-4144>`_ - SDC Jakarta release: "create service" does not work when new category added
*  `SDC-4141 <https://jira.onap.org/browse/SDC-4141>`_ - Encrypted user not being handled correctly in SDC-BE
*  `SDC-4130 <https://jira.onap.org/browse/SDC-4130>`_ - Fix Wrongly generated tosca implementation
*  `SDC-4132 <https://jira.onap.org/browse/SDC-4132>`_ - Fix error handling for instances with no properties
*  `SDC-4133 <https://jira.onap.org/browse/SDC-4133>`_ - ClassCastException thrown for artifact primary string value


**Tasks**

*  `SDC-4167 <https://jira.onap.org/browse/SDC-4167>`_ - Update/remove vulnerable dependencies
*  `SDC-4165 <https://jira.onap.org/browse/SDC-4165>`_ - Update SDC with new 'security-util-lib' version
*  `DOC-782 <https://jira.onap.org/browse/DOC-782>`_ - Create docs for 'Jakarta' main release
*  `SDC-4143 <https://jira.onap.org/browse/SDC-4143>`_ - Improve error's message readability
*  `SDC-4017 <https://jira.onap.org/browse/SDC-4017>`_ - Remove/update vulnerable dependency
*  `SDC-4139 <https://jira.onap.org/browse/SDC-4139>`_ - Fix broken build
*  `SDC-4133 <https://jira.onap.org/browse/SDC-4133>`_ - ClassCastException thrown for artifact primary string value


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.11.7
===============

:Release Date: 2022-08-15

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC Kohn early release

**Epics**

    N/A


**Stories**

*  `SDC-4113 <https://jira.onap.org/browse/SDC-4113>`_ - Service Import - Node Template Interface Definitions
*  `SDC-4118 <https://jira.onap.org/browse/SDC-4118>`_ - Service import - Import unknown node types
*  `SDC-4119 <https://jira.onap.org/browse/SDC-4119>`_ - Service import - Import unknown data types
*  `SDC-4123 <https://jira.onap.org/browse/SDC-4123>`_ - Support property get_input value in deprecated format
*  `SDC-4122 <https://jira.onap.org/browse/SDC-4122>`_ - Support tosca functions for policy instance properties in property assignment view
*  `SDC-4120 <https://jira.onap.org/browse/SDC-4120>`_ - Support for TOSCA functions for Service Import
*  `SDC-4083 <https://jira.onap.org/browse/SDC-4083>`_ - Service Import - Node Template Relationship Template
*  `SDC-4109 <https://jira.onap.org/browse/SDC-4109>`_ - Enable configuration of instance name
*  `SDC-4099 <https://jira.onap.org/browse/SDC-4099>`_ - Set property to yaml string in TOSCA functions modal


**Bug Fixes**

*  `SDC-4129 <https://jira.onap.org/browse/SDC-4129>`_ - Newly imported data types not found in UI
*  `SDC-4126 <https://jira.onap.org/browse/SDC-4126>`_ - Properties of the previous instance is loading in the Hierarchical panel
*  `SDC-4127 <https://jira.onap.org/browse/SDC-4127>`_ - Fix unable to delete default value for a complex property
*  `SDC-4124 <https://jira.onap.org/browse/SDC-4124>`_ - Empty node filter in template when directives added with no filter
*  `SDC-4117 <https://jira.onap.org/browse/SDC-4117>`_ - Error Importing node filter with multiple capability properties
*  `SDC-4125 <https://jira.onap.org/browse/SDC-4125>`_ - Error thrown when setting policy property with get_property
*  `SDC-4098 <https://jira.onap.org/browse/SDC-4098>`_ - Error adding capability with properties to VFC
*  `SDC-4121 <https://jira.onap.org/browse/SDC-4121>`_ - Fix outputs of complex type display and delete
*  `SDC-4114 <https://jira.onap.org/browse/SDC-4114>`_ - Fix Tosca Function Validation for Group and Policy properties
*  `SDC-4116 <https://jira.onap.org/browse/SDC-4116>`_ - UI shows text overlay on value field
*  `SDC-4115 <https://jira.onap.org/browse/SDC-4115>`_ - Fix functionaljava dependency for onboarding
*  `SDC-4084 <https://jira.onap.org/browse/SDC-4084>`_ - Group Property value display not easily readable
*  `SDC-4110 <https://jira.onap.org/browse/SDC-4110>`_ - Save button disabled in update property in composition view


**Tasks**

*  `SDC-4017 <https://jira.onap.org/browse/SDC-4017>`_ - Remove/update vulnerable dependency
*  `SDC-4100 <https://jira.onap.org/browse/SDC-4100>`_ - Add fast build profile ignoring the frontend build


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.11.6
===============

:Release Date: 2022-07-21

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC Kohn early release

**Epics**

    N/A

**Stories**

*  `SDC-4078 <https://jira.onap.org/browse/SDC-4078>`_ - Support tosca functions for group instances in composition view
*  `SDC-4060 <https://jira.onap.org/browse/SDC-4060>`_ - Service Import - Policies
*  `SDC-4051 <https://jira.onap.org/browse/SDC-4051>`_ - Service Import - Outputs
*  `SDC-4080 <https://jira.onap.org/browse/SDC-4080>`_ - Allow set values in properties of type timestamp
*  `SDC-4095 <https://jira.onap.org/browse/SDC-4095>`_ - Support concat for string property values
*  `SDC-4090 <https://jira.onap.org/browse/SDC-4090>`_ - Support tosca functions for group instances



**Bug Fixes**

*  `SDC-4048 <https://jira.onap.org/browse/SDC-4048>`_ - VFC properties of type timestamp not visible in property assignment
*  `SDC-4063 <https://jira.onap.org/browse/SDC-4063>`_ - Directives drop down list cut short
*  `SDC-4087 <https://jira.onap.org/browse/SDC-4087>`_ - Node Filters displayed incorrectly
*  `SDC-4088 <https://jira.onap.org/browse/SDC-4088>`_ - Save/discard button not showing for an instance attributes
*  `SDC-4081 <https://jira.onap.org/browse/SDC-4081>`_ - Fail to declare Input for duplicated name of property
*  `SDC-4089 <https://jira.onap.org/browse/SDC-4089>`_ - Fix upgrade failure
*  `SDC-4079 <https://jira.onap.org/browse/SDC-4079>`_ - Service Import - Input appearing as a property
*  `SDC-4091 <https://jira.onap.org/browse/SDC-4091>`_ - Fix clear value for group instances toscaGetFunction
*  `SDC-4085 <https://jira.onap.org/browse/SDC-4085>`_ - Unable to create a property on SELF of type List <Map>
*  `SDC-4096 <https://jira.onap.org/browse/SDC-4096>`_ - Changing VFC version on composition page results in error
*  `SDC-4101 <https://jira.onap.org/browse/SDC-4101>`_ - Fix incorrect dependency scope change



**Tasks**

*  `SDC-4017 <https://jira.onap.org/browse/SDC-4017>`_ - Update vulnerable dependencies
*  `SDC-4094 <https://jira.onap.org/browse/SDC-4094>`_ - Remove unused dependency (functionaljava)
*  `SDC-4100 <https://jira.onap.org/browse/SDC-4100>`_ - Add fast build profile ignoring frontend

Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.11.5
===============

:Release Date: 2022-06-24

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC Kohn early release

**Epics**

    N/A

**Stories**

*  `SDC-3982 <https://jira.onap.org/browse/SDC-3982>`_ - Rearrange Interface Operation Implementation
*  `SDC-4055 <https://jira.onap.org/browse/SDC-4055>`_ - Delete interface operation from VFC
*  `SDC-4052 <https://jira.onap.org/browse/SDC-4052>`_ - Service Import - Input Metadata
*  `SDC-4049 <https://jira.onap.org/browse/SDC-4049>`_ - Service Import - Node Template Node Filter
*  `SDC-4053 <https://jira.onap.org/browse/SDC-4053>`_ - Support get_attribute in Property Assignment TOSCA functions
*  `SDC-4054 <https://jira.onap.org/browse/SDC-4054>`_ - Service Import - Groups
*  `SDC-4044 <https://jira.onap.org/browse/SDC-4044>`_ - Service Import - Read metadata from csar
*  `SDC-4065 <https://jira.onap.org/browse/SDC-4065>`_ - Make instance count optional

**Bug Fixes**

*  `SDC-4041 <https://jira.onap.org/browse/SDC-4041>`_ - Fix broken build
*  `SDC-4042 <https://jira.onap.org/browse/SDC-4042>`_ - TOSCA function modal input/property not found message does not disappear
*  `SDC-4046 <https://jira.onap.org/browse/SDC-4046>`_ - After a checkout in the VFC Properties page, can't edit a property
*  `SDC-4043 <https://jira.onap.org/browse/SDC-4043>`_ - Load inputs/properties in Tosca Get Function dialog considering the selected property schema
*  `SDC-4047 <https://jira.onap.org/browse/SDC-4047>`_ - Disable the save button in Property assignment TOSCA Function Modal for invalid values
*  `SDC-4039 <https://jira.onap.org/browse/SDC-4039>`_ - Fix getToscaFunction validation for property value
*  `SDC-4038 <https://jira.onap.org/browse/SDC-4038>`_ - Fix loading issue and double errors in properties assignment
*  `SDC-4050 <https://jira.onap.org/browse/SDC-4050>`_ - Update a list of map in VFC Properties - error while adding a new entry
*  `SDC-4057 <https://jira.onap.org/browse/SDC-4057>`_ - get_input not working for complex properties
*  `SDC-4059 <https://jira.onap.org/browse/SDC-4059>`_ - Fix interface name and operation not being disabled on edit
*  `SDC-4058 <https://jira.onap.org/browse/SDC-4058>`_ - VFC interface operation can be edited even when checked in
*  `SDC-4061 <https://jira.onap.org/browse/SDC-4061>`_ - Fix Interface Operation mandatory fields
*  `SDC-4045 <https://jira.onap.org/browse/SDC-4045>`_ - Fix interface operation implementation not being updated on version change


**Tasks**

*  `SDC-4056 <https://jira.onap.org/browse/SDC-4056>`_ - Remove unused maven properties in main pom

Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.11.4
===============

:Release Date: 2022-06-09

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC Kohn early release

**Epics**

    N/A

**Stories**

*  `SDC-4031 <https://jira.onap.org/browse/SDC-4031>`_ - get_property support in Update Property modal from Composition page
*  `SDC-4028 <https://jira.onap.org/browse/SDC-4028>`_ - Allow to edit a TOSCA get function value in the Properties Assignment
*  `SDC-4025 <https://jira.onap.org/browse/SDC-4025>`_ - Maintain VFC instance attribute outputs on instance version change
*  `SDC-4018 <https://jira.onap.org/browse/SDC-4018>`_ - Maintain VFC UI added interface operations after an upgrade
*  `SDC-4012 <https://jira.onap.org/browse/SDC-4012>`_ - Maintain VFC UI added properties after an upgrade
*  `SDC-4016 <https://jira.onap.org/browse/SDC-4016>`_ - Maintain VFC external capabilities and requirements on instance version change
*  `SDC-4026 <https://jira.onap.org/browse/SDC-4026>`_ - Component Instance property selection in Property Assignment get property
*  `SDC-4009 <https://jira.onap.org/browse/SDC-4009>`_ - Maintain VFC instance interface operation details on instance version change
*  `SDC-4023 <https://jira.onap.org/browse/SDC-4023>`_ - Delete VSP - Ensure complete deletion of VSP from DB
*  `SDC-4014 <https://jira.onap.org/browse/SDC-4014>`_ - Support get_property in Property Assignment TOSCA functions
*  `SDC-4015 <https://jira.onap.org/browse/SDC-4015>`_ - Maintain VFC instance occurrences values on instance version change

**Bug Fixes**

*  `SDC-4032 <https://jira.onap.org/browse/SDC-4032>`_ - sdc-be-init fails intermittently
*  `SDC-4030 <https://jira.onap.org/browse/SDC-4030>`_ - Fix Component Instance requirements and capabilities not updating
*  `SDC-4024 <https://jira.onap.org/browse/SDC-4024>`_ - Interface Operation Implementation artifact file name incorrect for extended notation
*  `SDC-4027 <https://jira.onap.org/browse/SDC-4027>`_ - Error when restoring VLM: Unable to restore partially deleted VSP, re-try VSP deletion
*  `SDC-4022 <https://jira.onap.org/browse/SDC-4022>`_ - Inconsistent behavior adding a CONCAT string to VFC property and node filter property
*  `SDC-4021 <https://jira.onap.org/browse/SDC-4021>`_ - Fix Component Instance versions not updating
*  `SDC-4013 <https://jira.onap.org/browse/SDC-4013>`_ - Exception thrown when accessing a VF General page
*  `SDC-3987 <https://jira.onap.org/browse/SDC-3987>`_ - Node Filter string property value displayed as object


**Tasks**

*  `SDC-4029 <https://jira.onap.org/browse/SDC-4029>`_ - Fix Blocker Vulnerability
*  `SDC-4017 <https://jira.onap.org/browse/SDC-4017>`_ - Remove/update vulnerable dependency
*  `SDC-4011 <https://jira.onap.org/browse/SDC-4011>`_ - Include ETSI metadata in VSP package metadata


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.11.3
===============

:Release Date: 2022-05-17

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC Kohn early release

**Epics**

    N/A

**Stories**

*  `SDC-3999 <https://jira.onap.org/browse/SDC-3999>`_ - Import VFC with interface operation implementation extended notataion
*  `SDC-4001 <https://jira.onap.org/browse/SDC-4001>`_ - Support list<map<string, string>> properties in composition screen dialog
*  `SDC-3996 <https://jira.onap.org/browse/SDC-3996>`_ - Generalise Select Input button in Properties Assignment view
*  `SDC-4003 <https://jira.onap.org/browse/SDC-4003>`_ - Onboarded ASD csar included in VF csar

**Bug Fixes**

*  `SDC-3989 <https://jira.onap.org/browse/SDC-3989>`_ - additional_type_definition file missing in the csar package
*  `SDC-3990 <https://jira.onap.org/browse/SDC-3990>`_ - Custom datatype error when creating new property/input
*  `SDC-3983 <https://jira.onap.org/browse/SDC-3983>`_ - Fix inputs/policy tabs view for self and instances
*  `SDC-3991 <https://jira.onap.org/browse/SDC-3991>`_ - VLM duplicate name gives generic error
*  `SDC-4000 <https://jira.onap.org/browse/SDC-4000>`_ - Edit Operation modal does not offer correct artifact types and data types
*  `SDC-3997 <https://jira.onap.org/browse/SDC-3997>`_ - Interface panel is blank when switch to a different version of a VFC
*  `SDC-3998 <https://jira.onap.org/browse/SDC-3998>`_ - Datatypes for a property are not specific to the VFC model
*  `SDC-4007 <https://jira.onap.org/browse/SDC-4007>`_ - Unable to delete Map from List<Maps> property type
*  `SDC-4010 <https://jira.onap.org/browse/SDC-4010>`_ - Fix UI not displaying directives list correctly


**Tasks**

    N/A


Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.11.2
===============

:Release Date: 2022-04-23

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.7.0

Release Purpose
----------------
SDC Kohn early release

**Epics**

    N/A

**Stories**

*  `SDC-3964 <https://jira.onap.org/browse/SDC-3964>`_ - Onboarding UI support for VLM deletion
*  `SDC-3957 <https://jira.onap.org/browse/SDC-3957>`_ - Add application metrics in the catalog backend
*  `SDC-3956 <https://jira.onap.org/browse/SDC-3956>`_ - Add application metrics in the onboarding backend
*  `SDC-3966 <https://jira.onap.org/browse/SDC-3966>`_ - Restrict deletion of a VLM that is in use by any VSP
*  `SDC-3968 <https://jira.onap.org/browse/SDC-3968>`_ - Delete VLM - Support deletion of archived VLMs in onboarding BE
*  `SDC-3972 <https://jira.onap.org/browse/SDC-3972>`_ - Delete VFC - distinguish between system deployed or user deployed VFCs
*  `SDC-3981 <https://jira.onap.org/browse/SDC-3981>`_ - Delete VFC - restrict deletion of system deployed VFCs
*  `SDC-3936 <https://jira.onap.org/browse/SDC-3936>`_ - Delete Service - Support deletion of archived services in SDC BE
*  `SDC-3962 <https://jira.onap.org/browse/SDC-3962>`_ - Delete service - UI support for deleting services
*  `SDC-3969 <https://jira.onap.org/browse/SDC-3969>`_ - Add an UI feedback when saving a interface operation
*  `SDC-3973 <https://jira.onap.org/browse/SDC-3973>`_ - Delete Service - Support deletion of archived VFs in SDC BE

**Bug Fixes**

*  `SDC-3960 <https://jira.onap.org/browse/SDC-3960>`_ - Adjust onboarding UI min node npm version
*  `SDC-3957 <https://jira.onap.org/browse/SDC-3957>`_ - Add application metrics in the catalog backend
*  `SDC-3967 <https://jira.onap.org/browse/SDC-3967>`_ - Failed to launch to SDC from Portal
*  `SDC-3971 <https://jira.onap.org/browse/SDC-3971>`_ - Fix incorrect version in metrics-rest
*  `SDC-3975 <https://jira.onap.org/browse/SDC-3975>`_ - Unit tests with conflicting output folder, resulting in intermittent build errors
*  `SDC-3974 <https://jira.onap.org/browse/SDC-3974>`_ - NPE thrown when adding ASD VF to a service
*  `SDC-3985 <https://jira.onap.org/browse/SDC-3985>`_ - Edit/Delete options for directives are not disabled when service is checked in / certified
*  `SDC-3986 <https://jira.onap.org/browse/SDC-3986>`_ - Fix check to restrict deletion for system deployed VFCs

**Tasks**

*  `SDC-3932 <https://jira.onap.org/browse/SDC-3932>`_ - Remove deprecated/unused base images
*  `DOC-782 <https://jira.onap.org/browse/DOC-782>`_ - Create docs for 'Jakarta' main release
*  `SDC-3984 <https://jira.onap.org/browse/SDC-3984>`_ - Replace deprecated GEventEvaluator with JaninoEventEvaluator

Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.11.1
===============

:Release Date: 2022-04-08

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.6.6

Release Purpose
----------------
SDC Kohn early release

**Epics**

    N/A

**Stories**

*  `SDC-3938 <https://jira.onap.org/browse/SDC-3938>`_ - Add ASD node and data types to SDC AID model
*  `SDC-3952 <https://jira.onap.org/browse/SDC-3952>`_ - Delete VSP - Onboarding UI support for VSP deletion 

**Bug Fixes**

*  `SDC-3953 <https://jira.onap.org/browse/SDC-3953>`_ - Fix error handling for VSP usage check in VF 

**Tasks**

    N/A

Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.11.0
===============

:Release Date: 2022-04-05

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.6.6

Release Purpose
----------------
SDC Kohn early release

**Epics**

    N/A

**Stories**

*  `SDC-3893 <https://jira.onap.org/browse/SDC-3893>`_ - UI support for editing interfaces on a node type
*  `SDC-3931 <https://jira.onap.org/browse/SDC-3931>`_ - Delete VSP - Handling partial delete failure
*  `SDC-3935 <https://jira.onap.org/browse/SDC-3935>`_ - Delete VSP - Restore of partially deleted VSP
*  `SDC-3948 <https://jira.onap.org/browse/SDC-3948>`_ - Add ASD artifact type to SDC AID model
*  `SDC-3893 <https://jira.onap.org/browse/SDC-3893>`_ - UI support for editing interfaces on a node type
*  `SDC-3894 <https://jira.onap.org/browse/SDC-3894>`_ - Delete VSP - Restrict deletion of archived VSPs if used in VF
*  `SDC-3884 <https://jira.onap.org/browse/SDC-3884>`_ - Copy entry_defintion_type to TOSCA.meta
*  `SDC-3890 <https://jira.onap.org/browse/SDC-3890>`_ - Delete VSP - Support deletion of archived VSPs in onboarding BE

**Bug Fixes**

*  `SDC-3939 <https://jira.onap.org/browse/SDC-3939>`_ - NPE thrown in service import
*  `SDC-3934 <https://jira.onap.org/browse/SDC-3934>`_ - Package storage and reducer config are not reloading when there is a config change
*  `SDC-3937 <https://jira.onap.org/browse/SDC-3937>`_ - PM_DICTIONARY check is causing nullpointer
*  `SDC-3926 <https://jira.onap.org/browse/SDC-3926>`_ - Setting value of list or map property with complex type results in single value
*  `SDC-3928 <https://jira.onap.org/browse/SDC-3928>`_ - Fix unable to update 'Interface Name' in VF

**Tasks**

*  `SDC-3933 <https://jira.onap.org/browse/SDC-3933>`_ - Upgrade vulnerable dependency 'org.apache.httpcomponents:httpcore'
*  `SDC-3927 <https://jira.onap.org/browse/SDC-3927>`_ - Remove unused vulnerable dependency

Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A


Version: 1.10.3
===============

:Release Date: 2022-03-22

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.6.6

Release Purpose
----------------
SDC Jakarta

**Epics**
    N/A

**Stories**
    N/A

**Bug Fixes**

*  `SDC-3921 <https://jira.onap.org/browse/SDC-3921>`_ - Map entry deletion not showing for inputs of type map<a complex type> in interface operation 
*  `SDC-3922 <https://jira.onap.org/browse/SDC-3922>`_ - Node filters not loading while editing the select directive list 
*  `SDC-3919 <https://jira.onap.org/browse/SDC-3919>`_ - Instance count not being added correctly to node template
*  `SDC-3918 <https://jira.onap.org/browse/SDC-3918>`_ - Interface operation artifact implementation is being persisted even if not selected
*  `SDC-3920 <https://jira.onap.org/browse/SDC-3920>`_ - Default value for inputs of complex type (in a instance interface operation) not being saved as JSON string
*  `SDC-3916 <https://jira.onap.org/browse/SDC-3916>`_ - Error assigning substitution filter property to service property

**Tasks**

*  `SDC-3923 <https://jira.onap.org/browse/SDC-3923>`_ - Implement redirecting root url to sdc1

Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.10.2
===============

:Release Date: 2022-03-15

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.6.6

Release Purpose
----------------
SDC Jakarta

**Epics**
    N/A

**Stories**

*  `SDC-3885 <https://jira.onap.org/browse/SDC-3885>`_ - Remove single request bottleneck from the simulator 
*  `SDC-3886 <https://jira.onap.org/browse/SDC-3886>`_ - Implement improved MinIo client
*  `SDC-3861 <https://jira.onap.org/browse/SDC-3861>`_ - Support for multiple directives
*  `SDC-3898 <https://jira.onap.org/browse/SDC-3898>`_ - Support properties of type List<Map<String, String>>
*  `SDC-3891 <https://jira.onap.org/browse/SDC-3891>`_ - Update SDC for rename of TOSCA CL to ACM
*  `SDC-3882 <https://jira.onap.org/browse/SDC-3882>`_ - Support occurrences on node templates
*  `SDC-3897 <https://jira.onap.org/browse/SDC-3897>`_ - Support complex types in interface operation inputs
*  `SDC-3899 <https://jira.onap.org/browse/SDC-3899>`_ - Support complex types for artifact properties in interface operation implementation
*  `SDC-3887 <https://jira.onap.org/browse/SDC-3887>`_ - Support instance count on node template

**Bug Fixes**

*  `SDC-3881 <https://jira.onap.org/browse/SDC-3881>`_ - Fix NSD plugin to find version by model and category metadata 
*  `SDC-3892 <https://jira.onap.org/browse/SDC-3892>`_ - SDC build failing
*  `SDC-3889 <https://jira.onap.org/browse/SDC-3889>`_ - Error when no derived from exists
*  `SDC-3888 <https://jira.onap.org/browse/SDC-3888>`_ - VSP upload with large files can handle the upload status incorrectly
*  `SDC-3901 <https://jira.onap.org/browse/SDC-3901>`_ - Cannot create node filter capability if capability has different type properties
*  `SDC-3907 <https://jira.onap.org/browse/SDC-3907>`_ - Exception when mouse over and out the node pallet in the composition screen
*  `SDC-3905 <https://jira.onap.org/browse/SDC-3905>`_ - Error updating node filter capability
*  `SDC-3904 <https://jira.onap.org/browse/SDC-3904>`_ - Error creating node filter capability using get_property

**Tasks**

*  `SDC-3877 <https://jira.onap.org/browse/SDC-3877>`_ - Implement redirecting root url to sdc1
*  `SDC-3870 <https://jira.onap.org/browse/SDC-3870>`_ - Include new category to NSD generation plugin
*  `SDC-3880 <https://jira.onap.org/browse/SDC-3880>`_ - Fix SDC-Helm-Validator CSITs
*  `SDC-3895 <https://jira.onap.org/browse/SDC-3895>`_ - Update vulnerable dependencies

Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.10.1
===============

:Release Date: 2022-02-02

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.6.6

Release Purpose
----------------
SDC Jakarta 

**Epics**
    N/A

**Stories**

*  `SDC-3867 <https://jira.onap.org/browse/SDC-3867>`_ - Improve service import support
*  `SDC-3842 <https://jira.onap.org/browse/SDC-3842>`_ - Add Controlloop design-time components to SDC
*  `SDC-3862 <https://jira.onap.org/browse/SDC-3862>`_ - Obtain and control VSP package upload status
*  `SDC-3855 <https://jira.onap.org/browse/SDC-3855>`_ - Add artifact types to ETSI SOL001 v2.5.1 model
*  `SDC-3858 <https://jira.onap.org/browse/SDC-3858>`_ - Add a display name for the category
*  `SDC-3850 <https://jira.onap.org/browse/SDC-3850>`_ - Add Interface support to VFC for viewing an interface definition
*  `SDC-3848 <https://jira.onap.org/browse/SDC-3848>`_ - Update VSP upload status during backend processing
*  `SDC-3856 <https://jira.onap.org/browse/SDC-3856>`_ - Issues creating control loop model
*  `SDC-3847 <https://jira.onap.org/browse/SDC-3847>`_ - Support node template artifact properties
*  `SDC-3846 <https://jira.onap.org/browse/SDC-3846>`_ - Add support for update to artifact types endpoint
*  `SDC-3827 <https://jira.onap.org/browse/SDC-3827>`_ - Create endpoint to check status of the VSP package upload
*  `SDC-3826 <https://jira.onap.org/browse/SDC-3826>`_ - Create endpoint to acquire a VSP package upload lock
*  `SDC-3845 <https://jira.onap.org/browse/SDC-3845>`_ - Add sdc-be-init support for artifact types

**Bug Fixes**

*  `SDC-3866 <https://jira.onap.org/browse/SDC-3866>`_ - Fix VFC being removed from the list of allowable types 
*  `SDC-3864 <https://jira.onap.org/browse/SDC-3864>`_ - UI hangs if drag/and drop policy in composition view 
*  `SDC-3860 <https://jira.onap.org/browse/SDC-3860>`_ - Error in artifact update
*  `SDC-3851 <https://jira.onap.org/browse/SDC-3851>`_ - Decrypt errors in sdc-be logs
*  `SDC-3852 <https://jira.onap.org/browse/SDC-3852>`_ - Cassandra init dockers not working with latest version of cqlsh
*  `SDC-2902 <https://jira.onap.org/browse/SDC-2902>`_ - Make sure Optionals values are defined before calling their `get` method
*  `SDC-3840 <https://jira.onap.org/browse/SDC-3840>`_ - Remove test-jar generation


**Tasks**

*  `SDC-3849 <https://jira.onap.org/browse/SDC-3849>`_ - Improve error logging in MinIo client
*  `SDC-3839 <https://jira.onap.org/browse/SDC-3839>`_ - Improve testing stability

Security Notes
--------------

*Fixed Security Issues*

    N/A

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A


Version: 1.10.0
===============

:Release Date: 2022-01-07

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.6.6

Release Purpose
----------------
SDC Jakarta first release

**Epics**
    N/A

**Stories**

*  `SDC-3837 <https://jira.onap.org/browse/SDC-3837>`_ - Update property to identify SOL004 packages
*  `SDC-3819 <https://jira.onap.org/browse/SDC-3819>`_ - Solution for identifying SOL004 packages
*  `SDC-3805 <https://jira.onap.org/browse/SDC-3805>`_ - Allows custom property type names
*  `SDC-3803 <https://jira.onap.org/browse/SDC-3803>`_ - Enable VF to be nested in a VF
*  `SDC-3802 <https://jira.onap.org/browse/SDC-3802>`_ - Allow space and single quote in prop names
*  `SDC-3774 <https://jira.onap.org/browse/SDC-3774>`_ - Update service import to import substitution filters
*  `SDC-3775 <https://jira.onap.org/browse/SDC-3775>`_ - Update service import to import node filters
*  `SDC-3793 <https://jira.onap.org/browse/SDC-3793>`_ - Node filter property value equals input value
*  `SDC-3764 <https://jira.onap.org/browse/SDC-3764>`_ - Update service import to import service properties
*  `SDC-3754 <https://jira.onap.org/browse/SDC-3754>`_ - Large csar handling - object store
*  `SDC-3768 <https://jira.onap.org/browse/SDC-3768>`_ - UI support for adding artifacts to an interface operation implementation
*  `SDC-3763 <https://jira.onap.org/browse/SDC-3763>`_ - Support for adding artifact types
*  `SDC-3735 <https://jira.onap.org/browse/SDC-3735>`_ - Integration Tests - Import tosca types for a model
*  `SDC-3715 <https://jira.onap.org/browse/SDC-3715>`_ - Import VSP with non-standard policy types
*  `SDC-3759 <https://jira.onap.org/browse/SDC-3759>`_ - Allow Service base type to be optional
*  `SDC-3760 <https://jira.onap.org/browse/SDC-3760>`_ - Support get_input for complex data types
*  `SDC-3752 <https://jira.onap.org/browse/SDC-3752>`_ - Import multiple node_types in a single endpoint during the initialization
*  `SDC-3737 <https://jira.onap.org/browse/SDC-3737>`_ - Add a display name for the category metadataKeys entries
*  `SDC-3751 <https://jira.onap.org/browse/SDC-3751>`_ - Allow importing service with no instances
*  `SDC-3725 <https://jira.onap.org/browse/SDC-3725>`_ - Type safety in node filters
*  `SDC-3706 <https://jira.onap.org/browse/SDC-3706>`_ - Filter categories by model
*  `SDC-3727 <https://jira.onap.org/browse/SDC-3727>`_ - Allow multiple base types for a service
*  `SDC-3736 <https://jira.onap.org/browse/SDC-3736>`_ - Display model in UI tiles
*  `SDC-3729 <https://jira.onap.org/browse/SDC-3729>`_ - Expand allowed chars in property names to include colon

**Bug Fixes**

*  `SDC-2921 <https://jira.onap.org/browse/SDC-2921>`_ - ToscaElementLifecycleOperation - Add null test before using nullable values
*  `SDC-3018 <https://jira.onap.org/browse/SDC-3801>`_ - Fix import service to persist its model name
*  `SDC-3822 <https://jira.onap.org/browse/SDC-3822>`_ - Topology template inputs created for interface inputs
*  `SDC-3800 <https://jira.onap.org/browse/SDC-3800>`_ - Unable to set interface opertion for custom interface type
*  `SDC-3799 <https://jira.onap.org/browse/SDC-3799>`_ - Not possible to set value of custom data type
*  `SDC-3796 <https://jira.onap.org/browse/SDC-3796>`_ - Fix Incorrect properties entry on the interface operation definition and Required fields validation
*  `SDC-3798 <https://jira.onap.org/browse/SDC-3798>`_ - Node Filter UI faults
*  `SDC-3801 <https://jira.onap.org/browse/SDC-3801>`_ - Fix import service to persist its model name
*  `SDC-3792 <https://jira.onap.org/browse/SDC-3792>`_ - VNFD not added to NSD when using S3 storage
*  `SDC-3791 <https://jira.onap.org/browse/SDC-3791>`_ - Base type not set when not provided in the Service creation API
*  `SDC-3757 <https://jira.onap.org/browse/SDC-3757>`_ - Test cases failing incorrectly on Jenkins
*  `SDC-3784 <https://jira.onap.org/browse/SDC-3784>`_ - Not possible to restore an archived component
*  `SDC-3607 <https://jira.onap.org/browse/SDC-3607>`_ - fix CRITICAL xss (cross site scripting) issues identified in sonarcloud
*  `SDC-3770 <https://jira.onap.org/browse/SDC-3770>`_ - unable to run TCs separately (ImportVfcUiTest)
*  `SDC-3765 <https://jira.onap.org/browse/SDC-3765>`_ - Changing the model during the service creation can cause invalid category and base type state
*  `SDC-3734 <https://jira.onap.org/browse/SDC-3734>`_ - Fix child model being shown in UI

**Tasks**

*  `SDC-3824 <https://jira.onap.org/browse/SDC-3824>`_ - Make configurable UI version
*  `SDC-3823 <https://jira.onap.org/browse/SDC-3823>`_ - Update Catalog-model set skip deploy to false
*  `SDC-3816 <https://jira.onap.org/browse/SDC-3816>`_ - Fix MongoSocketOpenException-issue
*  `SDC-3804 <https://jira.onap.org/browse/SDC-3804>`_ - Improve fast-build profile
*  `SDC-3790 <https://jira.onap.org/browse/SDC-3790>`_ - Upgrade VSP is using the wrong VSP version id
*  `SDC-3785 <https://jira.onap.org/browse/SDC-3785>`_ - Fix potential NPE
*  `SDC-3771 <https://jira.onap.org/browse/SDC-3771>`_ - Fix CSV's generation on wrong folder
*  `SDC-3776 <https://jira.onap.org/browse/SDC-3776>`_ - Fix broken TC (ExternalRefsServletTest)
*  `SDC-3783 <https://jira.onap.org/browse/SDC-3783>`_ - Use base image user on sdc-backend-all-plugins docker image descriptor
*  `SDC-3782 <https://jira.onap.org/browse/SDC-3782>`_ - Remove unnecessary maven resource filtering in asdctool
*  `SDC-3772 <https://jira.onap.org/browse/SDC-3772>`_ - Fix discrepancy in IT between Intellij and maven
*  `SDC-3753 <https://jira.onap.org/browse/SDC-3753>`_ - Skip UI tests during fast build
*  `SDC-3761 <https://jira.onap.org/browse/SDC-3761>`_ - Define encoding while reading files in python init scripts
*  `SDC-3741 <https://jira.onap.org/browse/SDC-3741>`_ - Clean sdctool.tar during build

Security Notes
--------------

*Fixed Security Issues*

*  `SDC-3820 <https://jira.onap.org/browse/SDC-3820>`_ - Fix potential Log4Shell Security Vulnerability
*  `SDC-3795 <https://jira.onap.org/browse/SDC-3795>`_ - Analyse vulnerable dependency versions in SDC

*Known Security Issues*

*  `OJSI-94 <https://jira.onap.org/browse/OJSI-94>`_ - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A
	
	
Version: 1.9.3
==============

:Release Date: 2021-09-30

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.5

-  sdc-tosca

   :Version: 1.6.6

Release Purpose
----------------
SDC Istanbul Release

**Epics**

* `SDC-3583 <https://jira.onap.org/browse/SDC-3583>`_ - SDC Multi Model Support Istanbul
* `SDC-3635 <https://jira.onap.org/browse/SDC-3635>`_ - Large CSAR handling

**Stories**

The full list of implemented stories is available on `JIRA ISTANBUL STORIES <https://jira.onap.org/issues/?jql=project%20%3D%20SDC%20AND%20issuetype%20%3D%20story%20AND%20fixVersion%20%3D%20%22Istanbul%20Release%22>`_

**Tasks**

The full list of implemented tasks is available on `JIRA ISTANBUL TASKS <https://jira.onap.org/issues/?jql=project%20%3D%20SDC%20AND%20issuetype%20%3D%20Task%20AND%20fixVersion%20%3D%20%22Istanbul%20Release%22>`_

**Bug Fixes**

The full list of fixed bugs is available on `JIRA ISTANBUL BUGS <https://jira.onap.org/issues/?jql=project%20%3D%20SDC%20AND%20issuetype%20%3D%20Bug%20AND%20fixVersion%20%3D%20%22Istanbul%20Release%22>`_


Security Notes
--------------

*Fixed Security Issues*

-  [`SDC-3634 <https://jira.onap.org/browse/SDC-3634>`__\ ] - Fix security vulnerabilities
-  [`SDC-3572 <https://jira.onap.org/browse/SDC-3572>`__\ ] - Update Vulnerable package dependencies for I release

*Known Security Issues*

-  [`OJSI-94 <https://jira.onap.org/browse/OJSI-94>`__\ ] - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A


Version: 1.8.5
==============

:Release Date: 2021-04-22

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.2

-  sdc-tosca

   :Version: 1.6.5

Release Purpose
----------------
SDC Honolulu Release

**Epics**

*  `SDC-3338 <https://jira.onap.org/browse/SDC-3338>`_ - Design ETSI SOL007 compliant Network Service Descriptor packages
*  `SDC-3279 <https://jira.onap.org/browse/SDC-3279>`_ - SDC Enhancements for ETSI-Alignment for Honolulu
*  `SDC-2813 <https://jira.onap.org/browse/SDC-2813>`_ - Support additional package artifact Indicators for ETSI packages and Non-ETSI packages
*  `SDC-2613 <https://jira.onap.org/browse/SDC-2613>`_ - SDC supports ETSI 3.3.1 Package security and validation for SOL007 and SOL004 packages
*  `SDC-2610 <https://jira.onap.org/browse/SDC-2610>`_ - Support Onboard ETSI 3.3.1 SOL004 compliant VNF / CNF packages

**Stories**

*  `SDC-3491 <https://jira.onap.org/browse/SDC-3491>`_ - Update guava version
*  `SDC-3484 <https://jira.onap.org/browse/SDC-3484>`_ - Increase SDC unit test coverage
*  `SDC-3471 <https://jira.onap.org/browse/SDC-3471>`_ - Creation of Vendor Licensing Model is an optional step in VSP onboarding
*  `SDC-3470 <https://jira.onap.org/browse/SDC-3470>`_ - Update node and data types in ONAP for ETSI SOL001 3.3.1 + minimum CNF enhancements
*  `SDC-3466 <https://jira.onap.org/browse/SDC-3466>`_ - Improve import and export VFC TOSCA attributes
*  `SDC-3447 <https://jira.onap.org/browse/SDC-3447>`_ - Handle ETSI versions in NSD Plugin
*  `SDC-3446 <https://jira.onap.org/browse/SDC-3446>`_ - Support for updating interface operations in component instances
*  `SDC-3435 <https://jira.onap.org/browse/SDC-3435>`_ - Initial support for relationship_templates
*  `SDC-3432 <https://jira.onap.org/browse/SDC-3432>`_ - Enable updating of existing categories
*  `SDC-3417 <https://jira.onap.org/browse/SDC-3417>`_ - SDC Distribution Client - enable test pipeline and add artifact consumption tests
*  `SDC-3412 <https://jira.onap.org/browse/SDC-3412>`_ - Support for category specific metadata
*  `SDC-3404 <https://jira.onap.org/browse/SDC-3404>`_ - Set directives and node_filters in any node type
*  `SDC-3402 <https://jira.onap.org/browse/SDC-3402>`_ - Adapt SDC-BE to support new SDC Distribution Client notifications format
*  `SDC-3401 <https://jira.onap.org/browse/SDC-3401>`_ - Adapt SDC FE Distribution Status to support new notifications format
*  `SDC-3400 <https://jira.onap.org/browse/SDC-3400>`_ - SDC Distribution Client - Migrate to Java 11
*  `SDC-3399 <https://jira.onap.org/browse/SDC-3399>`_ - Support for metadata in topology inputs
*  `SDC-3380 <https://jira.onap.org/browse/SDC-3380>`_ - Support the SOL001 vnf_profile properties
*  `SDC-3373 <https://jira.onap.org/browse/SDC-3373>`_ - Allow to set directives and node_filters in any node type
*  `SDC-3372 <https://jira.onap.org/browse/SDC-3372>`_ - Support for interface input during import VFC
*  `SDC-3352 <https://jira.onap.org/browse/SDC-3352>`_ - Support for mapping of ETSI v3.3.1 SOL001 VNF Descriptor with minimum CNF enhancements from 4.1.1 into SDC AID Data Model
*  `SDC-3351 <https://jira.onap.org/browse/SDC-3351>`_ - Support for onboarding ETSI v3.3.1 SOL001 VNF Descriptors with minimum CNF enhancements from 4.1.1
*  `SDC-3342 <https://jira.onap.org/browse/SDC-3342>`_ - Support for mapping of ETSI v3.3.1 SOL001 Network Service Descriptor in the SOL007 package into SDC AID Data Model
*  `SDC-3341 <https://jira.onap.org/browse/SDC-3341>`_ - Support for using VNFs with CNF enhancements
*  `SDC-3340 <https://jira.onap.org/browse/SDC-3340>`_ - Compose of one or more VNFs and the Virtual Links that connect them
*  `SDC-3339 <https://jira.onap.org/browse/SDC-3339>`_ - Support for designing an ETSI SOL001 v3.3.1 compliant Network Service that can be deployed with an ETSI compliant NFVO
*  `SDC-3337 <https://jira.onap.org/browse/SDC-3337>`_ - Support for onboarding ETSI v3.3.1 SOL004 VNF CSAR Packages with minimum CNF enhancements from 4.1.1
*  `SDC-3335 <https://jira.onap.org/browse/SDC-3335>`_ - Fix Node Filter for capabilities
*  `SDC-3303 <https://jira.onap.org/browse/SDC-3303>`_ - Allow hot reloading of specific config properties
*  `SDC-3103 <https://jira.onap.org/browse/SDC-3103>`_ - Change creation of VLM to be optional
*  `SDC-2815 <https://jira.onap.org/browse/SDC-2815>`_ - SDC client supports additional filtering on the artifact types for distinguishing between ETSI packages and Non-ETSI packages
*  `SDC-2814 <https://jira.onap.org/browse/SDC-2814>`_ - SDC Notification supports additional package artifact types to split ETSI package from other non-ETSI TOSCA packages
*  `SDC-2614 <https://jira.onap.org/browse/SDC-2614>`_ - SDC supports SOL007 NS Package security
*  `SDC-2611 <https://jira.onap.org/browse/SDC-2611>`_ - Support for onboarding ETSI v3.3.1 SOL001 VNF Descriptors

**Tasks**

The full list of implemented tasks is available on `JIRA HONOLULU TASKS <https://jira.onap.org/issues/?jql=project%20%3D%20SDC%20AND%20issuetype%20%3D%20Task%20AND%20fixVersion%20%3D%20%22Honolulu%20Release%22>`_

**Bug Fixes**

The full list of fixed bugs is available on `JIRA HONOLULU BUGS <https://jira.onap.org/issues/?jql=project%20%3D%20SDC%20AND%20issuetype%20%3D%20Bug%20AND%20fixVersion%20%3D%20%22Honolulu%20Release%22>`_


Security Notes
--------------

*Fixed Security Issues*

-  [`OJSI-90 <https://jira.onap.org/browse/OJSI-90>`__\ ] - SDC exposes unprotected API for user creation

*Known Security Issues*

-  [`OJSI-94 <https://jira.onap.org/browse/OJSI-94>`__\ ] - sdc-wfd-fe allows to impersonate any user by setting USER_ID

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-   Uploading and on-boarding several VSP in parallel can cause SDC exceptions, a user should retry failed operations which typically succeed on second try.

**Upgrade Notes**

    N/A

**Deprecation Notes**

    N/A

**Other**

    N/A

Version: 1.7.3
==============

:Release Date: 2020-11-19

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.1

-  sdc-tosca

   :Version: 1.6.5

Release Purpose
----------------
SDC Guilin Release

**Epics**

*  `SDC-3085 <https://jira.onap.org/browse/SDC-3085>`_ - Test Topology Auto Design (NFV Testing Automatic Platform)
*  `SDC-2802 <https://jira.onap.org/browse/SDC-2802>`_ - Design ETSI SOL007 compliant Network Service Descriptor packages

**Stories**


*  `SDC-3275 <https://jira.onap.org/browse/SDC-3275>`_ - Make directives options configurable
*  `SDC-3262 <https://jira.onap.org/browse/SDC-3262>`_ - Support for node_filters - capabilities
*  `SDC-3257 <https://jira.onap.org/browse/SDC-3257>`_ - Enable node_filter update action
*  `SDC-3254 <https://jira.onap.org/browse/SDC-3254>`_ - Map topology inputs to properties in substitution mapping
*  `SDC-3249 <https://jira.onap.org/browse/SDC-3249>`_ - ETSI Network Service Descriptor CSAR plugin
*  `SDC-3244 <https://jira.onap.org/browse/SDC-3244>`_ - Change the ONBOARDED_PACKAGE directory to the ETSI_PACKAGE directory
*  `SDC-3195 <https://jira.onap.org/browse/SDC-3195>`_ - Add UI support  for substitution_filter
*  `SDC-3184 <https://jira.onap.org/browse/SDC-3184>`_ - Distribute HELM package artifact as a part of VF
*  `SDC-3183 <https://jira.onap.org/browse/SDC-3183>`_ - Create VF model from VSP with HELM type inside
*  `SDC-3182 <https://jira.onap.org/browse/SDC-3182>`_ - SDC should support CNF Orchestration
*  `SDC-3180 <https://jira.onap.org/browse/SDC-3180>`_ - Support for Test Topology Auto Design-  Abstract Service Template
*  `SDC-3179 <https://jira.onap.org/browse/SDC-3179>`_ - Support for Test Topology Auto Design- Service Import
*  `SDC-3177 <https://jira.onap.org/browse/SDC-3177>`_ - Config instances types allowed to be used in the component composition
*  `SDC-3173 <https://jira.onap.org/browse/SDC-3173>`_ - SDC must not use root access to DB
*  `SDC-3172 <https://jira.onap.org/browse/SDC-3172>`_ - SDC to support automatic retrieval of certificates
*  `SDC-3167 <https://jira.onap.org/browse/SDC-3167>`_ - Create VSP with HELM as a native artifact type
*  `SDC-3147 <https://jira.onap.org/browse/SDC-3147>`_ - Add back-end support  for substitution_filter
*  `SDC-3131 <https://jira.onap.org/browse/SDC-3131>`_ - Improve Utils coverage and improve Sonar score
*  `SDC-3095 <https://jira.onap.org/browse/SDC-3095>`_ - Add support for node_filter on VFC
*  `SDC-3094 <https://jira.onap.org/browse/SDC-3094>`_ - Migrate any Python code to version 3.8
*  `SDC-3087 <https://jira.onap.org/browse/SDC-3087>`_ - E2E Network Slicing: KPI Monitoring
*  `SDC-3086 <https://jira.onap.org/browse/SDC-3086>`_ - E2E Network Slicing: subnet slicing
*  `SDC-3084 <https://jira.onap.org/browse/SDC-3084>`_ - Initial support for TOSCA property constraints in ToscaProperty class and constraint valid_values
*  `SDC-3079 <https://jira.onap.org/browse/SDC-3079>`_ - Make Directive values Tosca compliant
*  `SDC-3075 <https://jira.onap.org/browse/SDC-3075>`_ - Allow TOSCA Entity Type Schema and specific Interface Type entries in an Interface Type
*  `SDC-3074 <https://jira.onap.org/browse/SDC-3074>`_ - Add support for directives on VFC
*  `SDC-3062 <https://jira.onap.org/browse/SDC-3062>`_ - Plugable entry to customize properties during Service creation
*  `SDC-3061 <https://jira.onap.org/browse/SDC-3061>`_ - Expose generic Service properties as properties, not only as inputs
*  `SDC-3060 <https://jira.onap.org/browse/SDC-3060>`_ - Update a resource template from a new onboarding package
*  `SDC-3051 <https://jira.onap.org/browse/SDC-3051>`_ - Upgrade Vulnerable Direct Dependencies
*  `SDC-3021 <https://jira.onap.org/browse/SDC-3021>`_ - Enable by configuration which global type file should be added to the generated CSAR
*  `SDC-3020 <https://jira.onap.org/browse/SDC-3020>`_ - Adjust docker-compose and SSL config in Workflow plugin
*  `SDC-2997 <https://jira.onap.org/browse/SDC-2997>`_ - HEAT to TOSCA VM Consolidation
*  `SDC-2984 <https://jira.onap.org/browse/SDC-2984>`_ - Remove powermock dependency
*  `SDC-2957 <https://jira.onap.org/browse/SDC-2957>`_ - Support the substitution_mappings in the VNFD
*  `SDC-2883 <https://jira.onap.org/browse/SDC-2883>`_ - Support design of Service templates, including NSDs
*  `SDC-2877 <https://jira.onap.org/browse/SDC-2877>`_ - Support for configuring base tosca type on a category basis
*  `SDC-2854 <https://jira.onap.org/browse/SDC-2854>`_ - Support 50 characters for VSP name in OnBoarding
*  `SDC-2820 <https://jira.onap.org/browse/SDC-2820>`_ - Create / Update Entitlement Pool - Support Type Field
*  `SDC-2810 <https://jira.onap.org/browse/SDC-2810>`_ - Support for deploying a service that contains an ETSI SOL001 v2.7.1 compliant Network Service using an external NFVO
*  `SDC-2809 <https://jira.onap.org/browse/SDC-2809>`_ - Support for deploying a service that contains an ETSI SOL001 v2.7.1 compliant Network Service using VF-C as the NFVO
*  `SDC-2808 <https://jira.onap.org/browse/SDC-2808>`_ - Design ETSI SOL001 NSD and generate ETSI SOL001 compliant Network Service descriptor and package
*  `SDC-2804 <https://jira.onap.org/browse/SDC-2804>`_ - SDC supports onboarding of the SOL007 NS package for an External NFVO
*  `SDC-2781 <https://jira.onap.org/browse/SDC-2781>`_ - Allow other entries for SOL004 Tosca.meta
*  `SDC-2775 <https://jira.onap.org/browse/SDC-2775>`_ - Include derived_from types in generated csar
*  `SDC-2772 <https://jira.onap.org/browse/SDC-2772>`_ - Import of VFC interface implementation
*  `SDC-2771 <https://jira.onap.org/browse/SDC-2771>`_ - Unassigned requirements in topology template substitution mapping
*  `SDC-2768 <https://jira.onap.org/browse/SDC-2768>`_ - Support Tosca DependsOn root node relationship
*  `SDC-2754 <https://jira.onap.org/browse/SDC-2754>`_ - Allow SDC component artifact types to be configurable
*  `SDC-2688 <https://jira.onap.org/browse/SDC-2688>`_ - Upgrade Selenium
*  `SDC-2659 <https://jira.onap.org/browse/SDC-2659>`_ - Support setting custom properties required true/false in UI
*  `SDC-2642 <https://jira.onap.org/browse/SDC-2642>`_ - Archive DCAE-DS project
*  `SDC-2618 <https://jira.onap.org/browse/SDC-2618>`_ - Mapping between SOL001 NSD and SDC AID DM/SDC Internal TOSCA
*  `SDC-2612 <https://jira.onap.org/browse/SDC-2612>`_ - SDC supports onboarding of the SOL007 NS package for VFC as the NFVO
*  `SDC-2590 <https://jira.onap.org/browse/SDC-2590>`_ - Upgrade To Cassandra 3

**Tasks**

The full list of implemented tasks is available on `JIRA GUILIN TASKS <https://jira.onap.org/issues/?jql=project%20%3D%20SDC%20AND%20issuetype%20%3D%20Task%20AND%20fixVersion%20%3D%20%22Guilin%20Release%22>`_

**Bug Fixes**

The full list of fixed bugs is available on `JIRA GUILIN BUGS <https://jira.onap.org/issues/?jql=project%20%3D%20SDC%20AND%20issuetype%20%3D%20Bug%20AND%20fixVersion%20%3D%20%22Guilin%20Release%22>`_


Security Notes
--------------

*Fixed Security Issues*

*Known Security Issues*

-  [`OJSI-90 <https://jira.onap.org/browse/OJSI-90>`__\ ] - SDC exposes unprotected API for user creation
-  [`OJSI-94 <https://jira.onap.org/browse/OJSI-94>`__\ ] - sdc-wfd-fe allows to impersonate any user by setting USER_ID


*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

	N/A

**Upgrade Notes**

	N/A

**Deprecation Notes**

	SDC DCAE-DS plugin is now deprecated (replaced by DCAE-MOD)

**Other**

	N/A

Version: 1.6.7
==============

:Release Date: 2020-07-23

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.1

-  sdc-tosca

   :Version: 1.6.2

Release Purpose
----------------
Frankfurt maintenance release : fix high severity bugs identified post Frankfurt

**Stories/Bug fixes/Tasks implemented**

*  `SDC-2930 <https://jira.onap.org/browse/SDC-2930>`_ - [El Alto] Can't create VF via a newly created VSP
*  `SDC-3189 <https://jira.onap.org/browse/SDC-3189>`_ - release artifacts for Frankfurt Maintenance
*  `SDC-3190 <https://jira.onap.org/browse/SDC-3190>`_ - update sdc pom to 1.6.7 for frankfurt maintenance release

Security Notes
--------------

*Fixed Security Issues*

*Known Security Issues*

-  [`OJSI-90 <https://jira.onap.org/browse/OJSI-90>`__\ ] - SDC exposes unprotected API for user creation
-  [`OJSI-94 <https://jira.onap.org/browse/OJSI-94>`__\ ] - sdc-wfd-fe allows to impersonate any user by setting USER_ID


*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

	N/A

**Upgrade Notes**

	N/A

**Deprecation Notes**

	N/A

**Other**

	N/A

Version: 1.6.6
==============

:Release Date: 2020-06-04

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.1

-  sdc-tosca

   :Version: 1.6.2

Release Purpose
----------------


**Epics**

*  `SDC-1607 <https://jira.onap.org/browse/SDC-1607>`_ - Logging alignemnet to 1.2 logging spec
*  `SDC-1970 <https://jira.onap.org/browse/SDC-1970>`_ - Supporting PNF package onboarding
*  `SDC-2011 <https://jira.onap.org/browse/SDC-2011>`_ - Design Studio (DCAE-DS) support for 3GPP PM Mapper
*  `SDC-2378 <https://jira.onap.org/browse/SDC-2378>`_ - ONAP as Third Party Domain Manager - Import Third Party Catalog in SDC
*  `SDC-2415 <https://jira.onap.org/browse/SDC-2415>`_ - AAF integration of HTTPS certificates
*  `SDC-2482 <https://jira.onap.org/browse/SDC-2482>`_ - Add VSP Compliance and Verification Check feature Phase 2
*  `SDC-2555 <https://jira.onap.org/browse/SDC-2555>`_ - SDC support of Network Slicing Demo in Frankfurt
*  `SDC-2598 <https://jira.onap.org/browse/SDC-2598>`_ - Frankfurt release planning milestone
*  `SDC-2643 <https://jira.onap.org/browse/SDC-2643>`_ - Collapsing Roles / Role consolidation
*  `SDC-2683 <https://jira.onap.org/browse/SDC-2683>`_ - Functionality and API Freeze
*  `SDC-2742 <https://jira.onap.org/browse/SDC-2742>`_ - Code Freeze
*  `SDC-2787 <https://jira.onap.org/browse/SDC-2787>`_ - Release Candidate 0 Integration and Test

**Stories**

*  `SDC-1952 <https://jira.onap.org/browse/SDC-1952>`_ - 9 artifacts 9 definition is missing in the exported csar 9 s VDU node
*  `SDC-2095 <https://jira.onap.org/browse/SDC-2095>`_ - R6 5G U/C SDC: PM Dictionary GUI Display from PNF Onboarded Package
*  `SDC-2138 <https://jira.onap.org/browse/SDC-2138>`_ - SDC docker runs as non root
*  `SDC-2216 <https://jira.onap.org/browse/SDC-2216>`_ - Security improvements
*  `SDC-2382 <https://jira.onap.org/browse/SDC-2382>`_ - Introduce a new category for the 3rd party Service
*  `SDC-2383 <https://jira.onap.org/browse/SDC-2383>`_ - Expose the API for service creation as an External API
*  `SDC-2385 <https://jira.onap.org/browse/SDC-2385>`_ - Introduce property mapping rules to define parent-child mapping for properties added in service definition
*  `SDC-2393 <https://jira.onap.org/browse/SDC-2393>`_ - CBA association enhancement in PNFD to support API decision
*  `SDC-2394 <https://jira.onap.org/browse/SDC-2394>`_ - Support custom PNF workflow design
*  `SDC-2405 <https://jira.onap.org/browse/SDC-2405>`_ - Add workflow-designer secure frontend-backend communication
*  `SDC-2417 <https://jira.onap.org/browse/SDC-2417>`_ - SDC must work in HTTPS mode in all interfaces
*  `SDC-2456 <https://jira.onap.org/browse/SDC-2456>`_ - Optimize usage of repositories
*  `SDC-2559 <https://jira.onap.org/browse/SDC-2559>`_ - Need a getter method to return Input list from getEntity API
*  `SDC-2561 <https://jira.onap.org/browse/SDC-2561>`_ - Transformation of customized Node Types for PNFD
*  `SDC-2562 <https://jira.onap.org/browse/SDC-2562>`_ - Package Security - support signing of individual artifacts
*  `SDC-2582 <https://jira.onap.org/browse/SDC-2582>`_ - CBA association enhancement in VNFD to support API decision
*  `SDC-2584 <https://jira.onap.org/browse/SDC-2584>`_ - SDC-BE - create unique identifier for each execution of test cases.
*  `SDC-2585 <https://jira.onap.org/browse/SDC-2585>`_ - Refresh option in the onboarding validation page
*  `SDC-2589 <https://jira.onap.org/browse/SDC-2589>`_ - Onboard PNF software version
*  `SDC-2590 <https://jira.onap.org/browse/SDC-2590>`_ - Upgrade To Cassandra 3
*  `SDC-2629 <https://jira.onap.org/browse/SDC-2629>`_ - SDC UI button for user to request VTP to create \& upload a OVP tar.gz file to OVP Portal
*  `SDC-2631 <https://jira.onap.org/browse/SDC-2631>`_ - SDC Meta Data for CDS Integration
*  `SDC-2638 <https://jira.onap.org/browse/SDC-2638>`_ - Upgrade Portal SDK to latest (2.6.0)
*  `SDC-2639 <https://jira.onap.org/browse/SDC-2639>`_ - Align logging to Onap-ELS 2019.11
*  `SDC-2640 <https://jira.onap.org/browse/SDC-2640>`_ - Handle onboard ALTER tables to support upgrade
*  `SDC-2644 <https://jira.onap.org/browse/SDC-2644>`_ - Collapsing Roles - UI changes
*  `SDC-2645 <https://jira.onap.org/browse/SDC-2645>`_ - From Certified to Distributed - BE
*  `SDC-2650 <https://jira.onap.org/browse/SDC-2650>`_ - Perform Software Composition Analysis - Vulnerability tables
*  `SDC-2651 <https://jira.onap.org/browse/SDC-2651>`_ - Tosca Parser - getVFModule - new API
*  `SDC-2652 <https://jira.onap.org/browse/SDC-2652>`_ - Document current upgrade component Strategy
*  `SDC-2656 <https://jira.onap.org/browse/SDC-2656>`_ - add securityUtil code to Onap
*  `SDC-2685 <https://jira.onap.org/browse/SDC-2685>`_ - Upgrade Node \& npm version
*  `SDC-2686 <https://jira.onap.org/browse/SDC-2686>`_ - add common-app-logging module
*  `SDC-2687 <https://jira.onap.org/browse/SDC-2687>`_ - Upgrade sdc-tosca version in main SDC pom
*  `SDC-2691 <https://jira.onap.org/browse/SDC-2691>`_ - Enhance catalog FE proxy to be able to proxy to any defined plugin
*  `SDC-2692 <https://jira.onap.org/browse/SDC-2692>`_ - Fix sonar issues
*  `SDC-2696 <https://jira.onap.org/browse/SDC-2696>`_ - Release sdc-be-common 1.6.0
*  `SDC-2699 <https://jira.onap.org/browse/SDC-2699>`_ - Increase SDC Code Coverage
*  `SDC-2703 <https://jira.onap.org/browse/SDC-2703>`_ - Upgrade Node/npm/yarn version for WF-D
*  `SDC-2724 <https://jira.onap.org/browse/SDC-2724>`_ - Catalog alignment
*  `SDC-2732 <https://jira.onap.org/browse/SDC-2732>`_ - fix CSIT
*  `SDC-2733 <https://jira.onap.org/browse/SDC-2733>`_ - remove unnecessary dependencies from pom
*  `SDC-2758 <https://jira.onap.org/browse/SDC-2758>`_ - Backend configuration file runtime reload
*  `SDC-2760 <https://jira.onap.org/browse/SDC-2760>`_ - Support import of custom node type name
*  `SDC-2761 <https://jira.onap.org/browse/SDC-2761>`_ - Backend extensibility


Security Notes
--------------

*Fixed Security Issues*

-  [`OJSI-102 <https://jira.onap.org/browse/OJSI-102>`__\ ] - sdc-fe exposes plain text HTTP endpoint using port 30206
-  [`OJSI-126 <https://jira.onap.org/browse/OJSI-126>`__\ ] - sdc-wfd-fe exposes plain text HTTP endpoint using port 30256
-  [`OJSI-127 <https://jira.onap.org/browse/OJSI-127>`__\ ] - sdc-wfd-be exposes plain text HTTP endpoint using port 30257


*Known Security Issues*

-  [`OJSI-90 <https://jira.onap.org/browse/OJSI-90>`__\ ] - SDC exposes unprotected API for user creation
-  [`OJSI-94 <https://jira.onap.org/browse/OJSI-94>`__\ ] - sdc-wfd-fe allows to impersonate any user by setting USER_ID


*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

	N/A

**Upgrade Notes**

	N/A

**Deprecation Notes**

	N/A

**Other**

	N/A




Version: 1.5.2
==============

:Release Date: 2019-10-10

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.4.0

-  sdc-tosca

   :Version: 1.6.2

Release Purpose
----------------


**Epics**

-  [`SDC-1425`_] - SDC documentation improvement
-  [`SDC-2461`_] - El Alto release planning milestone
-  [`SDC-2487`_] - Functionality and API Freeze
-  [`SDC-2523`_] - Code Freeze
-  [`SDC-2566`_] - Release Candidate 0 Integration and Test

.. _SDC-1425: https://jira.onap.org/browse/SDC-1425
.. _SDC-2461: https://jira.onap.org/browse/SDC-2461
.. _SDC-2487: https://jira.onap.org/browse/SDC-2487
.. _SDC-2523: https://jira.onap.org/browse/SDC-2523
.. _SDC-2566: https://jira.onap.org/browse/SDC-2566

**Stories**

-  [`SDC-1894`_] - Enable Certificate for SDC
-  [`SDC-1961`_] - Purge APIs for Service and Resource
-  [`SDC-2072`_] - Create VSP from VNF csar
-  [`SDC-2101`_] - RestConf - Policy model support
-  [`SDC-2102`_] - DFC - Policy model support
-  [`SDC-2104`_] - PM-Mapper Policy Model support
-  [`SDC-2142`_] - Enhance Service/VF/PNF to support Req & Cap
-  [`SDC-2166`_] - Enable transport level encryption on all interfaces
   and the option to turn it off
-  [`SDC-2294`_] - Support Capability Properties
-  [`SDC-2296`_] - Upgrade SDC from Titan to Janus Graph
-  [`SDC-2313`_] - Fix Service Proxy Node Type
-  [`SDC-2359`_] - Fix Service Proxy Node Template
-  [`SDC-2397`_] - SDC Constructor injection - better practice
-  [`SDC-2416`_] - Embed AAF generated certificate in SDC
-  [`SDC-2419`_] - Migrate all SDC projects to O-Parent
-  [`SDC-2475`_] - Package Handling - Validate PM Dictionary and VES
   Events YAML Files in SOL004 package
-  [`SDC-2478`_] - Update SDC versions
-  [`SDC-2509`_] - Descriptor Handling - Model-driven mapping from
   SOL001 to internal model
-  [`SDC-2510`_] - Package Handling - Store the original onboarded
   package, whether it's a CSAR or a ZIP
-  [`SDC-2540`_] - Package Handling - Fix artifacts references in main
   TOSCA descriptor while converting packages
-  [`SDC-2560`_] - Update SDC versions

.. _SDC-1894: https://jira.onap.org/browse/SDC-1894
.. _SDC-1961: https://jira.onap.org/browse/SDC-1961
.. _SDC-2072: https://jira.onap.org/browse/SDC-2072
.. _SDC-2101: https://jira.onap.org/browse/SDC-2101
.. _SDC-2102: https://jira.onap.org/browse/SDC-2102
.. _SDC-2104: https://jira.onap.org/browse/SDC-2104
.. _SDC-2142: https://jira.onap.org/browse/SDC-2142
.. _SDC-2166: https://jira.onap.org/browse/SDC-2166
.. _SDC-2294: https://jira.onap.org/browse/SDC-2294
.. _SDC-2296: https://jira.onap.org/browse/SDC-2296
.. _SDC-2313: https://jira.onap.org/browse/SDC-2313
.. _SDC-2359: https://jira.onap.org/browse/SDC-2359
.. _SDC-2397: https://jira.onap.org/browse/SDC-2397
.. _SDC-2416: https://jira.onap.org/browse/SDC-2416
.. _SDC-2419: https://jira.onap.org/browse/SDC-2419
.. _SDC-2475: https://jira.onap.org/browse/SDC-2475
.. _SDC-2478: https://jira.onap.org/browse/SDC-2478
.. _SDC-2509: https://jira.onap.org/browse/SDC-2509
.. _SDC-2510: https://jira.onap.org/browse/SDC-2510
.. _SDC-2540: https://jira.onap.org/browse/SDC-2540
.. _SDC-2560: https://jira.onap.org/browse/SDC-2560


Security Notes
--------------

*Fixed Security Issues*

-  [`OJSI-31 <https://jira.onap.org/browse/OJSI-31>`__\ ] - Unsecured Swagger UI Interface in sdc-wfd-be
-  CVE-2019-12115 [`OJSI-76 <https://jira.onap.org/browse/OJSI-76>`__\ ] - demo-sdc-sdc-be exposes JDWP on port 4000 which allows for arbitrary code execution
-  CVE-2019-12116 [`OJSI-77 <https://jira.onap.org/browse/OJSI-77>`__\ ] - demo-sdc-sdc-fe exposes JDWP on port 6000 which allows for arbitrary code execution
-  CVE-2019-12117 [`OJSI-78 <https://jira.onap.org/browse/OJSI-78>`__\ ] - demo-sdc-sdc-onboarding-be exposes JDWP on port 4001 which allows for arbitrary code execution
-  CVE-2019-12118 [`OJSI-79 <https://jira.onap.org/browse/OJSI-79>`__\ ] - demo-sdc-sdc-wfd-be exposes JDWP on port 7001 which allows for arbitrary code execution
-  CVE-2019-12119 [`OJSI-80 <https://jira.onap.org/browse/OJSI-80>`__\ ] - demo-sdc-sdc-wfd-fe exposes JDWP on port 7000 which allows for arbitrary code execution

*Known Security Issues*

-  [`OJSI-90 <https://jira.onap.org/browse/OJSI-90>`__\ ] - SDC exposes unprotected API for user creation
-  [`OJSI-94 <https://jira.onap.org/browse/OJSI-94>`__\ ] - sdc-wfd-fe allows to impersonate any user by setting USER_ID
-  [`OJSI-126 <https://jira.onap.org/browse/OJSI-126>`__\ ] - In default deployment SDC (sdc-wfd-fe) exposes HTTP port 30256 outside of cluster.
-  [`OJSI-127 <https://jira.onap.org/browse/OJSI-127>`__\ ] - In default deployment SDC (sdc-wfd-be) exposes HTTP port 30257 outside of cluster.


*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

-  [`SDC-2541 <https://jira.onap.org/browse/SDC-2541>`__\ ] - Custom WF not present in the CSAR package

**Upgrade Notes**

	N/A

**Deprecation Notes**

	N/A

**Other**

	N/A




Version: 1.4.1
==============

:Release Date: 2019-06-06

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.3.0

-  sdc-tosca

   :Version: 1.5.1

Release Purpose
----------------

**New Features**

The main goal of the Dublin release was to:
    - Support PNF onboarding
    - SOL 001 v2.5.1 support
    - VSP compliance check feature
    - SDC and CDS integration
    - improve code coverage of the SDC code.


**Epics**

-  [`SDC-1937 <https://jira.onap.org/browse/SDC-1937>`__\ ] - Service Workflow - Assigned Workflow and Complex Types in Operation
-  [`SDC-1956 <https://jira.onap.org/browse/SDC-1956>`__\ ] - Add VSP Compliance Check feature
-  [`SDC-1970 <https://jira.onap.org/browse/SDC-1970>`__\ ] - Supporting PNF package onboarding
-  [`SDC-1987 <https://jira.onap.org/browse/SDC-1987>`__\ ] - Add dependent child service to service
-  [`SDC-1988 <https://jira.onap.org/browse/SDC-1988>`__\ ] - Add property to service
-  [`SDC-1990 <https://jira.onap.org/browse/SDC-1990>`__\ ] - Service Consumption
-  [`SDC-1991 <https://jira.onap.org/browse/SDC-1991>`__\ ] - Service Consumption - Input Data and Validations
-  [`SDC-1992 <https://jira.onap.org/browse/SDC-1992>`__\ ] - Service dependency - Rainy Day Validations
-  [`SDC-1993 <https://jira.onap.org/browse/SDC-1993>`__\ ] - Service dependency - Input Data and Validations
-  [`SDC-1994 <https://jira.onap.org/browse/SDC-1994>`__\ ] - Add property to VNF and PNF
-  [`SDC-1999 <https://jira.onap.org/browse/SDC-1999>`__\ ] - Operation interfaces
-  [`SDC-2170 <https://jira.onap.org/browse/SDC-2170>`__\ ] - updating the VNFD (SOL001) type based on SOL001 v2.5.1

**Stories**

-  [`SDC-1000 <https://jira.onap.org/browse/SDC-1000>`__\ ] - SDC Parser is throwing exception on critical issues
-  [`SDC-1392 <https://jira.onap.org/browse/SDC-1392>`__\ ] - Write Unit test for Compile-Helper-Plugin
-  [`SDC-1399 <https://jira.onap.org/browse/SDC-1399>`__\ ] - Change the plugins load to be parallel
-  [`SDC-1426 <https://jira.onap.org/browse/SDC-1426>`__\ ] - catalog documentation
-  [`SDC-1427 <https://jira.onap.org/browse/SDC-1427>`__\ ] - Onboarding documentation
-  [`SDC-1429 <https://jira.onap.org/browse/SDC-1429>`__\ ] - WORKFLOW documentation
-  [`SDC-1489 <https://jira.onap.org/browse/SDC-1489>`__\ ] - multiple cloud technology artifact support
-  [`SDC-1568 <https://jira.onap.org/browse/SDC-1568>`__\ ] - Health check integration for designers
-  [`SDC-1569 <https://jira.onap.org/browse/SDC-1569>`__\ ] - Enable a secuirity solution for the designers in sdc TBD
-  [`SDC-1743 <https://jira.onap.org/browse/SDC-1743>`__\ ] - Add support for work flow deployment on heat
-  [`SDC-1744 <https://jira.onap.org/browse/SDC-1744>`__\ ] - Add support for different locations of Main service template WIP
-  [`SDC-1925 <https://jira.onap.org/browse/SDC-1925>`__\ ] - Resolve SONAR issues in SDC BE
-  [`SDC-1941 <https://jira.onap.org/browse/SDC-1941>`__\ ] - SDC refactoring and code smells
-  [`SDC-1946 <https://jira.onap.org/browse/SDC-1946>`__\ ] - Code quality improvements
-  [`SDC-1948 <https://jira.onap.org/browse/SDC-1948>`__\ ] - Solve BE issues from sonar
-  [`SDC-1950 <https://jira.onap.org/browse/SDC-1950>`__\ ] - asdctool code quality improvements
-  [`SDC-1973 <https://jira.onap.org/browse/SDC-1973>`__\ ] - Create VSP package from PNF onboarding package
-  [`SDC-1974 <https://jira.onap.org/browse/SDC-1974>`__\ ] - Supporting PNF manifest file in the onboarding package
-  [`SDC-1975 <https://jira.onap.org/browse/SDC-1975>`__\ ] - Design time catalog to associate artifacts with PNF (Test)
-  [`SDC-1976 <https://jira.onap.org/browse/SDC-1976>`__\ ] - Supporting PNFD (SOL001) mapping to AID model
-  [`SDC-1977 <https://jira.onap.org/browse/SDC-1977>`__\ ] - Display VSP Resource Type (VF/PNF) in Import VSP UI
-  [`SDC-1978 <https://jira.onap.org/browse/SDC-1978>`__\ ] - Ensure descriptor name matches name used in generated TOSCA.meta in VSP
-  [`SDC-1979 <https://jira.onap.org/browse/SDC-1979>`__\ ] - Allowing the dedicated artifact folder with Entry-point in TOSCA.meta
-  [`SDC-1980 <https://jira.onap.org/browse/SDC-1980>`__\ ] - Supporting onboarding packaging security
-  [`SDC-2022 <https://jira.onap.org/browse/SDC-2022>`__\ ] - Allow custom plugins in SDC
-  [`SDC-2067 <https://jira.onap.org/browse/SDC-2067>`__\ ] - SDC and CDS Integration to enable E2E Automation
-  [`SDC-2085 <https://jira.onap.org/browse/SDC-2085>`__\ ] - Outputs on operations - Operation screen BE
-  [`SDC-2090 <https://jira.onap.org/browse/SDC-2090>`__\ ] - update the normative type of onboarding DM
-  [`SDC-2094 <https://jira.onap.org/browse/SDC-2094>`__\ ] - R4 5G U/C SDC: FM Meta Data GUI Display from PNF Onboarded Package
-  [`SDC-2108 <https://jira.onap.org/browse/SDC-2108>`__\ ] - Import VSP and Create PNF internal csar
-  [`SDC-2109 <https://jira.onap.org/browse/SDC-2109>`__\ ] - Adding additional artifacts
-  [`SDC-2110 <https://jira.onap.org/browse/SDC-2110>`__\ ] - Add PNF manually (without using vsp)
-  [`SDC-2112 <https://jira.onap.org/browse/SDC-2112>`__\ ] - Add a copy of the onboarded package under artifact folder
-  [`SDC-2113 <https://jira.onap.org/browse/SDC-2113>`__\ ] - copy the on boarding artifacts into the right SDC artifact type
-  [`SDC-2136 <https://jira.onap.org/browse/SDC-2136>`__\ ] - HTTPS support on workflow application backend
-  [`SDC-2168 <https://jira.onap.org/browse/SDC-2168>`__\ ] - M2/3/4 findings
-  [`SDC-2194 <https://jira.onap.org/browse/SDC-2194>`__\ ] - Enhance SDC Workflow designer BE to connect to secure Cassandra
-  [`SDC-2199 <https://jira.onap.org/browse/SDC-2199>`__\ ] - Migrate SDC to use Common Cassandra Cluster
-  [`SDC-2226 <https://jira.onap.org/browse/SDC-2226>`__\ ] - Create Internal BE API for artifact Upload
-  [`SDC-2233 <https://jira.onap.org/browse/SDC-2233>`__\ ] - Support workflow artifact in Service Distribution Notification
-  [`SDC-2280 <https://jira.onap.org/browse/SDC-2280>`__\ ] - achieve CII Badging passing level for Dublin
-  [`SDC-2313 <https://jira.onap.org/browse/SDC-2313>`__\ ] - Fix Service Proxy Node Type

**Known Issues**

-  [`SDC-2336 <https://jira.onap.org/browse/SDC-2336>`__\ ] - Service dependency - Can't select sibling property when sibling node is not service proxy
-  [`SDC-2374 <https://jira.onap.org/browse/SDC-2374>`__\ ] - SDC appears to lose connectivity to Cassandra and Titan intermittently
-  [`SDC-2371 <https://jira.onap.org/browse/SDC-2371>`__\ ] - SDC fails to deploy in Windriver lab

Security Notes
--------------

*Fixed Security Issues*

*Known Security Issues*

-  [`OJSI-31 <https://jira.onap.org/browse/OJSI-31>`__\ ] - Unsecured Swagger UI Interface in sdc-wfd-be
-  CVE-2019-12115 [`OJSI-76 <https://jira.onap.org/browse/OJSI-76>`__\ ] - demo-sdc-sdc-be exposes JDWP on port 4000 which allows for arbitrary code execution
-  CVE-2019-12116 [`OJSI-77 <https://jira.onap.org/browse/OJSI-77>`__\ ] - demo-sdc-sdc-fe exposes JDWP on port 6000 which allows for arbitrary code execution
-  CVE-2019-12117 [`OJSI-78 <https://jira.onap.org/browse/OJSI-78>`__\ ] - demo-sdc-sdc-onboarding-be exposes JDWP on port 4001 which allows for arbitrary code execution
-  CVE-2019-12118 [`OJSI-79 <https://jira.onap.org/browse/OJSI-79>`__\ ] - demo-sdc-sdc-wfd-be exposes JDWP on port 7001 which allows for arbitrary code execution
-  CVE-2019-12119 [`OJSI-80 <https://jira.onap.org/browse/OJSI-80>`__\ ] - demo-sdc-sdc-wfd-fe exposes JDWP on port 7000 which allows for arbitrary code execution
-  [`OJSI-90 <https://jira.onap.org/browse/OJSI-90>`__\ ] - SDC exposes unprotected API for user creation
-  [`OJSI-94 <https://jira.onap.org/browse/OJSI-94>`__\ ] - sdc-wfd-fe allows to impersonate any user by setting USER_ID
-  [`OJSI-101 <https://jira.onap.org/browse/OJSI-101>`__\ ] - In default deployment SDC (sdc-be) exposes HTTP port 30205 outside of cluster.
-  [`OJSI-102 <https://jira.onap.org/browse/OJSI-102>`__\ ] - In default deployment SDC (sdc-fe) exposes HTTP port 30206 outside of cluster.
-  [`OJSI-126 <https://jira.onap.org/browse/OJSI-126>`__\ ] - In default deployment SDC (sdc-wfd-fe) exposes HTTP port 30256 outside of cluster.
-  [`OJSI-127 <https://jira.onap.org/browse/OJSI-127>`__\ ] - In default deployment SDC (sdc-wfd-be) exposes HTTP port 30257 outside of cluster.
-  [`OJSI-132 <https://jira.onap.org/browse/OJSI-132>`__\ ] - In default deployment SDC (sdc-dcae-fe) exposes HTTP port 30263 outside of cluster.
-  [`OJSI-133 <https://jira.onap.org/browse/OJSI-133>`__\ ] - In default deployment SDC (sdc-dcae-dt) exposes HTTP port 30265 outside of cluster.

*Known Vulnerabilities in Used Modules*

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__

**Known Issues**

	N/A

**Upgrade Notes**

	N/A

**Deprecation Notes**

	N/A

**Other**

	N/A


Version: 1.3.7
==============

:Release Date: 2019-01-31

`README <https://github.com/onap/sdc>`__

SDC SDKs Versions
-----------------

-  sdc-distribution-client
       :Version: 1.3.0

-  sdc-tosca
	   :Version: 1.4.63

	   `README <https://github.com/onap/sdc-sdc-tosca>`__

Release Purpose
----------------
The Casablanca Maintenance release was focused on fixing high priority defects discovered in Casablanca release.

**Bugs**

-  [`SDC-1447 <https://jira.onap.org/browse/SDC-1447>`__\ ] - [SDC] SDC create csar with many warnnings
-  [`SDC-1955 <https://jira.onap.org/browse/SDC-1955>`__\ ] - SDC distribution failed
-  [`SDC-1958 <https://jira.onap.org/browse/SDC-1958>`__\ ] - SDC Parser can not be used for CCVPN Templates
-  [`SDC-1971 <https://jira.onap.org/browse/SDC-1971>`__\ ] - Change version failure
-  [`SDC-2014 <https://jira.onap.org/browse/SDC-2014>`__\ ] - Documentation figure not readable
-  [`SDC-2053 <https://jira.onap.org/browse/SDC-2053>`__\ ] - SDC fails healthcheck
-  [`SDC-2077 <https://jira.onap.org/browse/SDC-2077>`__\ ] - SDC-BE and SDC-FE missing log files



Version: 1.3.5
==============

:Release Date: 2018-11-30

`Link to README <https://github.com/onap/sdc>`__

SDC SDKs Versions
-----------------

-  sdc-distribution-client
       :Version: 1.3.0

-  sdc-tosca
           :Version: 1.4.7

           `README <https://github.com/onap/sdc-sdc-tosca>`__

Release Purpose
----------------
The Casablanca release was focused on improving platform stability and resiliency and introducing new platform capabilities.

**New Features**

The Casablanca release is the third release of the Service Design and Creation (SDC).

The main goal of the Casablanca release was to:
    - Improve code coverage of the SDC code.
    - Complete E2E workflow design and distribution.
    - Finalize DCAE-DS and integrate it with OOM
    - Support HPA
    - Enhance security


Security Notes
--------------

SDC code has been formally scanned during build time using NexusIQ and all Critical vulnerabilities have been addressed, items that remain open have been assessed for risk and determined to be false positive. The SDC open Critical security vulnerabilities and their risk assessment have been documented as part of the `project <https://wiki.onap.org/pages/viewpage.action?pageId=45307823>`_.

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`_
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`_
- `Project Vulnerability Review Table for SDC <https://wiki.onap.org/pages/viewpage.action?pageId=45307823>`_

**Known Issues**

-  [`SDC-1958 <https://jira.onap.org/browse/SDC-1958>`__\ ] - SDC Parser can not be used for CCVPN Templates.
-  [`SDC-1955 <https://jira.onap.org/browse/SDC-1955>`__\ ] - SDC distribution failed

**Upgrade Notes**

	N/A

**Deprecation Notes**

	N/A

**Other**

	N/A



Version: 1.2.0
==============

:Release Date: 2018-06-07

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.3.0

-  sdc-tosca

   :Version: 1.3.5

Release Purpose
----------------
The Beijing release was focused on improving platform stability and resiliency.

**New Features**

The Beijing release is the second release of the Service Design and Creation (SDC).

The main goal of the Beijing release was to:
    - Enhance Platform maturity by improving SDC maturity matrix see `Wiki <https://wiki.onap.org/display/DW/Beijing+Release+Platform+Maturity>`_.
    - SDC made improvements to the deployment to allow an easy and stable integration with OOM.
    - SDC change the docker structure to allow easier and the beginning of breaking the application into Micro Services.
    - SDC introduced a generic framework to allow different Modeling plugins to be easily integrated with SDC.
    - improve code coverage of the SDC code.
    - SDC introduced two new experimental projects the DCAE-D and WorkFlow which enhance the modeling capabilities of SDC.

DCAE-D information is available here: `DCAE-DS <https://wiki.onap.org/pages/viewpage.action?pageId=16005787>`_
Workflow information is available in readthedocs

**Epics**

-  [`SDC-77 <https://jira.onap.org/browse/SDC-77>`__\ ] - Designer issues
-  [`SDC-126 <https://jira.onap.org/browse/SDC-126>`__\ ] - Holmes Designer
-  [`SDC-180 <https://jira.onap.org/browse/SDC-180>`__\ ] - This epic is for modeling placements and homing rules for VNF placements
-  [`SDC-181 <https://jira.onap.org/browse/SDC-181>`__\ ] - This epic is for modeling relationship in TOSCA between nodes (VNFs)
-  [`SDC-220 <https://jira.onap.org/browse/SDC-220>`__\ ] - integrate VNF onboarding using VNF-SDK
-  [`SDC-326 <https://jira.onap.org/browse/SDC-326>`__\ ] - Support work flows in SDC
-  [`SDC-383 <https://jira.onap.org/browse/SDC-383>`__\ ] - sdc will enhance our testing to provide better testing coverage
-  [`SDC-647 <https://jira.onap.org/browse/SDC-647>`__\ ] - process build and deploy process optimization
-  [`SDC-659 <https://jira.onap.org/browse/SDC-659>`__\ ] - SDC deploy and build optimization
-  [`SDC-731 <https://jira.onap.org/browse/SDC-731>`__\ ] - sdc designer integration
-  [`SDC-778 <https://jira.onap.org/browse/SDC-778>`__\ ] - Non-Functional requirements - Resiliency
-  [`SDC-812 <https://jira.onap.org/browse/SDC-812>`__\ ] - Non-Functional requirements - Performance
-  [`SDC-813 <https://jira.onap.org/browse/SDC-813>`__\ ] - Non-Functional requirements - Stability
-  [`SDC-814 <https://jira.onap.org/browse/SDC-814>`__\ ] - Tenant Isolation - Context Distribution -  [`e1802 - TDP Epic 316628 <https://jira.onap.org/browse/SDC-52>`__\ ]
-  [`SDC-815 <https://jira.onap.org/browse/SDC-815>`__\ ] - Tenant Isolation - Context Definition -  [`e1802 - TDP Epic 316484 <https://jira.onap.org/browse/SDC-52>`__\ ]
-  [`SDC-816 <https://jira.onap.org/browse/SDC-816>`__\ ] - SDC Pause Instantiation -  [`e1802 - TDP Epic 330782 <https://jira.onap.org/browse/SDC-52>`__\ ]
-  [`SDC-817 <https://jira.onap.org/browse/SDC-817>`__\ ] - Service Model Design to support Complex Services
-  [`SDC-819 <https://jira.onap.org/browse/SDC-819>`__\ ] - Change namespace from openECOMP to org.onap
-  [`SDC-820 <https://jira.onap.org/browse/SDC-820>`__\ ] - SDC Enhance Connect Behavior -  [`1802 TDP Epic 332501 <https://jira.onap.org/browse/SDC-52>`__\ ]
-  [`SDC-823 <https://jira.onap.org/browse/SDC-823>`__\ ] - Non-Functional requirements - Security
-  [`SDC-825 <https://jira.onap.org/browse/SDC-825>`__\ ] - Non-Functional requirements - Manageability
-  [`SDC-826 <https://jira.onap.org/browse/SDC-826>`__\ ] - Non-Functional requirements - Usability
-  [`SDC-828 <https://jira.onap.org/browse/SDC-828>`__\ ] - OOM integration
-  [`SDC-831 <https://jira.onap.org/browse/SDC-831>`__\ ] - Support life cycle artifacts in model
-  [`SDC-936 <https://jira.onap.org/browse/SDC-936>`__\ ] - SDC parser configuration improvements
-  [`SDC-976 <https://jira.onap.org/browse/SDC-976>`__\ ] - Manual Scale Out use case support
-  [`SDC-978 <https://jira.onap.org/browse/SDC-978>`__\ ] - Adapter of WF Designer for SDC
-  [`SDC-980 <https://jira.onap.org/browse/SDC-980>`__\ ] - Extend Activities for Workflow Designer
-  [`SDC-985 <https://jira.onap.org/browse/SDC-985>`__\ ] - Hardware Platform Enablement(HPA) modeling design
-  [`SDC-986 <https://jira.onap.org/browse/SDC-986>`__\ ] - Hardware Platform Enablement(HPA) use case support
-  [`SDC-1053 <https://jira.onap.org/browse/SDC-1053>`__\ ] - PNF use case support

**Stories**

-  [`SDC-10 <https://jira.onap.org/browse/SDC-10>`__\ ] - Deploy a SDC high availability environment
-  [`SDC-51 <https://jira.onap.org/browse/SDC-51>`__\ ] - vCPE_UC: Add Close-Loop (CL) Blueprint Monitoring-Template (MT) to a VNF-I
-  [`SDC-73 <https://jira.onap.org/browse/SDC-73>`__\ ] - Import WorkFlow
-  [`SDC-82 <https://jira.onap.org/browse/SDC-82>`__\ ] - support adding artifact type for node template
-  [`SDC-118 <https://jira.onap.org/browse/SDC-118>`__\ ] - support sub process
-  [`SDC-124 <https://jira.onap.org/browse/SDC-124>`__\ ] - support insert a sub process which is already defined
-  [`SDC-143 <https://jira.onap.org/browse/SDC-143>`__\ ] - create local DEV environment based on onap vagrant
-  [`SDC-242 <https://jira.onap.org/browse/SDC-242>`__\ ] - TDP 325252 - resolve get_input values
-  [`SDC-243 <https://jira.onap.org/browse/SDC-243>`__\ ] - TDP 319197 - tosca parser port mirroring
-  [`SDC-259 <https://jira.onap.org/browse/SDC-259>`__\ ] - TDP 316633 - TenantIsolation ContextDistribution
-  [`SDC-277 <https://jira.onap.org/browse/SDC-277>`__\ ] - docker enhancements
-  [`SDC-343 <https://jira.onap.org/browse/SDC-343>`__\ ] - Fixing SONAR Qube Issues
-  [`SDC-364 <https://jira.onap.org/browse/SDC-364>`__\ ] - workflow designer backend init code
-  [`SDC-365 <https://jira.onap.org/browse/SDC-365>`__\ ] - support load data from config file
-  [`SDC-366 <https://jira.onap.org/browse/SDC-366>`__\ ] - convert workflow json to bpmn file
-  [`SDC-384 <https://jira.onap.org/browse/SDC-384>`__\ ] - Add UI testing capabilities to the SDC sanity docker
-  [`SDC-398 <https://jira.onap.org/browse/SDC-398>`__\ ] - write data to workflow template
-  [`SDC-403 <https://jira.onap.org/browse/SDC-403>`__\ ] - add unit test for config class
-  [`SDC-404 <https://jira.onap.org/browse/SDC-404>`__\ ] - add unit test for bpmn file convert
-  [`SDC-408 <https://jira.onap.org/browse/SDC-408>`__\ ] - integrate back end service
-  [`SDC-572 <https://jira.onap.org/browse/SDC-572>`__\ ] - HEAT Validations Error codes
-  [`SDC-586 <https://jira.onap.org/browse/SDC-586>`__\ ] - Support and align CSAR's for VOLTE
-  [`SDC-608 <https://jira.onap.org/browse/SDC-608>`__\ ] - CSIT and sanity stabilization
-  [`SDC-615 <https://jira.onap.org/browse/SDC-615>`__\ ] - add new artifact type to SDC
-  [`SDC-619 <https://jira.onap.org/browse/SDC-619>`__\ ] - ONAP support
-  [`SDC-627 <https://jira.onap.org/browse/SDC-627>`__\ ] - Collaboration - BE - Healing - new healing table
-  [`SDC-650 <https://jira.onap.org/browse/SDC-650>`__\ ] - review docker memory assignment
-  [`SDC-652 <https://jira.onap.org/browse/SDC-652>`__\ ] - K8/OOM adoption - Research
-  [`SDC-655 <https://jira.onap.org/browse/SDC-655>`__\ ] - Fixing update HEAT
-  [`SDC-660 <https://jira.onap.org/browse/SDC-660>`__\ ] - docker image size optimization
-  [`SDC-679 <https://jira.onap.org/browse/SDC-679>`__\ ] - Generate bpmn files that can be executed on activity engine
-  [`SDC-683 <https://jira.onap.org/browse/SDC-683>`__\ ] - sync release-1.1-0 with master
-  [`SDC-685 <https://jira.onap.org/browse/SDC-685>`__\ ] - create unit tests for jtosca
-  [`SDC-686 <https://jira.onap.org/browse/SDC-686>`__\ ] - code sync
-  [`SDC-687 <https://jira.onap.org/browse/SDC-687>`__\ ] - sdc designer integration part 1
-  [`SDC-712 <https://jira.onap.org/browse/SDC-712>`__\ ] - import normative superation
-  [`SDC-713 <https://jira.onap.org/browse/SDC-713>`__\ ] - amsterdam branch
-  [`SDC-728 <https://jira.onap.org/browse/SDC-728>`__\ ] - sdc designer integration part 2
-  [`SDC-732 <https://jira.onap.org/browse/SDC-732>`__\ ] - sdc designer integration part 3
-  [`SDC-740 <https://jira.onap.org/browse/SDC-740>`__\ ] - converter support IntermediateCatchEvent
-  [`SDC-741 <https://jira.onap.org/browse/SDC-741>`__\ ] - support script task
-  [`SDC-742 <https://jira.onap.org/browse/SDC-742>`__\ ] - converter supports gateway elements
-  [`SDC-744 <https://jira.onap.org/browse/SDC-744>`__\ ] - TDP 344203 - Distribution-client Tenant Isolation
-  [`SDC-745 <https://jira.onap.org/browse/SDC-745>`__\ ] - Converter support service task
-  [`SDC-746 <https://jira.onap.org/browse/SDC-746>`__\ ] - Converter supports error events
-  [`SDC-747 <https://jira.onap.org/browse/SDC-747>`__\ ] - Converter support rest task
-  [`SDC-749 <https://jira.onap.org/browse/SDC-749>`__\ ] - Update Global Types for TOSCA Import
-  [`SDC-753 <https://jira.onap.org/browse/SDC-753>`__\ ] - converter code style change
-  [`SDC-755 <https://jira.onap.org/browse/SDC-755>`__\ ] - ONAP support
-  [`SDC-781 <https://jira.onap.org/browse/SDC-781>`__\ ] - Create on boarding docker
-  [`SDC-782 <https://jira.onap.org/browse/SDC-782>`__\ ] - OOM/HEAT integration
-  [`SDC-788 <https://jira.onap.org/browse/SDC-788>`__\ ] - support Cassandra schema creation - work in progress
-  [`SDC-821 <https://jira.onap.org/browse/SDC-821>`__\ ] - Sanity alignment after merge
-  [`SDC-834 <https://jira.onap.org/browse/SDC-834>`__\ ] - Log management
-  [`SDC-840 <https://jira.onap.org/browse/SDC-840>`__\ ] - sync 1802p to ONAP
-  [`SDC-842 <https://jira.onap.org/browse/SDC-842>`__\ ] - down stream source
-  [`SDC-863 <https://jira.onap.org/browse/SDC-863>`__\ ] - onboarding workspace - selecting item with 1 draft version skips versions page
-  [`SDC-865 <https://jira.onap.org/browse/SDC-865>`__\ ] - refactor error codes in JTOSCA
-  [`SDC-868 <https://jira.onap.org/browse/SDC-868>`__\ ] - UI - Remove restful-js and jquery dependency
-  [`SDC-887 <https://jira.onap.org/browse/SDC-887>`__\ ] - UI -change variable names to catalog
-  [`SDC-889 <https://jira.onap.org/browse/SDC-889>`__\ ] - remove plan name from plan definition
-  [`SDC-891 <https://jira.onap.org/browse/SDC-891>`__\ ] - fix workflow is empty error
-  [`SDC-899 <https://jira.onap.org/browse/SDC-899>`__\ ] - update microservice config info
-  [`SDC-901 <https://jira.onap.org/browse/SDC-901>`__\ ] - add internationalization
-  [`SDC-902 <https://jira.onap.org/browse/SDC-902>`__\ ] - add exclusive gateway
-  [`SDC-903 <https://jira.onap.org/browse/SDC-903>`__\ ] - sdc designer integration part 5 bus and event resource and definition
-  [`SDC-905 <https://jira.onap.org/browse/SDC-905>`__\ ] - add backend service
-  [`SDC-906 <https://jira.onap.org/browse/SDC-906>`__\ ] - Deploy K8 on Vagrant
-  [`SDC-907 <https://jira.onap.org/browse/SDC-907>`__\ ] - Cassandra OOM Alignment - update OOM deployment
-  [`SDC-908 <https://jira.onap.org/browse/SDC-908>`__\ ] - ElasticSearch OOM Alignment
-  [`SDC-910 <https://jira.onap.org/browse/SDC-910>`__\ ] - file encoding change
-  [`SDC-911 <https://jira.onap.org/browse/SDC-911>`__\ ] - Cassandra OOM Alignment - create init docker
-  [`SDC-912 <https://jira.onap.org/browse/SDC-912>`__\ ] - ES OOM alignment - create init docker
-  [`SDC-913 <https://jira.onap.org/browse/SDC-913>`__\ ] - ES OOM Alignment - update OOM deployment
-  [`SDC-914 <https://jira.onap.org/browse/SDC-914>`__\ ] - Cassandra OOM Alignment - Chef clean up
-  [`SDC-915 <https://jira.onap.org/browse/SDC-915>`__\ ] - ES OOM Alignment - Chef clean up
-  [`SDC-916 <https://jira.onap.org/browse/SDC-916>`__\ ] - BE OOM Alignment - create init docker
-  [`SDC-917 <https://jira.onap.org/browse/SDC-917>`__\ ] - BE OOM alignment - update OOM deployment
-  [`SDC-918 <https://jira.onap.org/browse/SDC-918>`__\ ] - BE OOM Alignment - Chef clean up
-  [`SDC-919 <https://jira.onap.org/browse/SDC-919>`__\ ] - FE OOM alignment - update OOM deployment
-  [`SDC-920 <https://jira.onap.org/browse/SDC-920>`__\ ] - FE OOM Alignment - Chef clean up
-  [`SDC-921 <https://jira.onap.org/browse/SDC-921>`__\ ] - Kibana OOM Alignment - Chef clean up
-  [`SDC-922 <https://jira.onap.org/browse/SDC-922>`__\ ] - Kibana OOM alignment - update OOM deployment
-  [`SDC-923 <https://jira.onap.org/browse/SDC-923>`__\ ] - Cassandra OOM Alignment - create C* docker
-  [`SDC-924 <https://jira.onap.org/browse/SDC-924>`__\ ] - ONAP support
-  [`SDC-925 <https://jira.onap.org/browse/SDC-925>`__\ ] - ES OOM alignment - update ES docker
-  [`SDC-950 <https://jira.onap.org/browse/SDC-950>`__\ ] - update JTOSCA packages
-  [`SDC-951 <https://jira.onap.org/browse/SDC-951>`__\ ] - update SDC-TOSCA packages
-  [`SDC-952 <https://jira.onap.org/browse/SDC-952>`__\ ] - update SDC-DISTRIBUTION-CLIENT packages
-  [`SDC-953 <https://jira.onap.org/browse/SDC-953>`__\ ] - update SDC-DOCKER-BASE packages
-  [`SDC-955 <https://jira.onap.org/browse/SDC-955>`__\ ] - configuration ovriding capabilities.
-  [`SDC-957 <https://jira.onap.org/browse/SDC-957>`__\ ] - add ignore conformance level option
-  [`SDC-969 <https://jira.onap.org/browse/SDC-969>`__\ ] - sync1802E to ONAP part 1
-  [`SDC-972 <https://jira.onap.org/browse/SDC-972>`__\ ] - sdc designer integration part 4 design alignment
-  [`SDC-977 <https://jira.onap.org/browse/SDC-977>`__\ ] - sdc designer integration part 6 bus implementation
-  [`SDC-981 <https://jira.onap.org/browse/SDC-981>`__\ ] - Setup Micro-Service for WF Designer SDC Adapter
-  [`SDC-987 <https://jira.onap.org/browse/SDC-987>`__\ ] - Update Dropwizard to the Latest Version
-  [`SDC-990 <https://jira.onap.org/browse/SDC-990>`__\ ] - Add BDD Testing for onboarding
-  [`SDC-994 <https://jira.onap.org/browse/SDC-994>`__\ ] - VirtualMachineInterface validation + flow tests
-  [`SDC-995 <https://jira.onap.org/browse/SDC-995>`__\ ] - scan the TOSCA parser components code using fosologe
-  [`SDC-997 <https://jira.onap.org/browse/SDC-997>`__\ ] - Import Jersey to implement the Rest APIs
-  [`SDC-998 <https://jira.onap.org/browse/SDC-998>`__\ ] - VLAN tagging - Support pattern 1A
-  [`SDC-999 <https://jira.onap.org/browse/SDC-999>`__\ ] - Initialize metaProperties in JTosca to enable SDC Parser to parse individual Yamls
-  [`SDC-1002 <https://jira.onap.org/browse/SDC-1002>`__\ ] - Import swagger to build up the api-doc
-  [`SDC-1003 <https://jira.onap.org/browse/SDC-1003>`__\ ] - sdc designer integration 7 error handling
-  [`SDC-1011 <https://jira.onap.org/browse/SDC-1011>`__\ ] - Package UI Resources for Integration with Server
-  [`SDC-1012 <https://jira.onap.org/browse/SDC-1012>`__\ ] - Modify Base Url of WF Designer for Integrating with SDC
-  [`SDC-1015 <https://jira.onap.org/browse/SDC-1015>`__\ ] - BE OOM Alignment - create server docker
-  [`SDC-1018 <https://jira.onap.org/browse/SDC-1018>`__\ ] - FE OOM Alignment - create server docker
-  [`SDC-1019 <https://jira.onap.org/browse/SDC-1019>`__\ ] - Kibana OOM Alignment - create server docker
-  [`SDC-1020 <https://jira.onap.org/browse/SDC-1020>`__\ ] - Sync SDC with OOM deployment
-  [`SDC-1025 <https://jira.onap.org/browse/SDC-1025>`__\ ] - Sync Integ to ONAP
-  [`SDC-1036 <https://jira.onap.org/browse/SDC-1036>`__\ ] - VLAN tagging - Support pattern 1C1
-  [`SDC-1038 <https://jira.onap.org/browse/SDC-1038>`__\ ] - Provide sample data for WF Designer Adapter
-  [`SDC-1044 <https://jira.onap.org/browse/SDC-1044>`__\ ] - Update JTosca dependency version in SDC-Tosca
-  [`SDC-1055 <https://jira.onap.org/browse/SDC-1055>`__\ ] - Update version in JTOSCA POM
-  [`SDC-1061 <https://jira.onap.org/browse/SDC-1061>`__\ ] - ONAP Support
-  [`SDC-1073 <https://jira.onap.org/browse/SDC-1073>`__\ ] - Support VFC Instance Group per networkrole
-  [`SDC-1080 <https://jira.onap.org/browse/SDC-1080>`__\ ] - Close the 'DirectoryStream' after its be used.
-  [`SDC-1104 <https://jira.onap.org/browse/SDC-1104>`__\ ] - Normative alignment
-  [`SDC-1117 <https://jira.onap.org/browse/SDC-1117>`__\ ] - achieve the 50% unit test coverage
-  [`SDC-1130 <https://jira.onap.org/browse/SDC-1130>`__\ ] - Display Extend Activities on WF Designer UI
-  [`SDC-1131 <https://jira.onap.org/browse/SDC-1131>`__\ ] - Use Extend Activities to Design Workflow and Save
-  [`SDC-1164 <https://jira.onap.org/browse/SDC-1164>`__\ ] - SDC designer Integration part 8 - Add promise logic to the SDC pub-sub notify
-  [`SDC-1165 <https://jira.onap.org/browse/SDC-1165>`__\ ] - SDC designer Integration part 9 - Create component that disables selected layouts
-  [`SDC-1169 <https://jira.onap.org/browse/SDC-1169>`__\ ] - CII passing badge
-  [`SDC-1172 <https://jira.onap.org/browse/SDC-1172>`__\ ] - reach 50% unit test coverage sdc workflow
-  [`SDC-1174 <https://jira.onap.org/browse/SDC-1174>`__\ ] - Support unified Tosca pattern 1C2 for vlan subinterface
-  [`SDC-1197 <https://jira.onap.org/browse/SDC-1197>`__\ ] - Enhance SDC Parser to support Interface and Operations
-  [`SDC-1221 <https://jira.onap.org/browse/SDC-1221>`__\ ] - Fix library CVEs in sdc-cassandra
-  [`SDC-1310 <https://jira.onap.org/browse/SDC-1310>`__\ ] - Fix additional library CVEs in sdc-docker-base

**Bugs**

-  [`SDC-176 <https://jira.onap.org/browse/SDC-176>`__\ ] - Cannot access Kibana dashboard after logged into SDC as an Admin user.
-  [`SDC-249 <https://jira.onap.org/browse/SDC-249>`__\ ] - Temporary files and directories not completely removed during execution
-  [`SDC-250 <https://jira.onap.org/browse/SDC-250>`__\ ] - CSAR files are decompressed twice in the same thread
-  [`SDC-251 <https://jira.onap.org/browse/SDC-251>`__\ ] - TOSCA does not attempt to delete decompressed folders in certain conditions
-  [`SDC-265 <https://jira.onap.org/browse/SDC-265>`__\ ] - Some important information lost while upload a VF's TOSCA model using REST API in SDC 1.1
-  [`SDC-272 <https://jira.onap.org/browse/SDC-291>`__\ ] - The problem in the substitution_mappings of a service.
-  [`SDC-291 <https://jira.onap.org/browse/SDC-291>`__\ ] - Resources not closed in onboarding code in multiple places
-  [`SDC-311 <https://jira.onap.org/browse/SDC-311>`__\ ] - nfc_naming_code and nfc_function at VSP level not populated at VF level
-  [`SDC-312 <https://jira.onap.org/browse/SDC-312>`__\ ] - Can't assign a value for a capability's property of a node.
-  [`SDC-314 <https://jira.onap.org/browse/SDC-314>`__\ ] - Can't assign a value for a relationship's property.
-  [`SDC-328 <https://jira.onap.org/browse/SDC-328>`__\ ] - The default values of the properties of the 'org.openecomp.resource.vl.extVL' exported are incorrect.
-  [`SDC-341 <https://jira.onap.org/browse/SDC-341>`__\ ] - Deploy Error on Service Distribution
-  [`SDC-346 <https://jira.onap.org/browse/SDC-346>`__\ ] - Very long descriptions are not displayed correctly
-  [`SDC-386 <https://jira.onap.org/browse/SDC-386>`__\ ] - add license header for class
-  [`SDC-393 <https://jira.onap.org/browse/SDC-393>`__\ ] - Build stuck at org.openecomp.sdc.tosca.services.impl.ToscaAnalyzerServiceImplTest
-  [`SDC-402 <https://jira.onap.org/browse/SDC-402>`__\ ] - TDP 335705 - get_input of list of wrong format
-  [`SDC-412 <https://jira.onap.org/browse/SDC-412>`__\ ] - fix file already exists error
-  [`SDC-425 <https://jira.onap.org/browse/SDC-425>`__\ ] - change nested compute node type prefix
-  [`SDC-427 <https://jira.onap.org/browse/SDC-427>`__\ ] - fix group members ids
-  [`SDC-434 <https://jira.onap.org/browse/SDC-434>`__\ ] - Healing should be added to the resubmitAll utility REST
-  [`SDC-438 <https://jira.onap.org/browse/SDC-438>`__\ ] - Unable to Access SDC from Portal
-  [`SDC-440 <https://jira.onap.org/browse/SDC-440>`__\ ] - When creating a new VSP "HSS_FE_test_100617", HEAT validation failed with 2 errors
-  [`SDC-458 <https://jira.onap.org/browse/SDC-458>`__\ ] - Onboard questionaire-component missing enum AIC
-  [`SDC-459 <https://jira.onap.org/browse/SDC-459>`__\ ] - Month navigation does not work in firefox
-  [`SDC-466 <https://jira.onap.org/browse/SDC-466>`__\ ] - Submit failed for existing VSP "Nimbus 3.1 PCRF 0717"
-  [`SDC-468 <https://jira.onap.org/browse/SDC-468>`__\ ] - add check for flat node type, in case of port mirroring
-  [`SDC-473 <https://jira.onap.org/browse/SDC-473>`__\ ] - healing does not work on submitted vsps
-  [`SDC-479 <https://jira.onap.org/browse/SDC-479>`__\ ] - Fix the sdc vagrant-onap to work as a local deployment vagrant
-  [`SDC-480 <https://jira.onap.org/browse/SDC-480>`__\ ] - fix failing healers during resubmit
-  [`SDC-484 <https://jira.onap.org/browse/SDC-484>`__\ ] - Deleting a connection between VNF resources causes 500 error code on SDC Composition GUI
-  [`SDC-485 <https://jira.onap.org/browse/SDC-485>`__\ ] - Limits - issue in display
-  [`SDC-488 <https://jira.onap.org/browse/SDC-488>`__\ ] - parse error message
-  [`SDC-489 <https://jira.onap.org/browse/SDC-489>`__\ ] - error when moving to previous version using the version drop down
-  [`SDC-490 <https://jira.onap.org/browse/SDC-490>`__\ ] - Onboarding undo checkout wrong implementation
-  [`SDC-492 <https://jira.onap.org/browse/SDC-492>`__\ ] - need to add support for dynamic port
-  [`SDC-494 <https://jira.onap.org/browse/SDC-494>`__\ ] - Readonly does not work for VLM limits
-  [`SDC-526 <https://jira.onap.org/browse/SDC-526>`__\ ] - need to enable upload of files with zip or csar extensions in uppercase
-  [`SDC-529 <https://jira.onap.org/browse/SDC-529>`__\ ] - VendorSoftwareProductManager->healAndAdvanceFinalVersion heal Submit VSPs
-  [`SDC-534 <https://jira.onap.org/browse/SDC-534>`__\ ] - Fix swagger basepath
-  [`SDC-535 <https://jira.onap.org/browse/SDC-535>`__\ ] - Incorrect UI files information during onboarding.
-  [`SDC-540 <https://jira.onap.org/browse/SDC-540>`__\ ] - confirmation msg for delete FG doesn't appear
-  [`SDC-541 <https://jira.onap.org/browse/SDC-541>`__\ ] - delete confirmation modals - styles alignment
-  [`SDC-549 <https://jira.onap.org/browse/SDC-549>`__\ ] - add property to fixed_ips global type
-  [`SDC-550 <https://jira.onap.org/browse/SDC-550>`__\ ] - Creating users using the webseal-simulator returns 404
-  [`SDC-552 <https://jira.onap.org/browse/SDC-552>`__\ ] - VLM overview - refactor of edit description input
-  [`SDC-554 <https://jira.onap.org/browse/SDC-554>`__\ ] - zip with duplicate ids in different files is not throwing an exception
-  [`SDC-555 <https://jira.onap.org/browse/SDC-555>`__\ ] - Unable to populate network_resource table
-  [`SDC-559 <https://jira.onap.org/browse/SDC-559>`__\ ] - update component prefix
-  [`SDC-565 <https://jira.onap.org/browse/SDC-565>`__\ ] - Extension loading is not working when the module is being used as a dependent library.
-  [`SDC-566 <https://jira.onap.org/browse/SDC-566>`__\ ] - YAML syntax errors are not being sent in Validation Issue List against error code JE1002
-  [`SDC-567 <https://jira.onap.org/browse/SDC-567>`__\ ] - Recursive Imports are not needed when individual Yamls are being validated
-  [`SDC-568 <https://jira.onap.org/browse/SDC-568>`__\ ] - NodeType/EntityType capabilities import failing with Class Cast Exception
-  [`SDC-573 <https://jira.onap.org/browse/SDC-573>`__\ ] - Sev 1 - Property assignments on SDC UI is not grouped by VM/VNFC type(s), instead it lists ALL VMs/VNFCs.
-  [`SDC-574 <https://jira.onap.org/browse/SDC-574>`__\ ] - ignore node templates that point to substitution ST without topology template
-  [`SDC-576 <https://jira.onap.org/browse/SDC-576>`__\ ] - support dynamic ports
-  [`SDC-578 <https://jira.onap.org/browse/SDC-578>`__\ ] - Revert a checked out version causes data loss
-  [`SDC-580 <https://jira.onap.org/browse/SDC-580>`__\ ] - Error in Jetty logs
-  [`SDC-581 <https://jira.onap.org/browse/SDC-581>`__\ ] - Error in Jetty logs
-  [`SDC-583 <https://jira.onap.org/browse/SDC-583>`__\ ] - sdc/sdc-docker-base fails to build
-  [`SDC-637 <https://jira.onap.org/browse/SDC-637>`__\ ] - VLM Overview - Connection list/ Orphans list - tabs behavior
-  [`SDC-639 <https://jira.onap.org/browse/SDC-639>`__\ ] - Unexpected response while creating VSP with onboarding method as NULL/Invalid
-  [`SDC-640 <https://jira.onap.org/browse/SDC-640>`__\ ] - update fabric8 docker-maven-plugin version
-  [`SDC-641 <https://jira.onap.org/browse/SDC-641>`__\ ] - hardcoded version for restful-js
-  [`SDC-642 <https://jira.onap.org/browse/SDC-642>`__\ ] - sdc build is failing on onboarding UI
-  [`SDC-646 <https://jira.onap.org/browse/SDC-646>`__\ ] - can't convert parameters when importing tosca
-  [`SDC-653 <https://jira.onap.org/browse/SDC-653>`__\ ] - implement forwarder capability
-  [`SDC-657 <https://jira.onap.org/browse/SDC-657>`__\ ] - Error message is not reported to calling functions
-  [`SDC-661 <https://jira.onap.org/browse/SDC-661>`__\ ] - need to throw an exception in case that substitution mappings is not correct
-  [`SDC-664 <https://jira.onap.org/browse/SDC-664>`__\ ] - JTOSCA Library is missing case insensitive check for status attribute value : "supported" vs "SUPPORTED"
-  [`SDC-666 <https://jira.onap.org/browse/SDC-666>`__\ ] - Library Import feature is ignoring multiple imports in a file and loading only the last one in sequence
-  [`SDC-667 <https://jira.onap.org/browse/SDC-667>`__\ ] - Validate and Create capabilities APIs are throwing class cast exception
-  [`SDC-668 <https://jira.onap.org/browse/SDC-668>`__\ ] - Imports loading is running in to Stack overflow error for CSARs generated via SDC on-boarding process
-  [`SDC-669 <https://jira.onap.org/browse/SDC-669>`__\ ] - Add SDC Global Types as a dependency in JTOSCA library implementation
-  [`SDC-670 <https://jira.onap.org/browse/SDC-670>`__\ ] - fix nova validator
-  [`SDC-671 <https://jira.onap.org/browse/SDC-671>`__\ ] - changing replication factory
-  [`SDC-682 <https://jira.onap.org/browse/SDC-682>`__\ ] - Tosca parser fails to parse csar with get_attributes
-  [`SDC-690 <https://jira.onap.org/browse/SDC-690>`__\ ] - SDC portal does not come up on latest master of ONAP demo
-  [`SDC-692 <https://jira.onap.org/browse/SDC-692>`__\ ] - Update VSP by resetting the VLM, and uploading new Heat. Could not submit
-  [`SDC-693 <https://jira.onap.org/browse/SDC-693>`__\ ] - throw yaml exception when retrieving service templates
-  [`SDC-694 <https://jira.onap.org/browse/SDC-694>`__\ ] - fix NPE in when extracting components
-  [`SDC-698 <https://jira.onap.org/browse/SDC-698>`__\ ] - Webseal simulator Docker image cannot be built on Linux
-  [`SDC-700 <https://jira.onap.org/browse/SDC-700>`__\ ] - Wrong check for file extension in HeatValidator
-  [`SDC-703 <https://jira.onap.org/browse/SDC-703>`__\ ] - Duplicate logging frameworks in SDC onboarding repository
-  [`SDC-704 <https://jira.onap.org/browse/SDC-704>`__\ ] - SDC External API : Swagger Errors
-  [`SDC-705 <https://jira.onap.org/browse/SDC-705>`__\ ] - SDC Sanity Docker exits
-  [`SDC-715 <https://jira.onap.org/browse/SDC-715>`__\ ] - SDC-CS docker container sporadically gets errors during startup
-  [`SDC-716 <https://jira.onap.org/browse/SDC-716>`__\ ] - Make SDC splash screen statefull - only show once for repeated distribution flows
-  [`SDC-737 <https://jira.onap.org/browse/SDC-737>`__\ ] - catalog-be unit tests fail on different build systems
-  [`SDC-739 <https://jira.onap.org/browse/SDC-739>`__\ ] - CD healthcheck of SDC failing periodically 35% of the time (since Feb 75%)
-  [`SDC-748 <https://jira.onap.org/browse/SDC-748>`__\ ] - Build failure due to translator core tests getting stuck
-  [`SDC-765 <https://jira.onap.org/browse/SDC-765>`__\ ] - Error 500 when trying to edit a connection
-  [`SDC-770 <https://jira.onap.org/browse/SDC-770>`__\ ] - SDC openecomp-be build failure on missing build-tools-1.2.0-SNAPSHOT.jar
-  [`SDC-773 <https://jira.onap.org/browse/SDC-773>`__\ ] - SDC Import Export Executors should be supported.
-  [`SDC-774 <https://jira.onap.org/browse/SDC-774>`__\ ] - fix parameter value check in vm grouping
-  [`SDC-776 <https://jira.onap.org/browse/SDC-776>`__\ ] - Sonar coverage drop onboarding
-  [`SDC-777 <https://jira.onap.org/browse/SDC-777>`__\ ] - sonar scan alignement
-  [`SDC-792 <https://jira.onap.org/browse/SDC-792>`__\ ] - Add a private constructor to hide the implicit public one to ConfigurationUtils
-  [`SDC-811 <https://jira.onap.org/browse/SDC-811>`__\ ] - Assign Mib to Component
-  [`SDC-830 <https://jira.onap.org/browse/SDC-830>`__\ ] - Broken mapping of ChoiceOrOther because of missing default constructor
-  [`SDC-835 <https://jira.onap.org/browse/SDC-835>`__\ ] - Sonar issue fix - remove unused exception handling.
-  [`SDC-843 <https://jira.onap.org/browse/SDC-843>`__\ ] - response code is not validate in C* chef
-  [`SDC-861 <https://jira.onap.org/browse/SDC-861>`__\ ] - Error while importing VF (CSAR onboarded)
-  [`SDC-872 <https://jira.onap.org/browse/SDC-872>`__\ ] - Collaboration : Dependencies are getting deleted after same HEAT is uploaded to VSP
-  [`SDC-874 <https://jira.onap.org/browse/SDC-874>`__\ ] - fix upload csar unit tests
-  [`SDC-876 <https://jira.onap.org/browse/SDC-876>`__\ ] - Null pointer exception while creating Deployment flavor
-  [`SDC-879 <https://jira.onap.org/browse/SDC-879>`__\ ] - Improve ConfigurationUtils class
-  [`SDC-881 <https://jira.onap.org/browse/SDC-881>`__\ ] - Toggle support for UI
-  [`SDC-886 <https://jira.onap.org/browse/SDC-886>`__\ ] - ZipOutputStream need to be closed
-  [`SDC-888 <https://jira.onap.org/browse/SDC-888>`__\ ] - sonar fix - Stack
-  [`SDC-892 <https://jira.onap.org/browse/SDC-892>`__\ ] - Fail to Export VLM
-  [`SDC-894 <https://jira.onap.org/browse/SDC-894>`__\ ] - Upgrade React version to 15.6
-  [`SDC-896 <https://jira.onap.org/browse/SDC-896>`__\ ] - Lifecycle Operations artifact is not reflecting in CSAR for VSP Processes Type is Lifecycle_Operations
-  [`SDC-898 <https://jira.onap.org/browse/SDC-898>`__\ ] - Update the snapshot in test-config for v1.1.1-SNAPSHOT
-  [`SDC-904 <https://jira.onap.org/browse/SDC-904>`__\ ] - ToscaFileOutputServiceCsarImplTest has tests with shared state
-  [`SDC-909 <https://jira.onap.org/browse/SDC-909>`__\ ] - Unit Test of sdc-workflow-designer-server project failed.
-  [`SDC-931 <https://jira.onap.org/browse/SDC-931>`__\ ] - Contributor can also submit fix
-  [`SDC-932 <https://jira.onap.org/browse/SDC-932>`__\ ] - Dropdown text is cut off
-  [`SDC-935 <https://jira.onap.org/browse/SDC-935>`__\ ] - Incorrect FG version "0.0" appears in "vf-license-model.xml" file in csar
-  [`SDC-940 <https://jira.onap.org/browse/SDC-940>`__\ ] - NPE during submit of VSP
-  [`SDC-941 <https://jira.onap.org/browse/SDC-941>`__\ ] - Fix zusammen Import
-  [`SDC-943 <https://jira.onap.org/browse/SDC-943>`__\ ] - React version downgrade
-  [`SDC-944 <https://jira.onap.org/browse/SDC-944>`__\ ] - dox-sequence-diagram-ui render fix
-  [`SDC-963 <https://jira.onap.org/browse/SDC-963>`__\ ] - Fix broken npm packages
-  [`SDC-989 <https://jira.onap.org/browse/SDC-989>`__\ ] - SDC healthcheck fails with message DCAE is Down
-  [`SDC-992 <https://jira.onap.org/browse/SDC-992>`__\ ] - SDC-FE container fails to start because of missing chef parameters
-  [`SDC-993 <https://jira.onap.org/browse/SDC-993>`__\ ] - SDC simulator compilation issues
-  [`SDC-996 <https://jira.onap.org/browse/SDC-996>`__\ ] - SRIOV - add annotations
-  [`SDC-1010 <https://jira.onap.org/browse/SDC-1010>`__\ ] - Extending the value list of the RAM memory in the compute
-  [`SDC-1016 <https://jira.onap.org/browse/SDC-1016>`__\ ] - ASDC is not associating get_file with a VF module, causing MSO not deploy get_file ( E2E - 405397, IST - 404072
-  [`SDC-1050 <https://jira.onap.org/browse/SDC-1050>`__\ ] - Allow set Toggle feature ON on Flow - Test
-  [`SDC-1051 <https://jira.onap.org/browse/SDC-1051>`__\ ] - Catalog Profile Is Broken
-  [`SDC-1054 <https://jira.onap.org/browse/SDC-1054>`__\ ] - SDC-Cassandra fails in starting up on Heat
-  [`SDC-1062 <https://jira.onap.org/browse/SDC-1062>`__\ ] - Failure to submit NFoD when backup NIC is set (Onboarding manual flow)
-  [`SDC-1064 <https://jira.onap.org/browse/SDC-1064>`__\ ] - EP UUIDs in the vendor license model are not the same
-  [`SDC-1071 <https://jira.onap.org/browse/SDC-1071>`__\ ] - Create properly session context in zusammen tools
-  [`SDC-1077 <https://jira.onap.org/browse/SDC-1077>`__\ ] - Left panel buttons are enabled before creating a component
-  [`SDC-1083 <https://jira.onap.org/browse/SDC-1083>`__\ ] - Problem with radio button in onboarding UI
-  [`SDC-1084 <https://jira.onap.org/browse/SDC-1084>`__\ ] - ui heat validation tabs fixes
-  [`SDC-1089 <https://jira.onap.org/browse/SDC-1089>`__\ ] - fix build for onboarding
-  [`SDC-1090 <https://jira.onap.org/browse/SDC-1090>`__\ ] - Error-code POL5000 Internal Server Error.
-  [`SDC-1092 <https://jira.onap.org/browse/SDC-1092>`__\ ] - SDC-CS memory leak?
-  [`SDC-1093 <https://jira.onap.org/browse/SDC-1093>`__\ ] - Validation of VSP fails with error null
-  [`SDC-1095 <https://jira.onap.org/browse/SDC-1095>`__\ ] - Jenkins build does not execute unit tests.
-  [`SDC-1096 <https://jira.onap.org/browse/SDC-1096>`__\ ] - E2E Defect 430981 - ip_requirments for multiple ports with difference version
-  [`SDC-1103 <https://jira.onap.org/browse/SDC-1103>`__\ ] - onap normatives are imported always
-  [`SDC-1105 <https://jira.onap.org/browse/SDC-1105>`__\ ] - ForwardingPathBussinessLogicTest fails
-  [`SDC-1107 <https://jira.onap.org/browse/SDC-1107>`__\ ] - E2E Defect 427115 - Port Mirroring: Incorrect Interfaces list - not correct Port Type
-  [`SDC-1108 <https://jira.onap.org/browse/SDC-1108>`__\ ] - Scripts are using deprecated API
-  [`SDC-1110 <https://jira.onap.org/browse/SDC-1110>`__\ ] - Fix BDD Test failure
-  [`SDC-1113 <https://jira.onap.org/browse/SDC-1113>`__\ ] - E2E/Internal Defect - multiple ports (extCP) with wrong network-role
-  [`SDC-1120 <https://jira.onap.org/browse/SDC-1120>`__\ ] - Empty error message during Proceed To Validation
-  [`SDC-1123 <https://jira.onap.org/browse/SDC-1123>`__\ ] - The csar packages not passing onboarding during SDC sanity
-  [`SDC-1124 <https://jira.onap.org/browse/SDC-1124>`__\ ] - Bug - The csar packages not passing onboarding during SDC sanity
-  [`SDC-1126 <https://jira.onap.org/browse/SDC-1126>`__\ ] - Fixed merge issues regarding the plugins development
-  [`SDC-1134 <https://jira.onap.org/browse/SDC-1134>`__\ ] - healed version of VSP is missing a Description
-  [`SDC-1143 <https://jira.onap.org/browse/SDC-1143>`__\ ] - SDC docs: fix a typo in release notes
-  [`SDC-1144 <https://jira.onap.org/browse/SDC-1144>`__\ ] - Fix SDC Sonar bugs
-  [`SDC-1145 <https://jira.onap.org/browse/SDC-1145>`__\ ] - fix a SDC sonar NullPointer bug
-  [`SDC-1146 <https://jira.onap.org/browse/SDC-1146>`__\ ] - fix sonar NullPointer bugs in SDC
-  [`SDC-1150 <https://jira.onap.org/browse/SDC-1150>`__\ ] - Json Serialization of collections should hide empty attribute.
-  [`SDC-1184 <https://jira.onap.org/browse/SDC-1184>`__\ ] - Unable to create VF after creating component dependency in VSP due to error
-  [`SDC-1188 <https://jira.onap.org/browse/SDC-1188>`__\ ] - User Permission items
-  [`SDC-1190 <https://jira.onap.org/browse/SDC-1190>`__\ ] - Java proxy classname in audit logs instead of resource name
-  [`SDC-1192 <https://jira.onap.org/browse/SDC-1192>`__\ ] - ValidationVsp Cannot support multiple sessions
-  [`SDC-1200 <https://jira.onap.org/browse/SDC-1200>`__\ ] - SDC tab shows "HTTP Error 305" after login and accessing from the portal
-  [`SDC-1204 <https://jira.onap.org/browse/SDC-1204>`__\ ] - maven clean leaves files in target
-  [`SDC-1206 <https://jira.onap.org/browse/SDC-1206>`__\ ] - Create VF fails with 404 error message for subinterface_indicator property
-  [`SDC-1207 <https://jira.onap.org/browse/SDC-1207>`__\ ] - Distribution cannot create "UEB keys"
-  [`SDC-1208 <https://jira.onap.org/browse/SDC-1208>`__\ ] - Missing heat script for deploying sdc-workflow designer
-  [`SDC-1209 <https://jira.onap.org/browse/SDC-1209>`__\ ] - Missing uuid & operationId while navigate from sdc to wf-designer
-  [`SDC-1210 <https://jira.onap.org/browse/SDC-1210>`__\ ] - Format Issue in the Example Resource File
-  [`SDC-1211 <https://jira.onap.org/browse/SDC-1211>`__\ ] - Issues from Nexus-IQ
-  [`SDC-1212 <https://jira.onap.org/browse/SDC-1212>`__\ ] - Issues of the BPMN Converter
-  [`SDC-1214 <https://jira.onap.org/browse/SDC-1214>`__\ ] - Fix for healing of vlan tagging and annotations
-  [`SDC-1215 <https://jira.onap.org/browse/SDC-1215>`__\ ] - Errors in Retrieving Data From SDC
-  [`SDC-1222 <https://jira.onap.org/browse/SDC-1222>`__\ ] - base_sdc-python docker image build failure
-  [`SDC-1234 <https://jira.onap.org/browse/SDC-1234>`__\ ] - Vsp certified version which gets healed - remains draft
-  [`SDC-1235 <https://jira.onap.org/browse/SDC-1235>`__\ ] - Extend Service Task Miss 'class' Information
-  [`SDC-1236 <https://jira.onap.org/browse/SDC-1236>`__\ ] - Null Fields Should not Be Find in the Extend Servcie Task
-  [`SDC-1237 <https://jira.onap.org/browse/SDC-1237>`__\ ] - ui-styling-fixes
-  [`SDC-1239 <https://jira.onap.org/browse/SDC-1239>`__\ ] - ui-attachments-page-bug-fix
-  [`SDC-1241 <https://jira.onap.org/browse/SDC-1241>`__\ ] - SDC-BE pod started but it's responding with 503 HTTP code
-  [`SDC-1244 <https://jira.onap.org/browse/SDC-1244>`__\ ] - Issue in healing zusammen MainTool
-  [`SDC-1245 <https://jira.onap.org/browse/SDC-1245>`__\ ] - jenkins release jobs are failing
-  [`SDC-1247 <https://jira.onap.org/browse/SDC-1247>`__\ ] - SDC tester page hangs when clicking on Accept button
-  [`SDC-1248 <https://jira.onap.org/browse/SDC-1248>`__\ ] - support 5 digit port number
-  [`SDC-1249 <https://jira.onap.org/browse/SDC-1259>`__\ ] - not able to get the value fromProperty node
-  [`SDC-1250 <https://jira.onap.org/browse/SDC-1250>`__\ ] - Not Possible to accept "VF" in test
-  [`SDC-1251 <https://jira.onap.org/browse/SDC-1251>`__\ ] - Catalog UI - Plugin Loader doesn't finish even though the plugin is already loaded
-  [`SDC-1255 <https://jira.onap.org/browse/SDC-1255>`__\ ] - Create VF fails for heats "vOTA123.zip" and "2016-144_vmstore_30_1702.zip"
-  [`SDC-1256 <https://jira.onap.org/browse/SDC-1256>`__\ ] - change the order of items in version page according to version number
-  [`SDC-1261 <https://jira.onap.org/browse/SDC-1261>`__\ ] - Unable to create more than one component dependency for VSP
-  [`SDC-1262 <https://jira.onap.org/browse/SDC-1262>`__\ ] - Add multiple servers for BDD testing
-  [`SDC-1265 <https://jira.onap.org/browse/SDC-1265>`__\ ] - SDC OOM Install elastic search in crashbackloop
-  [`SDC-1267 <https://jira.onap.org/browse/SDC-1267>`__\ ] - service submit for testing fails
-  [`SDC-1268 <https://jira.onap.org/browse/SDC-1268>`__\ ] - Submit for testing fails
-  [`SDC-1269 <https://jira.onap.org/browse/SDC-1269>`__\ ] - Error message appear twice
-  [`SDC-1271 <https://jira.onap.org/browse/SDC-1271>`__\ ] - Incorrect message when not choosing commit
-  [`SDC-1273 <https://jira.onap.org/browse/SDC-1273>`__\ ] - Unable to submit the NS to testing
-  [`SDC-1274 <https://jira.onap.org/browse/SDC-1274>`__\ ] - NFOD - Error when adding nic to component
-  [`SDC-1275 <https://jira.onap.org/browse/SDC-1275>`__\ ] - Logging core tests fail on Linux without hostname
-  [`SDC-1279 <https://jira.onap.org/browse/SDC-1279>`__\ ] - fix marge job
-  [`SDC-1280 <https://jira.onap.org/browse/SDC-1280>`__\ ] - 'Model Schema' is not available for any API in onboarding Swagger
-  [`SDC-1281 <https://jira.onap.org/browse/SDC-1281>`__\ ] - TOSCA Analyzer - null point exception
-  [`SDC-1283 <https://jira.onap.org/browse/SDC-1283>`__\ ] - Onboarding filter archive to active changes when pressing on workspace button
-  [`SDC-1284 <https://jira.onap.org/browse/SDC-1284>`__\ ] - fix catalog-be start
-  [`SDC-1292 <https://jira.onap.org/browse/SDC-1292>`__\ ] - Service Distribution is not happening under Operator role
-  [`SDC-1293 <https://jira.onap.org/browse/SDC-1293>`__\ ] - Facing issues while onboarding
-  [`SDC-1295 <https://jira.onap.org/browse/SDC-1295>`__\ ] - work flow release jobs are failing
-  [`SDC-1303 <https://jira.onap.org/browse/SDC-1303>`__\ ] - Certified activity spec status fetched as 'draft' right after attribute action not at all specified in the body
-  [`SDC-1304 <https://jira.onap.org/browse/SDC-1304>`__\ ] - Sorting version lists
-  [`SDC-1305 <https://jira.onap.org/browse/SDC-1305>`__\ ] - VSP Component Function input validation should be removed
-  [`SDC-1308 <https://jira.onap.org/browse/SDC-1308>`__\ ] - SDC fails health check in OOM deployment
-  [`SDC-1309 <https://jira.onap.org/browse/SDC-1309>`__\ ] - SDC fails health check on HEAT deployment
-  [`SDC-1315 <https://jira.onap.org/browse/SDC-1315>`__\ ] - Nested Dependency Issue
-  [`SDC-1321 <https://jira.onap.org/browse/SDC-1321>`__\ ] - Catalog Docker swagger not loading
-  [`SDC-1328 <https://jira.onap.org/browse/SDC-1328>`__\ ] - plug-in Iframe changes size on WINDOW_OUT event to composition page
-  [`SDC-1329 <https://jira.onap.org/browse/SDC-1329>`__\ ] - Warning in generated CSAR
-  [`SDC-1332 <https://jira.onap.org/browse/SDC-1332>`__\ ] - Enable VNF market place in sdc deployment
-  [`SDC-1336 <https://jira.onap.org/browse/SDC-1336>`__\ ] - SDC service category missing Network Service and E2E Service types
-  [`SDC-1337 <https://jira.onap.org/browse/SDC-1337>`__\ ] - Unexpected entry for interfaces + interface_types when no operation is defined
-  [`SDC-1341 <https://jira.onap.org/browse/SDC-1341>`__\ ] - SDC-DMAAP connection fails in multi-node cluster
-  [`SDC-1347 <https://jira.onap.org/browse/SDC-1347>`__\ ] - Wrap plug-ins API call in a promise to prevent loading issues of SDC UI
-  [`SDC-1349 <https://jira.onap.org/browse/SDC-1349>`__\ ] - Filter By vendor view - list of vsp is not closed
-  [`SDC-1351 <https://jira.onap.org/browse/SDC-1351>`__\ ] - Viewer can archive and restore
-  [`SDC-1352 <https://jira.onap.org/browse/SDC-1352>`__\ ] - SDC service design Properties Assignment page doesn't function properly
-  [`SDC-1354 <https://jira.onap.org/browse/SDC-1354>`__\ ] - DCAE wrong jetty truststore file name
-  [`SDC-1355 <https://jira.onap.org/browse/SDC-1355>`__\ ] - Onborading permissions: change items' owner works partially
-  [`SDC-1356 <https://jira.onap.org/browse/SDC-1356>`__\ ] - Wrong FE version name
-  [`SDC-1366 <https://jira.onap.org/browse/SDC-1366>`__\ ] - New version created based on old-unhealed version is not getting healed
-  [`SDC-1376 <https://jira.onap.org/browse/SDC-1376>`__\ ] - dcae_fe: Update context path to dcaed
-  [`SDC-1382 <https://jira.onap.org/browse/SDC-1382>`__\ ] - "Property Assignment" does not show the list of properties in OOM-deployed env

Security Notes
--------------

SDC code has been formally scanned during build time using NexusIQ and all Critical vulnerabilities have been addressed, items that remain open have been assessed for risk and determined to be false positive. The SDC open Critical security vulnerabilities and their risk assessment have been documented as part of the `project <https://wiki.onap.org/pages/viewpage.action?pageId=28377537>`__.

Quick Links:

- `SDC project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592847>`__
- `Passing Badge information for SDC <https://bestpractices.coreinfrastructure.org/en/projects/1629>`__
- `Project Vulnerability Review Table for SDC <https://wiki.onap.org/pages/viewpage.action?pageId=28377537>`__

**Known Issues**

-  [`SDC-1380 <https://jira.onap.org/browse/SDC-1380>`__\ ] - Missing Inheritance of VduCp in SDC distributed CSAR package
-  [`SDC-1182 <https://jira.onap.org/browse/SDC-1182>`__\ ] - SDC must no log serviceInstanceID and SERVICE_INSTANCE_ID

**Upgrade Notes**

	N/A

**Deprecation Notes**

	N/A

**Other**

	N/A

Version: 1.1.0
==============

:Release Date: 2017-11-15

SDC SDKs Versions
-----------------

-  sdc-distribution-client

   :Version: 1.1.32

    -  sdc-tosca

       :Version: 1.1.32


Release Purpose
----------------
The Amsterdam release is the first ONAP release.
This release is focused on creating a merged architecture between the OpenECOMP and OpenO components.
In addition, the release enhances the list of supported use cases to support the `VoLTE <https://wiki.onap.org/pages/viewpage.action?pageId=6593603>`_ and `vCPE <https://wiki.onap.org/pages/viewpage.action?pageId=3246168>`_ use cases.

New Features
------------
-  Full and comprehensive VNF/Software Application(VF) and service design
-  Collaborative design
-  VNF/VF/SERVICE testing and certification
-  Distribution to ONAP
-  External API- for VNF/VF and  service
-  Integration with BSS / Customer ordering.

**Epics**

-  [`SDC-52 <https://jira.onap.org/browse/SDC-52>`__\ ] - SDC Opensource
   tech gaps
-  [`SDC-53 <https://jira.onap.org/browse/SDC-53>`__\ ] - F28350/302244
   [MVP] SDC 1710 - Increment Conformance Level
-  [`SDC-54 <https://jira.onap.org/browse/SDC-54>`__\ ] - F36419/299760
   [EPIC] - [MVP] SDC 1710 - Introduce a new Asset Type: PNF
-  [`SDC-55 <https://jira.onap.org/browse/SDC-55>`__\ ] - F34117/305092
   [EPIC] - [MVP] SDC 1710 - Enhance the CP
-  [`SDC-56 <https://jira.onap.org/browse/SDC-56>`__\ ] - F36795/298830
   [EPIC] - Provide a new Capability to Onboard non-HEAT VNFs based on a
   Questionnaire.
-  [`SDC-57 <https://jira.onap.org/browse/SDC-57>`__\ ] - F36795/150093
   [EPIC] - Enhance the VNF Model to include VNFC (VFC)
-  [`SDC-58 <https://jira.onap.org/browse/SDC-58>`__\ ] - F36795/291353
   EPIC] - [MVP] ASDC 1710 -TOSCA Parser - Stand alone
-  [`SDC-59 <https://jira.onap.org/browse/SDC-59>`__\ ] - F36795/296771
   [EPIC] - [MVP] SDC 1710 - TOSCA Parser - Support Complex Inputs
-  [`SDC-60 <https://jira.onap.org/browse/SDC-60>`__\ ] - F36795/309319
   EPIC] - Provide Additional Artifact type relevant for VNF Onboarding.
-  [`SDC-61 <https://jira.onap.org/browse/SDC-61>`__\ ] - F36797/291413
   [EPIC] - Enhance the VFC Model with additional Properties for VFC
   characterization
-  [`SDC-62 <https://jira.onap.org/browse/SDC-62>`__\ ] - F36801/152151
   [EPIC] - [MVP] ASDC 1707 - Tosca Schema files
-  [`SDC-63 <https://jira.onap.org/browse/SDC-63>`__\ ] - F36257/292814
   EPIC] - [MVP] SDC 1710 NFR - Enhance the System Health Check API
-  [`SDC-64 <https://jira.onap.org/browse/SDC-64>`__\ ] - 306915 EPIC:
   [DevOps] - SSL Certificates separation of certificates for the
   deployment code
-  [`SDC-66 <https://jira.onap.org/browse/SDC-66>`__\ ] - Workflow
   Designer
-  [`SDC-71 <https://jira.onap.org/browse/SDC-71>`__\ ] - Workflow
   Management
-  [`SDC-99 <https://jira.onap.org/browse/SDC-99>`__\ ] - Onbording
   Tosca VNF
-  [`SDC-111 <https://jira.onap.org/browse/SDC-111>`__\ ] - swagger
   restful interface support
-  [`SDC-116 <https://jira.onap.org/browse/SDC-116>`__\ ] - bpmn
   workflow modeler
-  [`SDC-218 <https://jira.onap.org/browse/SDC-218>`__\ ] - support
   integration with VFC
-  [`SDC-219 <https://jira.onap.org/browse/SDC-219>`__\ ] - Support for
   uCPE usecase
-  [`SDC-287 <https://jira.onap.org/browse/SDC-287>`__\ ] - catalog
   support TOSCA CSAR import and distribution
-  [`SDC-326 <https://jira.onap.org/browse/SDC-326>`__\ ] - Support work
   flows in SDC

**Stories**

-  [`SDC-28 <https://jira.onap.org/browse/SDC-28>`__\ ] - TDP 291354 -
   JTOSCA repo initial commit
-  [`SDC-67 <https://jira.onap.org/browse/SDC-67>`__\ ] - Workflow
   designer support json object type
-  [`SDC-68 <https://jira.onap.org/browse/SDC-68>`__\ ] - Workflow
   designer support Swagger definition
-  [`SDC-69 <https://jira.onap.org/browse/SDC-69>`__\ ] - WorkFlow Input
   Parameter Designer
-  [`SDC-70 <https://jira.onap.org/browse/SDC-70>`__\ ] - WorkFlow
   Diagram Editor
-  [`SDC-72 <https://jira.onap.org/browse/SDC-72>`__\ ] - Export
   WorkFlow
-  [`SDC-74 <https://jira.onap.org/browse/SDC-74>`__\ ] - Delete
   WorkFlow
-  [`SDC-75 <https://jira.onap.org/browse/SDC-75>`__\ ] - Modify
   WorkFlow
-  [`SDC-76 <https://jira.onap.org/browse/SDC-76>`__\ ] - Add WorkFlow
-  [`SDC-81 <https://jira.onap.org/browse/SDC-81>`__\ ] - Support VNF
   Package Specification
-  [`SDC-92 <https://jira.onap.org/browse/SDC-92>`__\ ] - Topology
   Diagram Editor
-  [`SDC-94 <https://jira.onap.org/browse/SDC-94>`__\ ] - Support
   Package draft
-  [`SDC-95 <https://jira.onap.org/browse/SDC-95>`__\ ] - Support
   Package draft
-  [`SDC-96 <https://jira.onap.org/browse/SDC-96>`__\ ] - Package
   multiple-versions support
-  [`SDC-97 <https://jira.onap.org/browse/SDC-97>`__\ ] - CLI Package
   Validation and Packaging tool
-  [`SDC-98 <https://jira.onap.org/browse/SDC-98>`__\ ] - Template
   management
-  [`SDC-112 <https://jira.onap.org/browse/SDC-112>`__\ ] - support
   swagger specification interface definition
-  [`SDC-113 <https://jira.onap.org/browse/SDC-113>`__\ ] - support set
   swagger info by swagger string
-  [`SDC-114 <https://jira.onap.org/browse/SDC-114>`__\ ] - support set
   swagger info by url
-  [`SDC-115 <https://jira.onap.org/browse/SDC-115>`__\ ] - support
   invoke restful interfaces defined by swagger specification
-  [`SDC-117 <https://jira.onap.org/browse/SDC-117>`__\ ] - support bpmn
   workflow nodes(start, end, exclusive gateway, parallel gateway)
-  [`SDC-119 <https://jira.onap.org/browse/SDC-119>`__\ ] - support set
   conditoin for gateway
-  [`SDC-120 <https://jira.onap.org/browse/SDC-120>`__\ ] - support set
   input and output params for start event and end event
-  [`SDC-121 <https://jira.onap.org/browse/SDC-121>`__\ ] - support
   quote output of previous workflow node for params
-  [`SDC-122 <https://jira.onap.org/browse/SDC-122>`__\ ] - support
   quote input of start event for params
-  [`SDC-161 <https://jira.onap.org/browse/SDC-161>`__\ ] - Remove
   MojoHaus Maven plug-in from pom file
-  [`SDC-223 <https://jira.onap.org/browse/SDC-223>`__\ ] - Attachment
   display changes - UI
-  [`SDC-224 <https://jira.onap.org/browse/SDC-224>`__\ ] - Tosca based
   onbaording enrichment - BE
-  [`SDC-225 <https://jira.onap.org/browse/SDC-225>`__\ ] - Tosca
   validation in the attachment - BE
-  [`SDC-226 <https://jira.onap.org/browse/SDC-226>`__\ ] - Support
   TOSCA CSAR attachments and validation in overview display - BE
-  [`SDC-227 <https://jira.onap.org/browse/SDC-227>`__\ ] - Create new
   VSP, onboard from TOSCA file - BE
-  [`SDC-228 <https://jira.onap.org/browse/SDC-228>`__\ ] - Tosca based
   onbaording enrichment - UI
-  [`SDC-229 <https://jira.onap.org/browse/SDC-229>`__\ ] - Support
   TOSCA attachments in overview display - UI
-  [`SDC-230 <https://jira.onap.org/browse/SDC-230>`__\ ] - Create new
   VSP, onboard from TOSCA file - UI
-  [`SDC-231 <https://jira.onap.org/browse/SDC-231>`__\ ] - VNF package
   manifest file parsing - BE
-  [`SDC-232 <https://jira.onap.org/browse/SDC-232>`__\ ] - Import TOSCA
   YAML CSAR - BE
-  [`SDC-240 <https://jira.onap.org/browse/SDC-240>`__\ ] - WorkFlow
   Deisigner seed code
-  [`SDC-248 <https://jira.onap.org/browse/SDC-248>`__\ ] - add verify
   job for workflow-designer in ci-manager
-  [`SDC-255 <https://jira.onap.org/browse/SDC-255>`__\ ] - support add
   workflow node
-  [`SDC-257 <https://jira.onap.org/browse/SDC-257>`__\ ] - save and
   query workflow definition data from catalog
-  [`SDC-269 <https://jira.onap.org/browse/SDC-269>`__\ ] - support set
   microservice info
-  [`SDC-276 <https://jira.onap.org/browse/SDC-276>`__\ ] - add dynamic
   dox scheme creation
-  [`SDC-282 <https://jira.onap.org/browse/SDC-282>`__\ ] - support rest
   task node
-  [`SDC-288 <https://jira.onap.org/browse/SDC-288>`__\ ] - Independent
   Versioning and Release Process
-  [`SDC-294 <https://jira.onap.org/browse/SDC-294>`__\ ] - support bpmn
   timer element
-  [`SDC-295 <https://jira.onap.org/browse/SDC-295>`__\ ] - delete node
   or connection by keyboard
-  [`SDC-299 <https://jira.onap.org/browse/SDC-299>`__\ ] - Port
   mirroring
-  [`SDC-306 <https://jira.onap.org/browse/SDC-306>`__\ ] - Replace
   Dockefiles with new baselines
-  [`SDC-318 <https://jira.onap.org/browse/SDC-318>`__\ ] - Provide
   preset definitions for the enitity types standardized by the
   tosca-nfv specification.
-  [`SDC-325 <https://jira.onap.org/browse/SDC-325>`__\ ] - Add "Network
   Service" and "E2E Service" to the predefined list of SDC categories.
-  [`SDC-327 <https://jira.onap.org/browse/SDC-327>`__\ ] - add new
   artifact type to SDC
-  [`SDC-329 <https://jira.onap.org/browse/SDC-329>`__\ ] - add
   categories to define SDC service
-  [`SDC-339 <https://jira.onap.org/browse/SDC-339>`__\ ] - project
   package and create dockfile
-  [`SDC-355 <https://jira.onap.org/browse/SDC-355>`__\ ] - support set
   value for branch node
-  [`SDC-360 <https://jira.onap.org/browse/SDC-360>`__\ ] - Import New
   VF vCSCF
-  [`SDC-370 <https://jira.onap.org/browse/SDC-370>`__\ ] - sdc
   documentation
-  [`SDC-379 <https://jira.onap.org/browse/SDC-379>`__\ ] - Write
   functional test cases based on the functionality tested by sanity
   docker
-  [`SDC-476 <https://jira.onap.org/browse/SDC-476>`__\ ] - add sonar
   branch to sdc project pom
-  [`SDC-481 <https://jira.onap.org/browse/SDC-481>`__\ ] - update
   swagger
-  [`SDC-498 <https://jira.onap.org/browse/SDC-498>`__\ ] - Support and
   align CSAR's for VOLTE
-  [`SDC-506 <https://jira.onap.org/browse/SDC-506>`__\ ] - Fill SDC
   read the docs sections
-  [`SDC-517 <https://jira.onap.org/browse/SDC-517>`__\ ] - ONAP support
-  [`SDC-521 <https://jira.onap.org/browse/SDC-521>`__\ ] - CSIT and
   sanity stabilization
-  [`SDC-522 <https://jira.onap.org/browse/SDC-522>`__\ ] - sync 1710
   defects into ONAP
-  [`SDC-586 <https://jira.onap.org/browse/SDC-586>`__\ ] - Support and
   align CSAR's for VOLTE
-  [`SDC-594 <https://jira.onap.org/browse/SDC-594>`__\ ] - Fill SDC
   read the docs sections
-  [`SDC-608 <https://jira.onap.org/browse/SDC-608>`__\ ] - CSIT and
   sanity stabilization
-  [`SDC-615 <https://jira.onap.org/browse/SDC-615>`__\ ] - add new
   artifact type to SDC
-  [`SDC-619 <https://jira.onap.org/browse/SDC-619>`__\ ] - ONAP support
-  [`SDC-623 <https://jira.onap.org/browse/SDC-623>`__\ ] - Independent
   Versioning and Release Process

Bug Fixes
---------

-  [`SDC-160 <https://jira.onap.org/browse/SDC-160>`__\ ] - substitution
   mapping problem
-  [`SDC-256 <https://jira.onap.org/browse/SDC-256>`__\ ] - modify
   workflow version in package.json
-  [`SDC-263 <https://jira.onap.org/browse/SDC-263>`__\ ] - Exception is
   not showing the correct error
-  [`SDC-270 <https://jira.onap.org/browse/SDC-270>`__\ ] - The node
   template name in the capability/requirement mapping map is not
   synchronized while modify a node template' name.
-  [`SDC-273 <https://jira.onap.org/browse/SDC-273>`__\ ] - Error:
   Internal Server Error. Please try again later
-  [`SDC-280 <https://jira.onap.org/browse/SDC-280>`__\ ] - SDC
   healthcheck 500 on Rackspace deployment
-  [`SDC-283 <https://jira.onap.org/browse/SDC-283>`__\ ] - jjb daily
   build fail
-  [`SDC-289 <https://jira.onap.org/browse/SDC-289>`__\ ] - UI shows
   {length} and {maxLength} instead of actual limit values
-  [`SDC-290 <https://jira.onap.org/browse/SDC-290>`__\ ] - discrepancy
   between the BE and FE on the "Create New License Agreement" Wizard
-  [`SDC-296 <https://jira.onap.org/browse/SDC-296>`__\ ] - The default
   value of the VF input parameter is incorrect.
-  [`SDC-297 <https://jira.onap.org/browse/SDC-297>`__\ ] - adjust
   textarea component style
-  [`SDC-298 <https://jira.onap.org/browse/SDC-298>`__\ ] - The exported
   CSAR package of VFC lacks the definition of capability types
   standardized in the tosca-nfv specification.
-  [`SDC-300 <https://jira.onap.org/browse/SDC-300>`__\ ] - GET query to
   metadata fails requested service not found
-  [`SDC-307 <https://jira.onap.org/browse/SDC-307>`__\ ] - add sequence
   flow after refresh
-  [`SDC-308 <https://jira.onap.org/browse/SDC-308>`__\ ] - save new
   position after node dragged
-  [`SDC-309 <https://jira.onap.org/browse/SDC-309>`__\ ] - The exported
   CSAR package of VF lacks the definition of relationship types
   standardized in the tosca-nfv specification.
-  [`SDC-310 <https://jira.onap.org/browse/SDC-310>`__\ ] - The exported
   CSAR package of VFC lacks the definition of data types standardized
   in the tosca-nfv specification.
-  [`SDC-313 <https://jira.onap.org/browse/SDC-313>`__\ ] - requirement
   id is not correct
-  [`SDC-323 <https://jira.onap.org/browse/SDC-323>`__\ ] - The scalar
   unit type value is in correctly created
-  [`SDC-335 <https://jira.onap.org/browse/SDC-335>`__\ ] - swagger
   convert error
-  [`SDC-337 <https://jira.onap.org/browse/SDC-337>`__\ ] - add missing
   global type
-  [`SDC-338 <https://jira.onap.org/browse/SDC-338>`__\ ] - submit fails
   when uploading CSAR file
-  [`SDC-344 <https://jira.onap.org/browse/SDC-344>`__\ ] - move jtosca
   version to main pom
-  [`SDC-349 <https://jira.onap.org/browse/SDC-349>`__\ ] - add global
   type for import tosca
-  [`SDC-351 <https://jira.onap.org/browse/SDC-351>`__\ ] - enable port
   mirroring
-  [`SDC-353 <https://jira.onap.org/browse/SDC-353>`__\ ] - ONAP 1.1.0
   SDC distributions failing in ORD - Add Software Product - Status 500
-  [`SDC-363 <https://jira.onap.org/browse/SDC-363>`__\ ] - data convert
   error for tree node
-  [`SDC-369 <https://jira.onap.org/browse/SDC-369>`__\ ] - invalid tag
   defined for docker
-  [`SDC-375 <https://jira.onap.org/browse/SDC-375>`__\ ] - Onboarding
   build time
-  [`SDC-381 <https://jira.onap.org/browse/SDC-381>`__\ ] - VLM update
   with EP/LKG - null error
-  [`SDC-389 <https://jira.onap.org/browse/SDC-389>`__\ ] - Default
   value of properties do not match
-  [`SDC-390 <https://jira.onap.org/browse/SDC-390>`__\ ] - fix docker
   file script error
-  [`SDC-407 <https://jira.onap.org/browse/SDC-407>`__\ ] - VLM Refresh
   issue in orphans list on added agreement
-  [`SDC-410 <https://jira.onap.org/browse/SDC-410>`__\ ] - Import
   normatives not running + Upgrade normatives not imports the onap
   types
-  [`SDC-431 <https://jira.onap.org/browse/SDC-431>`__\ ] - Artifacts
   not generated for PNF Resource and hence not enabling model
   distribution to A&AI
-  [`SDC-435 <https://jira.onap.org/browse/SDC-435>`__\ ] - sdc staging
   job is failing
-  [`SDC-436 <https://jira.onap.org/browse/SDC-436>`__\ ] - sdc release
   stagging is failing on release 1.1.0
-  [`SDC-441 <https://jira.onap.org/browse/SDC-441>`__\ ] - module-0
   with version 1.0 not found in MSO Catalog DB
-  [`SDC-443 <https://jira.onap.org/browse/SDC-443>`__\ ] - Fix SDC
   inter-DC overlay configuration model to support multiple networks
-  [`SDC-444 <https://jira.onap.org/browse/SDC-444>`__\ ] -
   sdc-sdc-workflow-designer-master-stage-site-java Jenkins job failed
-  [`SDC-448 <https://jira.onap.org/browse/SDC-448>`__\ ] - Onboarding
   of VNF Base\_VLB failed
-  [`SDC-452 <https://jira.onap.org/browse/SDC-452>`__\ ] - Workflow
   designer UI doesn't show up
-  [`SDC-454 <https://jira.onap.org/browse/SDC-454>`__\ ] - vMME CSAR
   from vendor failed SDC onboarding
-  [`SDC-457 <https://jira.onap.org/browse/SDC-457>`__\ ] - artifacts
   are not copied to CSAR
-  [`SDC-460 <https://jira.onap.org/browse/SDC-460>`__\ ] -
   vCSCF\_aligned.csar Tosca.meta Entry definition file is missing
-  [`SDC-461 <https://jira.onap.org/browse/SDC-461>`__\ ] - sidebar
   element background color changed
-  [`SDC-471 <https://jira.onap.org/browse/SDC-471>`__\ ] - Predefined
   Network Service is missing in Generic Service Category
-  [`SDC-474 <https://jira.onap.org/browse/SDC-474>`__\ ] - Issue in
   Onboarding converting occurrences in node\_types section
-  [`SDC-477 <https://jira.onap.org/browse/SDC-477>`__\ ] -
   SDC-base-docker jetty base failed to run apt-get
-  [`SDC-483 <https://jira.onap.org/browse/SDC-483>`__\ ] - Zip file
   stored under vendor CSAR Artifacts directory is not included in CSAR
   created by SDC after VSP import
-  [`SDC-491 <https://jira.onap.org/browse/SDC-491>`__\ ] - Artifact are
   incorrectly passed
-  [`SDC-495 <https://jira.onap.org/browse/SDC-495>`__\ ] - artifacts
   are not packed correctly when uploading csar
-  [`SDC-525 <https://jira.onap.org/browse/SDC-525>`__\ ] - Docker RUN
   chmod fails
-  [`SDC-528 <https://jira.onap.org/browse/SDC-528>`__\ ] - SDC
   Backend/frontend not starting
-  [`SDC-533 <https://jira.onap.org/browse/SDC-533>`__\ ] - Fail to get
   correct labels of requirements of nodes in service template
-  [`SDC-537 <https://jira.onap.org/browse/SDC-537>`__\ ] - Backend
   doesn't respond on port 8181 after heat deployment
-  [`SDC-544 <https://jira.onap.org/browse/SDC-544>`__\ ] - Should not
   be validating message router certificate
-  [`SDC-546 <https://jira.onap.org/browse/SDC-546>`__\ ] - Fix SCH to
   properly set "useHttpsWithDmaap"
-  [`SDC-547 <https://jira.onap.org/browse/SDC-547>`__\ ] - SDC server
   error when registering for distribution
-  [`SDC-548 <https://jira.onap.org/browse/SDC-548>`__\ ] - Distribution
   failing to SO in SDC client tosca parser null pointer
-  [`SDC-561 <https://jira.onap.org/browse/SDC-561>`__\ ] - SDC version
   1.1.32 is not available in nexus, blocking SO docker build

**Known Issues**

	N/A

**Upgrade Notes**

Beijing backward compatibility to Amsterdam is not supported.

**Deprecation Notes**

	N/A

**Other**

	N/A

End of Release Notes