unleash-edge 19.6.3

Unleash edge is a proxy for Unleash. It can return both evaluated feature toggles as well as the raw data from Unleash's client API
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
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 19.6.3 (2024-12-06)

### Chore

 - <csr-id-a2d612893c631fa5617a18bd72250125420f2ab2/> prepare for release

### Documentation

 - <csr-id-2462bd216c41c1c2eea3c6ee9d49d91314f10147/> add example docker command

### Bug Fixes

 - <csr-id-0dac00e039884bf74af98ab8ada171cd30e8eb6c/> bootstrap reload in offline mode.
   After adding support for client and frontend tokens, we did not extend
   the reloader to check the client and frontend token arrays. This PR extends
   tokens with FE and Client tokens, to ensure that we refresh the data for
   all our tokens.
   
   In addition we make /internal-backstage/tokens useful for offline mode
   as well, to at least be able to see which tokens you added to Edge.

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 10 days passed between releases.
 - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#590](https://github.com/Unleash/unleash-edge/issues/590), [#595](https://github.com/Unleash/unleash-edge/issues/595)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#590](https://github.com/Unleash/unleash-edge/issues/590)**
    - Add example docker command ([`2462bd2`](https://github.com/Unleash/unleash-edge/commit/2462bd216c41c1c2eea3c6ee9d49d91314f10147))
 * **[#595](https://github.com/Unleash/unleash-edge/issues/595)**
    - Bootstrap reload in offline mode. ([`0dac00e`](https://github.com/Unleash/unleash-edge/commit/0dac00e039884bf74af98ab8ada171cd30e8eb6c))
 * **Uncategorized**
    - Prepare for release ([`a2d6128`](https://github.com/Unleash/unleash-edge/commit/a2d612893c631fa5617a18bd72250125420f2ab2))
</details>

## 19.6.2 (2024-11-25)

<csr-id-7768c59d4fabc159845499cbf0e17e29098a799d/>
<csr-id-f0df4270f6376e1e60051d7466b0ccba447bf4f3/>
<csr-id-95a466a028e776af54c0def1b01f2ba503752c87/>
<csr-id-dc6f169c06aea3505cac0872f50505bd1d70234d/>

### Chore

 - <csr-id-7768c59d4fabc159845499cbf0e17e29098a799d/> prepare for 19.6.2 patch release
 - <csr-id-f0df4270f6376e1e60051d7466b0ccba447bf4f3/> raise error message when failing to validate tokens and url has url postfix
 - <csr-id-95a466a028e776af54c0def1b01f2ba503752c87/> prepare for release
 - <csr-id-dc6f169c06aea3505cac0872f50505bd1d70234d/> Utoipa 5, Yggdrasil 0.13.4
   * chore(deps): Bump to utoipa 5
   
   * fix: update cargo-dist to 0.23

### Bug Fixes

 - <csr-id-92c85db30661720e09643895680b2a579de09791/> added error if no tokens are valid when starting in strict mode
 - <csr-id-7ba15a9b5fdea7075483461867022d07a2d424c7/> update rust crate iter_tools to 0.24.0
 - <csr-id-0efccf002ef2197e80edbc16a5b5d47cd43a6385/> update rust crate unleash-yggdrasil to 0.14.0

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 9 commits contributed to the release.
 - 40 days passed between releases.
 - 7 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 5 unique issues were worked on: [#571](https://github.com/Unleash/unleash-edge/issues/571), [#580](https://github.com/Unleash/unleash-edge/issues/580), [#581](https://github.com/Unleash/unleash-edge/issues/581), [#587](https://github.com/Unleash/unleash-edge/issues/587), [#588](https://github.com/Unleash/unleash-edge/issues/588)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#571](https://github.com/Unleash/unleash-edge/issues/571)**
    - Utoipa 5, Yggdrasil 0.13.4 ([`dc6f169`](https://github.com/Unleash/unleash-edge/commit/dc6f169c06aea3505cac0872f50505bd1d70234d))
 * **[#580](https://github.com/Unleash/unleash-edge/issues/580)**
    - Update rust crate unleash-yggdrasil to 0.14.0 ([`0efccf0`](https://github.com/Unleash/unleash-edge/commit/0efccf002ef2197e80edbc16a5b5d47cd43a6385))
 * **[#581](https://github.com/Unleash/unleash-edge/issues/581)**
    - Update rust crate iter_tools to 0.24.0 ([`7ba15a9`](https://github.com/Unleash/unleash-edge/commit/7ba15a9b5fdea7075483461867022d07a2d424c7))
 * **[#587](https://github.com/Unleash/unleash-edge/issues/587)**
    - Added error if no tokens are valid when starting in strict mode ([`92c85db`](https://github.com/Unleash/unleash-edge/commit/92c85db30661720e09643895680b2a579de09791))
 * **[#588](https://github.com/Unleash/unleash-edge/issues/588)**
    - Raise error message when failing to validate tokens and url has url postfix ([`f0df427`](https://github.com/Unleash/unleash-edge/commit/f0df4270f6376e1e60051d7466b0ccba447bf4f3))
 * **Uncategorized**
    - Release unleash-edge v19.6.2 ([`2390370`](https://github.com/Unleash/unleash-edge/commit/23903704e2c542f8d0da1140d00603bc278d7d46))
    - Prepare for 19.6.2 patch release ([`7768c59`](https://github.com/Unleash/unleash-edge/commit/7768c59d4fabc159845499cbf0e17e29098a799d))
    - Release unleash-edge v19.6.1 ([`c6386db`](https://github.com/Unleash/unleash-edge/commit/c6386db28de59188e99576b3475f952d8ae59a79))
    - Prepare for release ([`95a466a`](https://github.com/Unleash/unleash-edge/commit/95a466a028e776af54c0def1b01f2ba503752c87))
</details>

## 19.6.1 (2024-10-23)

<csr-id-95a466a028e776af54c0def1b01f2ba503752c87/>
<csr-id-dc6f169c06aea3505cac0872f50505bd1d70234d/>

### Chore

 - <csr-id-95a466a028e776af54c0def1b01f2ba503752c87/> prepare for release
 - <csr-id-dc6f169c06aea3505cac0872f50505bd1d70234d/> Utoipa 5, Yggdrasil 0.13.4
   * chore(deps): Bump to utoipa 5
   
   * fix: update cargo-dist to 0.23

## 19.6.0 (2024-10-16)

<csr-id-97eec07de4fbc9e39fb76c7a35cfc0d1ebdb87a5/>
<csr-id-32680a77baad7d3c4696c2735d2883979093f7da/>

### Chore

 - <csr-id-97eec07de4fbc9e39fb76c7a35cfc0d1ebdb87a5/> prepare for release

### New Features

 - <csr-id-b1815f4e258a1c5acb2cb8d3684515c1248cd345/> internal-backstage endpoints are disableable.
   Sensitive endpoint (tokens, features, metricsbatch, metrics) can now all
   be turned off with separate flags
 - <csr-id-acfb38b750afcd0c846612aba4c23ca972021fbf/> flush metrics on clean shutdown
 - <csr-id-3e1f60d1826f9a143642ccefbcab503e41a1e0db/> Support prometheus remote write protocol for metrics
   * fix: make sure to post correct registry to vm
* feat: Add support for remote writing prometheus

### Other

 - <csr-id-32680a77baad7d3c4696c2735d2883979093f7da/> remove request tracing
   Originally we wanted to support OpenTelemetry for tracing, but we no
   longer support setting up an OTEL_COLLECTOR, so removing the request
   tracer seems sensible

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release.
 - 6 days passed between releases.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 4 unique issues were worked on: [#548](https://github.com/Unleash/unleash-edge/issues/548), [#563](https://github.com/Unleash/unleash-edge/issues/563), [#564](https://github.com/Unleash/unleash-edge/issues/564), [#565](https://github.com/Unleash/unleash-edge/issues/565)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#548](https://github.com/Unleash/unleash-edge/issues/548)**
    - Remove request tracing ([`32680a7`](https://github.com/Unleash/unleash-edge/commit/32680a77baad7d3c4696c2735d2883979093f7da))
 * **[#563](https://github.com/Unleash/unleash-edge/issues/563)**
    - Support prometheus remote write protocol for metrics ([`3e1f60d`](https://github.com/Unleash/unleash-edge/commit/3e1f60d1826f9a143642ccefbcab503e41a1e0db))
 * **[#564](https://github.com/Unleash/unleash-edge/issues/564)**
    - Flush metrics on clean shutdown ([`acfb38b`](https://github.com/Unleash/unleash-edge/commit/acfb38b750afcd0c846612aba4c23ca972021fbf))
 * **[#565](https://github.com/Unleash/unleash-edge/issues/565)**
    - Internal-backstage endpoints are disableable. ([`b1815f4`](https://github.com/Unleash/unleash-edge/commit/b1815f4e258a1c5acb2cb8d3684515c1248cd345))
 * **Uncategorized**
    - Release unleash-edge v19.6.0 ([`03364f8`](https://github.com/Unleash/unleash-edge/commit/03364f859be4abef929dd61ab291d81df40549a8))
    - Prepare for release ([`97eec07`](https://github.com/Unleash/unleash-edge/commit/97eec07de4fbc9e39fb76c7a35cfc0d1ebdb87a5))
</details>

## 19.5.1 (2024-10-09)

### Bug Fixes

 - <csr-id-560917b624b9c731cb2c4a1624562cda74ebf65c/> frontend all endpoints now accept context correctly
 - <csr-id-5e380e3e1fefaf555ec40747726c40bded82cf75/> remove bucket creation in s3 persister
 - <csr-id-69901782bd72e29b96d36beaaf46d4e2aa456127/> prefix unused vars

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release.
 - 5 days passed between releases.
 - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#557](https://github.com/Unleash/unleash-edge/issues/557), [#558](https://github.com/Unleash/unleash-edge/issues/558)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#557](https://github.com/Unleash/unleash-edge/issues/557)**
    - Remove bucket creation in s3 persister ([`5e380e3`](https://github.com/Unleash/unleash-edge/commit/5e380e3e1fefaf555ec40747726c40bded82cf75))
 * **[#558](https://github.com/Unleash/unleash-edge/issues/558)**
    - Frontend all endpoints now accept context correctly ([`560917b`](https://github.com/Unleash/unleash-edge/commit/560917b624b9c731cb2c4a1624562cda74ebf65c))
 * **Uncategorized**
    - Release unleash-edge v19.5.1 ([`90c9ae7`](https://github.com/Unleash/unleash-edge/commit/90c9ae7c8e4131f8d1b3ad481847db79cb43eaa7))
    - Prefix unused vars ([`6990178`](https://github.com/Unleash/unleash-edge/commit/69901782bd72e29b96d36beaaf46d4e2aa456127))
</details>

## 19.5.0 (2024-10-04)

<csr-id-01bf9b64febe6c2a79602e1ecf13e253cef148ca/>
<csr-id-57188289db39c200d5bbc2f1dc8319f0fe2a2f13/>
<csr-id-548f7e045aa47adad317587b17c852baae1e17c9/>

### Chore

 - <csr-id-01bf9b64febe6c2a79602e1ecf13e253cef148ca/> Prepare 19.5.0 release
 - <csr-id-57188289db39c200d5bbc2f1dc8319f0fe2a2f13/> Remove unnecessary dbg! macros
 - <csr-id-548f7e045aa47adad317587b17c852baae1e17c9/> bump cargo dependencies

### Documentation

 - <csr-id-19048e36476943b9f58bbe375f7d5f90c3f6091b/> Add client-tokens and frontend-tokens chapter to offline mode
   * Update server/readme

### New Features

 - <csr-id-1522e296a2cb81892718d4f778c4fa89c7776b41/> s3 persister

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release.
 - 12 days passed between releases.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#536](https://github.com/Unleash/unleash-edge/issues/536), [#542](https://github.com/Unleash/unleash-edge/issues/542)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#536](https://github.com/Unleash/unleash-edge/issues/536)**
    - Add client-tokens and frontend-tokens chapter to offline mode ([`19048e3`](https://github.com/Unleash/unleash-edge/commit/19048e36476943b9f58bbe375f7d5f90c3f6091b))
 * **[#542](https://github.com/Unleash/unleash-edge/issues/542)**
    - S3 persister ([`1522e29`](https://github.com/Unleash/unleash-edge/commit/1522e296a2cb81892718d4f778c4fa89c7776b41))
 * **Uncategorized**
    - Release unleash-edge v19.5.0 ([`a000fc0`](https://github.com/Unleash/unleash-edge/commit/a000fc02bb8381c4d3463bd930213bdffb191ad7))
    - Prepare 19.5.0 release ([`01bf9b6`](https://github.com/Unleash/unleash-edge/commit/01bf9b64febe6c2a79602e1ecf13e253cef148ca))
    - Remove unnecessary dbg! macros ([`5718828`](https://github.com/Unleash/unleash-edge/commit/57188289db39c200d5bbc2f1dc8319f0fe2a2f13))
    - Bump cargo dependencies ([`548f7e0`](https://github.com/Unleash/unleash-edge/commit/548f7e045aa47adad317587b17c852baae1e17c9))
</details>

## 19.4.1 (2024-09-21)

<csr-id-3db59d68ea0d5942099b9c7ca154d4e6489be338/>
<csr-id-12e84fe75cfa6b35900f1b54daad134148c68bf5/>
<csr-id-9e3d251ce4d653ad6437a7688512ba129af3a6e3/>
<csr-id-87ca98f8d16702a5c9c82927008b91f909974894/>
<csr-id-715e8e96eec0f62d1a95f9b8d7dc7ec374748a2d/>

### Chore

 - <csr-id-3db59d68ea0d5942099b9c7ca154d4e6489be338/> bump dependency status link
 - <csr-id-12e84fe75cfa6b35900f1b54daad134148c68bf5/> update dependency link in README
 - <csr-id-9e3d251ce4d653ad6437a7688512ba129af3a6e3/> dependency maintenance
 - <csr-id-87ca98f8d16702a5c9c82927008b91f909974894/> update log message
 - <csr-id-715e8e96eec0f62d1a95f9b8d7dc7ec374748a2d/> Upgrade to actix 4.9, tokio 1.40, opentelemetry 0.24
   * chore: bump to actix 4.9 and upgrade packages
   
   * chore: Upgrade Opentelemetry to 0.24

### New Features

<csr-id-00aabbef3061e9f92144d454f31bac8f41764770/>
<csr-id-10d3854daa473cb32c4536e0776900717c9f765b/>

 - <csr-id-b48604c13c6733a1ce38ff29843391b4866a5506/> added support for client and frontend tokens to offline mode.
   * feat: added support for client and frontend tokens to offline mode. Assume tokens passed in --tokens are client tokens
* clean up tests to use the new interface
* fix: Added client and frontend tokens to constructor
* Updated CLI docs

### Bug Fixes

 - <csr-id-429ae00d3947b6158ad6cb5ddc9b4355946a9452/> allow offline mode to have either tokens or client-tokens set
 - <csr-id-797fc490dd7dc605a3f65c57a13dad5aac6bad63/> Update to explicitly type RedisError.
   Work around for Rust 2024 implementing Never type (!)

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 13 commits contributed to the release.
 - 18 days passed between releases.
 - 10 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 7 unique issues were worked on: [#465](https://github.com/Unleash/unleash-edge/issues/465), [#512](https://github.com/Unleash/unleash-edge/issues/512), [#513](https://github.com/Unleash/unleash-edge/issues/513), [#520](https://github.com/Unleash/unleash-edge/issues/520), [#531](https://github.com/Unleash/unleash-edge/issues/531), [#532](https://github.com/Unleash/unleash-edge/issues/532), [#535](https://github.com/Unleash/unleash-edge/issues/535)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#465](https://github.com/Unleash/unleash-edge/issues/465)**
    - Added support for client and frontend tokens to offline mode. ([`b48604c`](https://github.com/Unleash/unleash-edge/commit/b48604c13c6733a1ce38ff29843391b4866a5506))
 * **[#512](https://github.com/Unleash/unleash-edge/issues/512)**
    - Update instruction to refer to docker command not tag ([`113d1ef`](https://github.com/Unleash/unleash-edge/commit/113d1ef7e8627df1e8c3f836c1f09d32092e748c))
 * **[#513](https://github.com/Unleash/unleash-edge/issues/513)**
    - Upgrade to actix 4.9, tokio 1.40, opentelemetry 0.24 ([`715e8e9`](https://github.com/Unleash/unleash-edge/commit/715e8e96eec0f62d1a95f9b8d7dc7ec374748a2d))
 * **[#520](https://github.com/Unleash/unleash-edge/issues/520)**
    - Verbose error for instance urls with api suffix ([`10d3854`](https://github.com/Unleash/unleash-edge/commit/10d3854daa473cb32c4536e0776900717c9f765b))
 * **[#531](https://github.com/Unleash/unleash-edge/issues/531)**
    - Update to explicitly type RedisError. ([`797fc49`](https://github.com/Unleash/unleash-edge/commit/797fc490dd7dc605a3f65c57a13dad5aac6bad63))
 * **[#532](https://github.com/Unleash/unleash-edge/issues/532)**
    - Added feature_toggle_usage_total counter ([`00aabbe`](https://github.com/Unleash/unleash-edge/commit/00aabbef3061e9f92144d454f31bac8f41764770))
 * **[#535](https://github.com/Unleash/unleash-edge/issues/535)**
    - Dependency maintenance ([`9e3d251`](https://github.com/Unleash/unleash-edge/commit/9e3d251ce4d653ad6437a7688512ba129af3a6e3))
 * **Uncategorized**
    - Release unleash-edge v19.4.1 ([`51ac539`](https://github.com/Unleash/unleash-edge/commit/51ac5390b364daa7297354d336528a30963e244c))
    - Bump dependency status link ([`3db59d6`](https://github.com/Unleash/unleash-edge/commit/3db59d68ea0d5942099b9c7ca154d4e6489be338))
    - Allow offline mode to have either tokens or client-tokens set ([`429ae00`](https://github.com/Unleash/unleash-edge/commit/429ae00d3947b6158ad6cb5ddc9b4355946a9452))
    - Release unleash-edge v19.4.0 ([`6c85a6f`](https://github.com/Unleash/unleash-edge/commit/6c85a6f714d33a08dbc419cb1b7b1d6095b307ab))
    - Update dependency link in README ([`12e84fe`](https://github.com/Unleash/unleash-edge/commit/12e84fe75cfa6b35900f1b54daad134148c68bf5))
    - Update log message ([`87ca98f`](https://github.com/Unleash/unleash-edge/commit/87ca98f8d16702a5c9c82927008b91f909974894))
</details>

## 19.4.0 (2024-09-20)

<csr-id-12e84fe75cfa6b35900f1b54daad134148c68bf5/>
<csr-id-9e3d251ce4d653ad6437a7688512ba129af3a6e3/>
<csr-id-87ca98f8d16702a5c9c82927008b91f909974894/>
<csr-id-715e8e96eec0f62d1a95f9b8d7dc7ec374748a2d/>

### Chore

 - <csr-id-12e84fe75cfa6b35900f1b54daad134148c68bf5/> update dependency link in README
 - <csr-id-9e3d251ce4d653ad6437a7688512ba129af3a6e3/> dependency maintenance
 - <csr-id-87ca98f8d16702a5c9c82927008b91f909974894/> update log message
 - <csr-id-715e8e96eec0f62d1a95f9b8d7dc7ec374748a2d/> Upgrade to actix 4.9, tokio 1.40, opentelemetry 0.24
   * chore: bump to actix 4.9 and upgrade packages
   
   * chore: Upgrade Opentelemetry to 0.24

### New Features

<csr-id-00aabbef3061e9f92144d454f31bac8f41764770/>
<csr-id-10d3854daa473cb32c4536e0776900717c9f765b/>

 - <csr-id-b48604c13c6733a1ce38ff29843391b4866a5506/> added support for client and frontend tokens to offline mode.
   * feat: added support for client and frontend tokens to offline mode. Assume tokens passed in --tokens are client tokens
* clean up tests to use the new interface
* fix: Added client and frontend tokens to constructor
* Updated CLI docs

### Bug Fixes

 - <csr-id-797fc490dd7dc605a3f65c57a13dad5aac6bad63/> Update to explicitly type RedisError.
   Work around for Rust 2024 implementing Never type (!)

<csr-unknown>
<csr-unknown>
<csr-unknown>
<csr-unknown>
<csr-unknown>
<csr-unknown>
<csr-unknown>
 added feature_toggle_usage_total counter verbose error for instance urls with api suffix<csr-unknown/>
<csr-unknown/>
<csr-unknown/>
<csr-unknown/>
<csr-unknown/>
<csr-unknown/>
<csr-unknown/>

## 19.3.1 (2024-09-03)

<csr-id-933659b0461b8a53cb89caf0984963918fe82b04/>
<csr-id-2caf90d454442b96acb3e3fb8a667cd8a12bb371/>

### Chore

 - <csr-id-933659b0461b8a53cb89caf0984963918fe82b04/> remove warnings as a result of new rust version
   * chore: disable tarpaulin warnings
   
   * chore: remove unneeded sync-middleware feature
 - <csr-id-2caf90d454442b96acb3e3fb8a667cd8a12bb371/> update rust crate shadow-rs to 0.30.0

### Documentation

 - <csr-id-fb6de0945201fbb55b01c122722882188b4ff464/> update dependency pointer to planned release
 - <csr-id-249ef1fd64d8b2934c1af742f91cd222cede787b/> Restructure readme
   * Add prometheus endpoint
* Reformat binary list
* Add code formatting for shell commands

### Bug Fixes

 - <csr-id-20d270c183ec3bf8b13ca8926425f67935406b2a/> added PostContext handling properties and context as nested variants
   * chore: add some test cases to cement behavior

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release.
 - 43 days passed between releases.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 3 unique issues were worked on: [#494](https://github.com/Unleash/unleash-edge/issues/494), [#507](https://github.com/Unleash/unleash-edge/issues/507), [#510](https://github.com/Unleash/unleash-edge/issues/510)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#494](https://github.com/Unleash/unleash-edge/issues/494)**
    - Update rust crate shadow-rs to 0.30.0 ([`2caf90d`](https://github.com/Unleash/unleash-edge/commit/2caf90d454442b96acb3e3fb8a667cd8a12bb371))
 * **[#507](https://github.com/Unleash/unleash-edge/issues/507)**
    - Remove warnings as a result of new rust version ([`933659b`](https://github.com/Unleash/unleash-edge/commit/933659b0461b8a53cb89caf0984963918fe82b04))
 * **[#510](https://github.com/Unleash/unleash-edge/issues/510)**
    - Added PostContext handling properties and context as nested variants ([`20d270c`](https://github.com/Unleash/unleash-edge/commit/20d270c183ec3bf8b13ca8926425f67935406b2a))
 * **Uncategorized**
    - Release unleash-edge v19.3.1 ([`3c04133`](https://github.com/Unleash/unleash-edge/commit/3c04133543242f262db480c57de07e12ee99b8cd))
    - Update dependency pointer to planned release ([`fb6de09`](https://github.com/Unleash/unleash-edge/commit/fb6de0945201fbb55b01c122722882188b4ff464))
    - Restructure readme ([`249ef1f`](https://github.com/Unleash/unleash-edge/commit/249ef1fd64d8b2934c1af742f91cd222cede787b))
</details>

## 19.3.0 (2024-07-22)

<csr-id-7854e28e68acbf1627f8d759b141af64f2709748/>
<csr-id-8e57fe3e04158269ae68df222ef6b704e33a5d5d/>
<csr-id-fa2f974b80b3b28032a484230047f88dbc05c078/>

### Chore

 - <csr-id-7854e28e68acbf1627f8d759b141af64f2709748/> prepare 19.3.0
 - <csr-id-8e57fe3e04158269ae68df222ef6b704e33a5d5d/> make clippy warnings into failures

### New Features

 - <csr-id-9795c7c8acfbb963f45df4bba6a589f32544ee45/> upgrade types library, unfortunately this does two things - adds new optional metrics data and adds backwards compatability for impression_data

### Bug Fixes

 - <csr-id-c1a3acd59606e8553e8d46d3dca5bbc0f88a348e/> use app name as appname header
 - <csr-id-528128709b0cfdcffc3677433ae14e103c17982b/> trim tokens when parsing
   * fix: trim tokens when parsing

### Other

 - <csr-id-fa2f974b80b3b28032a484230047f88dbc05c078/> Dependency maintenance

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 7 commits contributed to the release.
 - 9 days passed between releases.
 - 6 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 5 unique issues were worked on: [#479](https://github.com/Unleash/unleash-edge/issues/479), [#489](https://github.com/Unleash/unleash-edge/issues/489), [#490](https://github.com/Unleash/unleash-edge/issues/490), [#491](https://github.com/Unleash/unleash-edge/issues/491), [#492](https://github.com/Unleash/unleash-edge/issues/492)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#479](https://github.com/Unleash/unleash-edge/issues/479)**
    - Dependency maintenance ([`fa2f974`](https://github.com/Unleash/unleash-edge/commit/fa2f974b80b3b28032a484230047f88dbc05c078))
 * **[#489](https://github.com/Unleash/unleash-edge/issues/489)**
    - Upgrade types library, unfortunately this does two things - adds new optional metrics data and adds backwards compatability for impression_data ([`9795c7c`](https://github.com/Unleash/unleash-edge/commit/9795c7c8acfbb963f45df4bba6a589f32544ee45))
 * **[#490](https://github.com/Unleash/unleash-edge/issues/490)**
    - Use app name as appname header ([`c1a3acd`](https://github.com/Unleash/unleash-edge/commit/c1a3acd59606e8553e8d46d3dca5bbc0f88a348e))
 * **[#491](https://github.com/Unleash/unleash-edge/issues/491)**
    - Make clippy warnings into failures ([`8e57fe3`](https://github.com/Unleash/unleash-edge/commit/8e57fe3e04158269ae68df222ef6b704e33a5d5d))
 * **[#492](https://github.com/Unleash/unleash-edge/issues/492)**
    - Trim tokens when parsing ([`5281287`](https://github.com/Unleash/unleash-edge/commit/528128709b0cfdcffc3677433ae14e103c17982b))
 * **Uncategorized**
    - Release unleash-edge v19.3.0 ([`7d6ab1c`](https://github.com/Unleash/unleash-edge/commit/7d6ab1c259fe5d85ce1ad8e5491e144c8808306c))
    - Prepare 19.3.0 ([`7854e28`](https://github.com/Unleash/unleash-edge/commit/7854e28e68acbf1627f8d759b141af64f2709748))
</details>

## 19.2.1 (2024-07-12)

<csr-id-55d8bbf8f73c1b9aa1697e881e893a0609c8d940/>

### Chore

 - <csr-id-55d8bbf8f73c1b9aa1697e881e893a0609c8d940/> prepare for release

### Documentation

 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------

### Bug Fixes

 - <csr-id-b89841fa0e04c1e4033760e1f471f665fb09f1d2/> add timeout for redis read and write ops.
   Previously, if you gave us a redis url that was valid, but used the
   wrong protocol (so rediss when connecting to insecure, or redis when
   connecting to secure), operations against Redis got stuck. This PR adds
   a timeout setting (setting it to default of 2000 ms, but configurable).
   
   This does add time when url is completely invalid (i.e. there's nothing
   listening), but it prevents the client from getting stuck indefinitely
   if something answers, but redis can't get an answer.

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 5 commits contributed to the release.
 - 8 days passed between releases.
 - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#477](https://github.com/Unleash/unleash-edge/issues/477), [#478](https://github.com/Unleash/unleash-edge/issues/478)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#477](https://github.com/Unleash/unleash-edge/issues/477)**
    - Strict and dynamic mode ([`4dc72f3`](https://github.com/Unleash/unleash-edge/commit/4dc72f39adad96650516b02f8bfb3ad50fa39bab))
 * **[#478](https://github.com/Unleash/unleash-edge/issues/478)**
    - Add timeout for redis read and write ops. ([`b89841f`](https://github.com/Unleash/unleash-edge/commit/b89841fa0e04c1e4033760e1f471f665fb09f1d2))
 * **Uncategorized**
    - Release unleash-edge v19.2.1 ([`1f6217b`](https://github.com/Unleash/unleash-edge/commit/1f6217bc4f4c741204de31c04fb328376ac2939b))
    - Release unleash-edge v19.2.0 ([`6547d4c`](https://github.com/Unleash/unleash-edge/commit/6547d4c2c1cc005c6b1a9c0e6b767f3f19c85e02))
    - Prepare for release ([`55d8bbf`](https://github.com/Unleash/unleash-edge/commit/55d8bbf8f73c1b9aa1697e881e893a0609c8d940))
</details>

## 19.2.0 (2024-07-04)

<csr-id-b62143d5dcaf5b95d99726a4e69eaca8c82b44da/>
<csr-id-55d8bbf8f73c1b9aa1697e881e893a0609c8d940/>

### Chore

 - <csr-id-b62143d5dcaf5b95d99726a4e69eaca8c82b44da/> add deprecation logs for dynamic behavior

### Bug Fixes

 - <csr-id-b89841fa0e04c1e4033760e1f471f665fb09f1d2/> add timeout for redis read and write ops.
   Previously, if you gave us a redis url that was valid, but used the
   wrong protocol (so rediss when connecting to insecure, or redis when
   connecting to secure), operations against Redis got stuck. This PR adds
   a timeout setting (setting it to default of 2000 ms, but configurable).
   
   This does add time when url is completely invalid (i.e. there's nothing
   listening), but it prevents the client from getting stuck indefinitely
   if something answers, but redis can't get an answer.

### Chore

 - <csr-id-55d8bbf8f73c1b9aa1697e881e893a0609c8d940/> prepare for release

### Documentation

 - <csr-id-847d1124d006724783511f1dce28808434ec650a/> Make README a quickstart and move concept/benchmarking/deploying to separate files
   * docs: Split README into multiple sub-files to make main README easier to read
* Update README in server subfolder
* Remember to add tokens variable for passing in tokens to edge
* Update README.md
 - <csr-id-4dc72f39adad96650516b02f8bfb3ad50fa39bab/> strict and dynamic mode
   ---------

### New Features

 - <csr-id-9f012016edc2319a36f58f6e132d069f14ceef18/> strict behavior

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release.
 - 42 days passed between releases.
 - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 3 unique issues were worked on: [#474](https://github.com/Unleash/unleash-edge/issues/474), [#475](https://github.com/Unleash/unleash-edge/issues/475), [#476](https://github.com/Unleash/unleash-edge/issues/476)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#474](https://github.com/Unleash/unleash-edge/issues/474)**
    - Strict behavior ([`9f01201`](https://github.com/Unleash/unleash-edge/commit/9f012016edc2319a36f58f6e132d069f14ceef18))
 * **[#475](https://github.com/Unleash/unleash-edge/issues/475)**
    - Make README a quickstart and move concept/benchmarking/deploying to separate files ([`847d112`](https://github.com/Unleash/unleash-edge/commit/847d1124d006724783511f1dce28808434ec650a))
 * **[#476](https://github.com/Unleash/unleash-edge/issues/476)**
    - Add deprecation logs for dynamic behavior ([`b62143d`](https://github.com/Unleash/unleash-edge/commit/b62143d5dcaf5b95d99726a4e69eaca8c82b44da))
 * **Uncategorized**
    - Release unleash-edge v19.2.0 ([`855a89c`](https://github.com/Unleash/unleash-edge/commit/855a89c7441a73cb504f148e675ac2e0de0ea66e))
</details>

## 19.1.3 (2024-05-23)

<csr-id-6ffe9a953fd1b9b868d4a9b62bdf2df45b5a901b/>

### Chore

 - <csr-id-6ffe9a953fd1b9b868d4a9b62bdf2df45b5a901b/> Updated README for release

### Bug Fixes

<csr-id-9abab18e9872442a9a565bc20f11466e27954ec0/>

 - <csr-id-6d434cfdd6127d1c5c83964b851466ee5936a5c8/> Only replace projects covered by token
   * fix: Only replace projects covered by token

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release.
 - 8 days passed between releases.
 - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#464](https://github.com/Unleash/unleash-edge/issues/464), [#466](https://github.com/Unleash/unleash-edge/issues/466)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#464](https://github.com/Unleash/unleash-edge/issues/464)**
    - Ready if no tokens and no features ([`9abab18`](https://github.com/Unleash/unleash-edge/commit/9abab18e9872442a9a565bc20f11466e27954ec0))
 * **[#466](https://github.com/Unleash/unleash-edge/issues/466)**
    - Only replace projects covered by token ([`6d434cf`](https://github.com/Unleash/unleash-edge/commit/6d434cfdd6127d1c5c83964b851466ee5936a5c8))
 * **Uncategorized**
    - Release unleash-edge v19.1.3 ([`fb689df`](https://github.com/Unleash/unleash-edge/commit/fb689dfe6a17acb9188fe705e4f81892827dfdf4))
    - Updated README for release ([`6ffe9a9`](https://github.com/Unleash/unleash-edge/commit/6ffe9a953fd1b9b868d4a9b62bdf2df45b5a901b))
</details>

## 19.1.2 (2024-05-14)

### Bug Fixes

 - <csr-id-80d6798eb840ed0b7771f2e43a8bc151b7dbbfee/> Ready endpoint should return 503 if Edge is Not ready

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#462](https://github.com/Unleash/unleash-edge/issues/462)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#462](https://github.com/Unleash/unleash-edge/issues/462)**
    - Ready endpoint should return 503 if Edge is Not ready ([`80d6798`](https://github.com/Unleash/unleash-edge/commit/80d6798eb840ed0b7771f2e43a8bc151b7dbbfee))
 * **Uncategorized**
    - Release unleash-edge v19.1.2 ([`ef7d1db`](https://github.com/Unleash/unleash-edge/commit/ef7d1dbb200b75456dda122c0ba69fd3e8e31d8f))
</details>

## 19.1.1 (2024-05-13)

<csr-id-e3d0f03006a9ece743940af60796b574f772b1d3/>

### Chore

 - <csr-id-e3d0f03006a9ece743940af60796b574f772b1d3/> Prepare for release

### Documentation

 - <csr-id-6f6083c417ecbbb398d9705e19f30920cadd3fce/> added note about making sure you're on the latest version of Edge and/or SDKs

### New Features

 - <csr-id-06f25443de217d138ee3fa2b34cbc0cdef5a967d/> don't log redis password
   This removes passwords from the logs

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 5 commits contributed to the release.
 - 5 days passed between releases.
 - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#413](https://github.com/Unleash/unleash-edge/issues/413), [#461](https://github.com/Unleash/unleash-edge/issues/461)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#413](https://github.com/Unleash/unleash-edge/issues/413)**
    - Added note about making sure you're on the latest version of Edge and/or SDKs ([`6f6083c`](https://github.com/Unleash/unleash-edge/commit/6f6083c417ecbbb398d9705e19f30920cadd3fce))
 * **[#461](https://github.com/Unleash/unleash-edge/issues/461)**
    - Don't log redis password ([`06f2544`](https://github.com/Unleash/unleash-edge/commit/06f25443de217d138ee3fa2b34cbc0cdef5a967d))
 * **Uncategorized**
    - Release unleash-edge v19.1.1 ([`ee92711`](https://github.com/Unleash/unleash-edge/commit/ee927114f76f8d273fb42d00c5bf5447ce95b5f5))
    - Release unleash-edge v19.1.1 ([`6ec6f33`](https://github.com/Unleash/unleash-edge/commit/6ec6f33c907290d7903d2bab9d8174abc64f7460))
    - Prepare for release ([`e3d0f03`](https://github.com/Unleash/unleash-edge/commit/e3d0f03006a9ece743940af60796b574f772b1d3))
</details>

## 19.1.0 (2024-05-07)

<csr-id-f567cced381b2a8630a20684f24667f587130d78/>

### Chore

 - <csr-id-f567cced381b2a8630a20684f24667f587130d78/> edge will now give a warning when failing to load from cache on startup

### Bug Fixes

 - <csr-id-dc5e88d9e703b5f07c84f22985909d2e1ab9781e/> remove feature refresher
 - <csr-id-45552e7476cfee75a803a12b002295e267c29e9c/> prevent persistence from saving empty data sets

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 5 commits contributed to the release.
 - 11 days passed between releases.
 - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 4 unique issues were worked on: [#452](https://github.com/Unleash/unleash-edge/issues/452), [#453](https://github.com/Unleash/unleash-edge/issues/453), [#456](https://github.com/Unleash/unleash-edge/issues/456), [#457](https://github.com/Unleash/unleash-edge/issues/457)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#452](https://github.com/Unleash/unleash-edge/issues/452)**
    - Prevent persistence from saving empty data sets ([`45552e7`](https://github.com/Unleash/unleash-edge/commit/45552e7476cfee75a803a12b002295e267c29e9c))
 * **[#453](https://github.com/Unleash/unleash-edge/issues/453)**
    - Feature/add redis cluster support ([`f104e58`](https://github.com/Unleash/unleash-edge/commit/f104e585c9caede57d9d2c0e907e870250052e10))
 * **[#456](https://github.com/Unleash/unleash-edge/issues/456)**
    - Edge will now give a warning when failing to load from cache on startup ([`f567cce`](https://github.com/Unleash/unleash-edge/commit/f567cced381b2a8630a20684f24667f587130d78))
 * **[#457](https://github.com/Unleash/unleash-edge/issues/457)**
    - Remove feature refresher ([`dc5e88d`](https://github.com/Unleash/unleash-edge/commit/dc5e88d9e703b5f07c84f22985909d2e1ab9781e))
 * **Uncategorized**
    - Release unleash-edge v19.1.0 ([`e4eb23c`](https://github.com/Unleash/unleash-edge/commit/e4eb23c5a9ae17116a50bf8f257642fb6ca01eb4))
</details>

## 19.0.0 (2024-04-25)

### Bug Fixes

 - <csr-id-550dd720e56267c6cac37f77ecb942facdd3722a/> bump unleash types so that impression data is correctly camelcased
 - <csr-id-959034463da4a37ea24392a70882b89ad8f58029/> Removed /edge/metrics and logic for posting to /edge/metrics
   * Added notes about 5.9.0

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 42 days passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#446](https://github.com/Unleash/unleash-edge/issues/446), [#449](https://github.com/Unleash/unleash-edge/issues/449)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#446](https://github.com/Unleash/unleash-edge/issues/446)**
    - Removed /edge/metrics and logic for posting to /edge/metrics ([`9590344`](https://github.com/Unleash/unleash-edge/commit/959034463da4a37ea24392a70882b89ad8f58029))
 * **[#449](https://github.com/Unleash/unleash-edge/issues/449)**
    - Bump unleash types so that impression data is correctly camelcased ([`550dd72`](https://github.com/Unleash/unleash-edge/commit/550dd720e56267c6cac37f77ecb942facdd3722a))
 * **Uncategorized**
    - Release unleash-edge v19.0.0 ([`d2921f6`](https://github.com/Unleash/unleash-edge/commit/d2921f6c56843e74cd3c2bd14c41f02f75807961))
</details>

## 18.0.1 (2024-03-14)

<csr-id-7099f518250658b3902ce9856e08fede48c00840/>
<csr-id-33cdd3727334ccf14d0d96c29189d700ffbacd4a/>

### Chore

 - <csr-id-7099f518250658b3902ce9856e08fede48c00840/> prepare for readmes for release
   This change updates the readmes with the right dependencies for 18.0.1
 - <csr-id-33cdd3727334ccf14d0d96c29189d700ffbacd4a/> add type for incoming/denormalized context
   * test: add test
   
   * fix: add missing instrumentation line
   
   * fix: add wrapper type
   
   * fix: overwrite logic
   
   * fix: remove derive
   
   * fix: support incoming in get requests
   
   * fix: support post endpoints
   
   * fix: remove unused attributes. That feature doesn't even exist. Probably.
   
   * Chore: revert changes in frontend_api.rs
   
   * fix: format file

### Bug Fixes

<csr-id-0fb91e2e68d255da88630eb9c1fdef2158c73a82/>

 - <csr-id-e7258a9763d1bd9a7fc1c9f38ff2b5c9ab2c6cb9/> handle incoming requests on the api level
   Update all endpoints of the frontend_api to accept top-level properties.
   
   This is primarily just changing the type we expect and then, on the lower level functions, converting the incoming context into a regular context.
   
   Most of the functions are pretty straight-forward. get_all_features appears to be the only one that doesn't share an implementation with any other functions.
   
   The tests check:
   
   -    /api/frontend/features/:feature (/api/proxy/features/:feature uses the same impl under the hood, so I've not tested that explicitly. Happy to change that though.

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 5 commits contributed to the release.
 - 13 days passed between releases.
 - 4 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 4 unique issues were worked on: [#428](https://github.com/Unleash/unleash-edge/issues/428), [#441](https://github.com/Unleash/unleash-edge/issues/441), [#443](https://github.com/Unleash/unleash-edge/issues/443), [#445](https://github.com/Unleash/unleash-edge/issues/445)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#428](https://github.com/Unleash/unleash-edge/issues/428)**
    - Update rust crate ulid to 1.1.2 ([`0fb91e2`](https://github.com/Unleash/unleash-edge/commit/0fb91e2e68d255da88630eb9c1fdef2158c73a82))
 * **[#441](https://github.com/Unleash/unleash-edge/issues/441)**
    - Add type for incoming/denormalized context ([`33cdd37`](https://github.com/Unleash/unleash-edge/commit/33cdd3727334ccf14d0d96c29189d700ffbacd4a))
 * **[#443](https://github.com/Unleash/unleash-edge/issues/443)**
    - Handle incoming requests on the api level ([`e7258a9`](https://github.com/Unleash/unleash-edge/commit/e7258a9763d1bd9a7fc1c9f38ff2b5c9ab2c6cb9))
 * **[#445](https://github.com/Unleash/unleash-edge/issues/445)**
    - Prepare for readmes for release ([`7099f51`](https://github.com/Unleash/unleash-edge/commit/7099f518250658b3902ce9856e08fede48c00840))
 * **Uncategorized**
    - Release unleash-edge v18.0.1 ([`aeadf8b`](https://github.com/Unleash/unleash-edge/commit/aeadf8bfb5424dd146f3a41f99c99a9aba5b92e0))
</details>

## 18.0.0 (2024-02-29)

<csr-id-2d1798e29af79b7a9625e7a1d1950dc7e5feccba/>
<csr-id-d93c28d1a431c24a640ed7013da5fb44d841592f/>
<csr-id-daa9cdbdb2a98ce4704f0703d36dae3a56bf3c24/>

### Chore

 - <csr-id-2d1798e29af79b7a9625e7a1d1950dc7e5feccba/> prepare for release
 - <csr-id-d93c28d1a431c24a640ed7013da5fb44d841592f/> update rust crate testcontainers-modules to 0.3.2

### New Features

<csr-id-781dc4e866ed231b09b8585edb553b83284d6835/>

 - <csr-id-98758be874f1075cc6140a09f14c4503c85a99d2/> Add /internal-backstage/metricsbatch to view what Edge currently has stored of metrics
 - <csr-id-3ca7069a4b75c844a622d599e4ba9473aa247821/> internal backstage features endpoint
   Adds an endpoint /internal-backstage/features displaying which features
   we store per cache key
 - <csr-id-8996a805d5a515eea3979ee60e8e48bbd34d6f9f/> remove service account support
   * feat: remove service account support
* feat: add metrics for failed requests
* test: add tests
* test: fix test
* Update server/src/metrics/actix_web_metrics.rs

### Bug Fixes

 - <csr-id-bff5e8259778277f75b9489a2b9d07b9fda4f166/> make metrics interval not climb forever
   Previously we used the previous iteration of the loop's interval to
   decide next interval. This PR changes to always use the initial
   send_interval as what to base the interval calculation of
 - <csr-id-33a94b630bde5c16fd715475ab4ef737e014ed29/> degrade broken toggles gracefully in frontend api
 - <csr-id-4e302f565fbfd1c0097d55e913ef22e8aaf7373f/> update rust crate serde_json to 1.0.114
 - <csr-id-1cf24471f2be1ca97eec8e8115b2a3b560bcbf09/> update rust crate ahash to 0.8.9
 - <csr-id-e890791084a49bb35a45048dc6d213eb76e1ffba/> update rust crate ulid to 1.1.1
 - <csr-id-a0712e67986c29c18813f65f04a825e1c7452912/> update rust crate itertools to 0.12.1

### Other

 - <csr-id-daa9cdbdb2a98ce4704f0703d36dae3a56bf3c24/> Upgrading Rustls to 0.22 and Actix to 4.5

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 14 commits contributed to the release.
 - 36 days passed between releases.
 - 13 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 12 unique issues were worked on: [#405](https://github.com/Unleash/unleash-edge/issues/405), [#408](https://github.com/Unleash/unleash-edge/issues/408), [#409](https://github.com/Unleash/unleash-edge/issues/409), [#411](https://github.com/Unleash/unleash-edge/issues/411), [#414](https://github.com/Unleash/unleash-edge/issues/414), [#417](https://github.com/Unleash/unleash-edge/issues/417), [#420](https://github.com/Unleash/unleash-edge/issues/420), [#421](https://github.com/Unleash/unleash-edge/issues/421), [#422](https://github.com/Unleash/unleash-edge/issues/422), [#426](https://github.com/Unleash/unleash-edge/issues/426), [#435](https://github.com/Unleash/unleash-edge/issues/435), [#437](https://github.com/Unleash/unleash-edge/issues/437)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#405](https://github.com/Unleash/unleash-edge/issues/405)**
    - Update rust crate testcontainers-modules to 0.3.2 ([`d93c28d`](https://github.com/Unleash/unleash-edge/commit/d93c28d1a431c24a640ed7013da5fb44d841592f))
 * **[#408](https://github.com/Unleash/unleash-edge/issues/408)**
    - Update rust crate serde_json to 1.0.114 ([`4e302f5`](https://github.com/Unleash/unleash-edge/commit/4e302f565fbfd1c0097d55e913ef22e8aaf7373f))
 * **[#409](https://github.com/Unleash/unleash-edge/issues/409)**
    - Update rust crate itertools to 0.12.1 ([`a0712e6`](https://github.com/Unleash/unleash-edge/commit/a0712e67986c29c18813f65f04a825e1c7452912))
 * **[#411](https://github.com/Unleash/unleash-edge/issues/411)**
    - Update rust crate ulid to 1.1.1 ([`e890791`](https://github.com/Unleash/unleash-edge/commit/e890791084a49bb35a45048dc6d213eb76e1ffba))
 * **[#414](https://github.com/Unleash/unleash-edge/issues/414)**
    - Add metrics for failed requests ([`781dc4e`](https://github.com/Unleash/unleash-edge/commit/781dc4e866ed231b09b8585edb553b83284d6835))
 * **[#417](https://github.com/Unleash/unleash-edge/issues/417)**
    - Upgrading Rustls to 0.22 and Actix to 4.5 ([`daa9cdb`](https://github.com/Unleash/unleash-edge/commit/daa9cdbdb2a98ce4704f0703d36dae3a56bf3c24))
 * **[#420](https://github.com/Unleash/unleash-edge/issues/420)**
    - Add /internal-backstage/metricsbatch to view what Edge currently has stored of metrics ([`98758be`](https://github.com/Unleash/unleash-edge/commit/98758be874f1075cc6140a09f14c4503c85a99d2))
 * **[#421](https://github.com/Unleash/unleash-edge/issues/421)**
    - Update rust crate ahash to 0.8.9 ([`1cf2447`](https://github.com/Unleash/unleash-edge/commit/1cf24471f2be1ca97eec8e8115b2a3b560bcbf09))
 * **[#422](https://github.com/Unleash/unleash-edge/issues/422)**
    - Internal backstage features endpoint ([`3ca7069`](https://github.com/Unleash/unleash-edge/commit/3ca7069a4b75c844a622d599e4ba9473aa247821))
 * **[#426](https://github.com/Unleash/unleash-edge/issues/426)**
    - Remove service account support ([`8996a80`](https://github.com/Unleash/unleash-edge/commit/8996a805d5a515eea3979ee60e8e48bbd34d6f9f))
 * **[#435](https://github.com/Unleash/unleash-edge/issues/435)**
    - Degrade broken toggles gracefully in frontend api ([`33a94b6`](https://github.com/Unleash/unleash-edge/commit/33a94b630bde5c16fd715475ab4ef737e014ed29))
 * **[#437](https://github.com/Unleash/unleash-edge/issues/437)**
    - Make metrics interval not climb forever ([`bff5e82`](https://github.com/Unleash/unleash-edge/commit/bff5e8259778277f75b9489a2b9d07b9fda4f166))
 * **Uncategorized**
    - Release unleash-edge v18.0.0 ([`7ed5b0f`](https://github.com/Unleash/unleash-edge/commit/7ed5b0ff10d748913f4b7e59e2111f2bf0e71561))
    - Prepare for release ([`2d1798e`](https://github.com/Unleash/unleash-edge/commit/2d1798e29af79b7a9625e7a1d1950dc7e5feccba))
</details>

## 17.1.0 (2024-01-24)

<csr-id-11f97ff47246322a899851e18724a9dfe200ecbd/>
<csr-id-0f88ec8fe57e695f68f7f2b69789550191532130/>

### Chore

 - <csr-id-11f97ff47246322a899851e18724a9dfe200ecbd/> prepare for 17.1.0 release
 - <csr-id-0f88ec8fe57e695f68f7f2b69789550191532130/> update rust crate shadow-rs to 0.26.1

### New Features

 - <csr-id-fab4871f0231f7074a7d2b004ac91b06899334b5/> add endpoints for metrics that support using the proxy/all
   * feat: add endpoints for metrics that support using the proxy/all and frontend/all endpoints for clients

### Bug Fixes

 - <csr-id-706990d0f78439885ce4258b1da41b3514bac60a/> include strategy variant stickiness
 - <csr-id-ff67c72492b41409798ec247fe5ebc97c465eace/> update rust crate clap to 4.4.18

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release.
 - 8 days passed between releases.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 4 unique issues were worked on: [#392](https://github.com/Unleash/unleash-edge/issues/392), [#395](https://github.com/Unleash/unleash-edge/issues/395), [#399](https://github.com/Unleash/unleash-edge/issues/399), [#403](https://github.com/Unleash/unleash-edge/issues/403)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#392](https://github.com/Unleash/unleash-edge/issues/392)**
    - Update rust crate clap to 4.4.18 ([`ff67c72`](https://github.com/Unleash/unleash-edge/commit/ff67c72492b41409798ec247fe5ebc97c465eace))
 * **[#395](https://github.com/Unleash/unleash-edge/issues/395)**
    - Update rust crate shadow-rs to 0.26.1 ([`0f88ec8`](https://github.com/Unleash/unleash-edge/commit/0f88ec8fe57e695f68f7f2b69789550191532130))
 * **[#399](https://github.com/Unleash/unleash-edge/issues/399)**
    - Add endpoints for metrics that support using the proxy/all ([`fab4871`](https://github.com/Unleash/unleash-edge/commit/fab4871f0231f7074a7d2b004ac91b06899334b5))
 * **[#403](https://github.com/Unleash/unleash-edge/issues/403)**
    - Include strategy variant stickiness ([`706990d`](https://github.com/Unleash/unleash-edge/commit/706990d0f78439885ce4258b1da41b3514bac60a))
 * **Uncategorized**
    - Release unleash-edge v17.1.0 ([`22a632b`](https://github.com/Unleash/unleash-edge/commit/22a632b2471136575c3da4b32595b8cc01440d31))
    - Prepare for 17.1.0 release ([`11f97ff`](https://github.com/Unleash/unleash-edge/commit/11f97ff47246322a899851e18724a9dfe200ecbd))
</details>

## 17.0.0 (2024-01-15)

<csr-id-3b404ee302f818cd3ae07f5c9106d23322efde17/>
<csr-id-abfb62d3d0f13ad1fa3ae6484c4c31deaf6ae368/>
<csr-id-1c359ed1d6d047be2398480c1c622e6d0952989a/>
<csr-id-f06700f010c74372f53c49f9050255872334f270/>
<csr-id-5a3db0ea8b1857a97c985789e8a7cc2a6eb3743b/>

### Chore

 - <csr-id-3b404ee302f818cd3ae07f5c9106d23322efde17/> Prepare for 17.0.0 release
 - <csr-id-abfb62d3d0f13ad1fa3ae6484c4c31deaf6ae368/> update rust crate shadow-rs to 0.26.0
 - <csr-id-1c359ed1d6d047be2398480c1c622e6d0952989a/> update rust crate testcontainers-modules to 0.3.1
 - <csr-id-f06700f010c74372f53c49f9050255872334f270/> update rust crate actix-http to 3.5.1

### New Features

<csr-id-1edda8ccf4b00a147f8bceefca4b2274dd91eb53/>

 - <csr-id-4f9c7eeffdb1b491d7e0f0aaf76d0bcb24df9fe5/> Use Version-headers to decide where to post metrics
   * feat: Edge now dynamically posts to correct upstream metrics endpoint
* filters metrics posted by environment accessible by token

### Bug Fixes

 - <csr-id-f55176807e9c52aa358d25a14d7ad95bb60049cf/> update rust crate clap to 4.4.16
 - <csr-id-b6e71695604144747349ddfebaf9eb94a3ecc4ab/> update rust crate utoipa-swagger-ui to v6
 - <csr-id-7aa21b34e091fca465c9a3f1d194c743ce2abded/> update rust crate actix-cors to 0.7.0
 - <csr-id-c63209c44186888c777ac5ffc50cb413220d96d0/> update rust crate utoipa to 4.2.0
 - <csr-id-d8323df72f948fd923c212ce683ff5cd3a1d5a12/> update rust-futures monorepo to 0.3.30
 - <csr-id-d6d43ff23dfb2f7011af92dc4b13e860ad755c92/> update rust crate opentelemetry_sdk to 0.21.2
 - <csr-id-b7df877202d590ed4d0c4e883ddc521f3ee123bc/> update rust crate serde to 1.0.195
 - <csr-id-39df71761c5e471c821e09eeb5dfc720af8bb407/> update rust crate actix-web to 4.4.1
 - <csr-id-869b07693f0d02e4fbb5701a30ee218828ba412f/> update rust crate redis to 0.24.0
 - <csr-id-2aea0a51861d5d3a8dfd226e8cceb68a029b8a4e/> update rust crate tokio to 1.35.1
 - <csr-id-345ea49ff95c7e8723961b0ec4fae09a9031e5f8/> update rust crate serde_json to 1.0.111
 - <csr-id-69aca47b7dafe56bec95e4ee1bb3f54c9e51671e/> update rust crate ahash to 0.8.7
 - <csr-id-78ad7ca9be77894e8c36001c0a23274ef9bb5e1e/> update rust crate clap to 4.4.14
 - <csr-id-5b8be2a12efbd88e741b312fb32756b39e0d6080/> update rust crate anyhow to 1.0.79
 - <csr-id-367f7d336186d5e1ea9585c12828444bce72cb01/> update rust crate async-trait to 0.1.77
 - <csr-id-b6507bb28ccac3b969760016ac2dc03b84128a89/> rollback actix-cors to 0.6.5

### Other

 - <csr-id-5a3db0ea8b1857a97c985789e8a7cc2a6eb3743b/> Added version header to client register response

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 26 commits contributed to the release.
 - 26 days passed between releases.
 - 23 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 22 unique issues were worked on: [#356](https://github.com/Unleash/unleash-edge/issues/356), [#364](https://github.com/Unleash/unleash-edge/issues/364), [#368](https://github.com/Unleash/unleash-edge/issues/368), [#369](https://github.com/Unleash/unleash-edge/issues/369), [#372](https://github.com/Unleash/unleash-edge/issues/372), [#373](https://github.com/Unleash/unleash-edge/issues/373), [#374](https://github.com/Unleash/unleash-edge/issues/374), [#375](https://github.com/Unleash/unleash-edge/issues/375), [#376](https://github.com/Unleash/unleash-edge/issues/376), [#377](https://github.com/Unleash/unleash-edge/issues/377), [#378](https://github.com/Unleash/unleash-edge/issues/378), [#379](https://github.com/Unleash/unleash-edge/issues/379), [#380](https://github.com/Unleash/unleash-edge/issues/380), [#381](https://github.com/Unleash/unleash-edge/issues/381), [#382](https://github.com/Unleash/unleash-edge/issues/382), [#383](https://github.com/Unleash/unleash-edge/issues/383), [#384](https://github.com/Unleash/unleash-edge/issues/384), [#385](https://github.com/Unleash/unleash-edge/issues/385), [#386](https://github.com/Unleash/unleash-edge/issues/386), [#387](https://github.com/Unleash/unleash-edge/issues/387), [#388](https://github.com/Unleash/unleash-edge/issues/388), [#389](https://github.com/Unleash/unleash-edge/issues/389)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#356](https://github.com/Unleash/unleash-edge/issues/356)**
    - Update rust crate redis to 0.24.0 ([`869b076`](https://github.com/Unleash/unleash-edge/commit/869b07693f0d02e4fbb5701a30ee218828ba412f))
 * **[#364](https://github.com/Unleash/unleash-edge/issues/364)**
    - Update rust crate tokio to 1.35.1 ([`2aea0a5`](https://github.com/Unleash/unleash-edge/commit/2aea0a51861d5d3a8dfd226e8cceb68a029b8a4e))
 * **[#368](https://github.com/Unleash/unleash-edge/issues/368)**
    - Update rust crate anyhow to 1.0.79 ([`5b8be2a`](https://github.com/Unleash/unleash-edge/commit/5b8be2a12efbd88e741b312fb32756b39e0d6080))
 * **[#369](https://github.com/Unleash/unleash-edge/issues/369)**
    - Update rust crate async-trait to 0.1.77 ([`367f7d3`](https://github.com/Unleash/unleash-edge/commit/367f7d336186d5e1ea9585c12828444bce72cb01))
 * **[#372](https://github.com/Unleash/unleash-edge/issues/372)**
    - Added version header to client register response ([`5a3db0e`](https://github.com/Unleash/unleash-edge/commit/5a3db0ea8b1857a97c985789e8a7cc2a6eb3743b))
 * **[#373](https://github.com/Unleash/unleash-edge/issues/373)**
    - Added client authenticated bulk metrics ([`1edda8c`](https://github.com/Unleash/unleash-edge/commit/1edda8ccf4b00a147f8bceefca4b2274dd91eb53))
 * **[#374](https://github.com/Unleash/unleash-edge/issues/374)**
    - Update rust crate serde_json to 1.0.111 ([`345ea49`](https://github.com/Unleash/unleash-edge/commit/345ea49ff95c7e8723961b0ec4fae09a9031e5f8))
 * **[#375](https://github.com/Unleash/unleash-edge/issues/375)**
    - Update rust crate actix-web to 4.4.1 ([`39df717`](https://github.com/Unleash/unleash-edge/commit/39df71761c5e471c821e09eeb5dfc720af8bb407))
 * **[#376](https://github.com/Unleash/unleash-edge/issues/376)**
    - Update rust crate ahash to 0.8.7 ([`69aca47`](https://github.com/Unleash/unleash-edge/commit/69aca47b7dafe56bec95e4ee1bb3f54c9e51671e))
 * **[#377](https://github.com/Unleash/unleash-edge/issues/377)**
    - Update rust crate clap to 4.4.14 ([`78ad7ca`](https://github.com/Unleash/unleash-edge/commit/78ad7ca9be77894e8c36001c0a23274ef9bb5e1e))
 * **[#378](https://github.com/Unleash/unleash-edge/issues/378)**
    - Update rust crate opentelemetry_sdk to 0.21.2 ([`d6d43ff`](https://github.com/Unleash/unleash-edge/commit/d6d43ff23dfb2f7011af92dc4b13e860ad755c92))
 * **[#379](https://github.com/Unleash/unleash-edge/issues/379)**
    - Update rust crate serde to 1.0.195 ([`b7df877`](https://github.com/Unleash/unleash-edge/commit/b7df877202d590ed4d0c4e883ddc521f3ee123bc))
 * **[#380](https://github.com/Unleash/unleash-edge/issues/380)**
    - Update rust crate actix-http to 3.5.1 ([`f06700f`](https://github.com/Unleash/unleash-edge/commit/f06700f010c74372f53c49f9050255872334f270))
 * **[#381](https://github.com/Unleash/unleash-edge/issues/381)**
    - Update rust-futures monorepo to 0.3.30 ([`d8323df`](https://github.com/Unleash/unleash-edge/commit/d8323df72f948fd923c212ce683ff5cd3a1d5a12))
 * **[#382](https://github.com/Unleash/unleash-edge/issues/382)**
    - Updated to cargo-dist 0.7.1 ([`be204fc`](https://github.com/Unleash/unleash-edge/commit/be204fc69aa9d9c4e64e5f105fbdce65ce73adcb))
 * **[#383](https://github.com/Unleash/unleash-edge/issues/383)**
    - Update rust crate shadow-rs to 0.26.0 ([`abfb62d`](https://github.com/Unleash/unleash-edge/commit/abfb62d3d0f13ad1fa3ae6484c4c31deaf6ae368))
 * **[#384](https://github.com/Unleash/unleash-edge/issues/384)**
    - Update rust crate testcontainers-modules to 0.3.1 ([`1c359ed`](https://github.com/Unleash/unleash-edge/commit/1c359ed1d6d047be2398480c1c622e6d0952989a))
 * **[#385](https://github.com/Unleash/unleash-edge/issues/385)**
    - Update rust crate actix-cors to 0.7.0 ([`7aa21b3`](https://github.com/Unleash/unleash-edge/commit/7aa21b34e091fca465c9a3f1d194c743ce2abded))
 * **[#386](https://github.com/Unleash/unleash-edge/issues/386)**
    - Update rust crate utoipa to 4.2.0 ([`c63209c`](https://github.com/Unleash/unleash-edge/commit/c63209c44186888c777ac5ffc50cb413220d96d0))
 * **[#387](https://github.com/Unleash/unleash-edge/issues/387)**
    - Update rust crate utoipa-swagger-ui to v6 ([`b6e7169`](https://github.com/Unleash/unleash-edge/commit/b6e71695604144747349ddfebaf9eb94a3ecc4ab))
 * **[#388](https://github.com/Unleash/unleash-edge/issues/388)**
    - Update rust crate clap to 4.4.16 ([`f551768`](https://github.com/Unleash/unleash-edge/commit/f55176807e9c52aa358d25a14d7ad95bb60049cf))
 * **[#389](https://github.com/Unleash/unleash-edge/issues/389)**
    - Use Version-headers to decide where to post metrics ([`4f9c7ee`](https://github.com/Unleash/unleash-edge/commit/4f9c7eeffdb1b491d7e0f0aaf76d0bcb24df9fe5))
 * **Uncategorized**
    - Rollback actix-cors to 0.6.5 ([`b6507bb`](https://github.com/Unleash/unleash-edge/commit/b6507bb28ccac3b969760016ac2dc03b84128a89))
    - Release unleash-edge v17.0.0 ([`48da5f1`](https://github.com/Unleash/unleash-edge/commit/48da5f1c6a8a3b8be044763cb891818a78d03a16))
    - Prepare for 17.0.0 release ([`3b404ee`](https://github.com/Unleash/unleash-edge/commit/3b404ee302f818cd3ae07f5c9106d23322efde17))
    - Update dependency reference ([`4e20dde`](https://github.com/Unleash/unleash-edge/commit/4e20dded0cd48f49779c41ac8a3d94015f641d9a))
</details>

## 16.1.0 (2023-12-20)

<csr-id-430876a904a6a406861093e3bce5b24385bcd7ce/>

### Chore

 - <csr-id-430876a904a6a406861093e3bce5b24385bcd7ce/> update rust crate test-case to 3.3.1

### New Features

 - <csr-id-d28b049d0287243d32a66da86fb98a26129fc39e/> token-header override
   --token-header <TOKEN_HEADER>
   Token header to use for both edge authorization and communication with the upstream server [env: TOKEN_HEADER=] [default: Authorization]
   
   This is useful in complex deployment scenarios where proxies are using the Authorization header.

### Bug Fixes

 - <csr-id-66d7cbac64f5ec2eb2b6c270be5606b4981c708c/> update rust crate serde to 1.0.193
 - <csr-id-e90b3b49084d8ed56a1caf1ed8a5a3eb38591ee9/> update rust crate reqwest to 0.11.23
 - <csr-id-32b3c00a9ab365f94cacfe81f67a6e0c1257f347/> Do not remove features cache if upstream goes away
   * fix: Do not remove features cache if upstream goes away

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 7 commits contributed to the release.
 - 19 days passed between releases.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 5 unique issues were worked on: [#345](https://github.com/Unleash/unleash-edge/issues/345), [#346](https://github.com/Unleash/unleash-edge/issues/346), [#360](https://github.com/Unleash/unleash-edge/issues/360), [#362](https://github.com/Unleash/unleash-edge/issues/362), [#363](https://github.com/Unleash/unleash-edge/issues/363)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#345](https://github.com/Unleash/unleash-edge/issues/345)**
    - Update rust crate test-case to 3.3.1 ([`430876a`](https://github.com/Unleash/unleash-edge/commit/430876a904a6a406861093e3bce5b24385bcd7ce))
 * **[#346](https://github.com/Unleash/unleash-edge/issues/346)**
    - Update rust crate serde to 1.0.193 ([`66d7cba`](https://github.com/Unleash/unleash-edge/commit/66d7cbac64f5ec2eb2b6c270be5606b4981c708c))
 * **[#360](https://github.com/Unleash/unleash-edge/issues/360)**
    - Token-header override ([`d28b049`](https://github.com/Unleash/unleash-edge/commit/d28b049d0287243d32a66da86fb98a26129fc39e))
 * **[#362](https://github.com/Unleash/unleash-edge/issues/362)**
    - Do not remove features cache if upstream goes away ([`32b3c00`](https://github.com/Unleash/unleash-edge/commit/32b3c00a9ab365f94cacfe81f67a6e0c1257f347))
 * **[#363](https://github.com/Unleash/unleash-edge/issues/363)**
    - Update rust crate reqwest to 0.11.23 ([`e90b3b4`](https://github.com/Unleash/unleash-edge/commit/e90b3b49084d8ed56a1caf1ed8a5a3eb38591ee9))
 * **Uncategorized**
    - Release unleash-edge v16.1.0 ([`e89df6a`](https://github.com/Unleash/unleash-edge/commit/e89df6ad7038ed31184e5d8768e9c40127d8157f))
    - Prepare for release ([`6babef8`](https://github.com/Unleash/unleash-edge/commit/6babef852a1d794f7cff1c6e60f644f5ad3b9798))
</details>

## 16.0.6 (2023-11-30)

<csr-id-71a7a2d935fc4f5a6f37e4f84e2ab83935ca5907/>
<csr-id-4106baa990601a3cadabe1d6426d626d2ead8907/>

### Chore

 - <csr-id-71a7a2d935fc4f5a6f37e4f84e2ab83935ca5907/> update rust crate testcontainers-modules to 0.2.0
 - <csr-id-4106baa990601a3cadabe1d6426d626d2ead8907/> Bump to opentelemetry 0.21

### New Features

 - <csr-id-33a511df756b6423a51d77e608bcf8b573cd3f99/> obey http status responses. backoff when 429 or 50x

### Bug Fixes

 - <csr-id-0a301414d24215f314d045bac350f28c1e6b7915/> bump deps to fix issue serializing
 - <csr-id-034a4b2ef4bc4562077656b3264efebb9e3c2d1c/> readd http metrics
   After upgrading opentelemetry we lost our http metrics on our prometheus
   metrics dump due to a different call setup for getting it to work. This
   PR again sets up our configured meter provider to be used for all
   prometheus metrics. Which allows us to have our custom middleware work
   again.
 - <csr-id-361829999135ab59b905e3c456f4c2f74198af13/> use chrono durations and make jitter random 0..5 seconds instead of 0..5000 ms

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 7 commits contributed to the release.
 - 6 days passed between releases.
 - 6 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 5 unique issues were worked on: [#339](https://github.com/Unleash/unleash-edge/issues/339), [#347](https://github.com/Unleash/unleash-edge/issues/347), [#350](https://github.com/Unleash/unleash-edge/issues/350), [#351](https://github.com/Unleash/unleash-edge/issues/351), [#354](https://github.com/Unleash/unleash-edge/issues/354)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#339](https://github.com/Unleash/unleash-edge/issues/339)**
    - Obey http status responses. backoff when 429 or 50x ([`33a511d`](https://github.com/Unleash/unleash-edge/commit/33a511df756b6423a51d77e608bcf8b573cd3f99))
 * **[#347](https://github.com/Unleash/unleash-edge/issues/347)**
    - Update rust crate testcontainers-modules to 0.2.0 ([`71a7a2d`](https://github.com/Unleash/unleash-edge/commit/71a7a2d935fc4f5a6f37e4f84e2ab83935ca5907))
 * **[#350](https://github.com/Unleash/unleash-edge/issues/350)**
    - Use chrono durations and make jitter random 0..5 seconds instead of 0..5000 ms ([`3618299`](https://github.com/Unleash/unleash-edge/commit/361829999135ab59b905e3c456f4c2f74198af13))
 * **[#351](https://github.com/Unleash/unleash-edge/issues/351)**
    - Readd http metrics ([`034a4b2`](https://github.com/Unleash/unleash-edge/commit/034a4b2ef4bc4562077656b3264efebb9e3c2d1c))
 * **[#354](https://github.com/Unleash/unleash-edge/issues/354)**
    - Bump deps to fix issue serializing ([`0a30141`](https://github.com/Unleash/unleash-edge/commit/0a301414d24215f314d045bac350f28c1e6b7915))
 * **Uncategorized**
    - Release unleash-edge v16.0.6 ([`85e1867`](https://github.com/Unleash/unleash-edge/commit/85e186790a0a58f503a9b50a4c0fcd23525c60f9))
    - Bump to opentelemetry 0.21 ([`4106baa`](https://github.com/Unleash/unleash-edge/commit/4106baa990601a3cadabe1d6426d626d2ead8907))
</details>

## 16.0.5 (2023-11-30)

<csr-id-4106baa990601a3cadabe1d6426d626d2ead8907/>

### Chore

 - <csr-id-4106baa990601a3cadabe1d6426d626d2ead8907/> Bump to opentelemetry 0.21

### New Features

 - <csr-id-33a511df756b6423a51d77e608bcf8b573cd3f99/> obey http status responses. backoff when 429 or 50x

### Bug Fixes

 - <csr-id-034a4b2ef4bc4562077656b3264efebb9e3c2d1c/> readd http metrics
   After upgrading opentelemetry we lost our http metrics on our prometheus
   metrics dump due to a different call setup for getting it to work. This
   PR again sets up our configured meter provider to be used for all
   prometheus metrics. Which allows us to have our custom middleware work
   again.
 - <csr-id-361829999135ab59b905e3c456f4c2f74198af13/> use chrono durations and make jitter random 0..5 seconds instead of 0..5000 ms

## 16.0.4 (2023-11-23)

### Bug Fixes

 - <csr-id-23f7001504df92bd9ea31ed79fa2c9a9115c92f8/> Update middleware-etag to 0.3.0
   This includes the fix for returning a NoneBody rather than a Sized(0)
   body, allowing the Compress middleware to just not process our response.
   
   Thanks to @phooijenga for the PR on
   https://github.com/chriswk/actix-middleware-etag

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 9 days passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#342](https://github.com/Unleash/unleash-edge/issues/342)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#342](https://github.com/Unleash/unleash-edge/issues/342)**
    - Update middleware-etag to 0.3.0 ([`23f7001`](https://github.com/Unleash/unleash-edge/commit/23f7001504df92bd9ea31ed79fa2c9a9115c92f8))
 * **Uncategorized**
    - Release unleash-edge v16.0.4 ([`5b88605`](https://github.com/Unleash/unleash-edge/commit/5b88605999e5462c502a09ff7ed2b708ac1410d3))
</details>

## 16.0.3 (2023-11-13)

### Bug Fixes

 - <csr-id-7a9c453e35ba1f93ffbd5f42b969cd79cc98b873/> upgrades yggdrasil to 0.8.0, this fixes an issue with constraints not parsing correctly with free quotes

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 4 days passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#337](https://github.com/Unleash/unleash-edge/issues/337)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#337](https://github.com/Unleash/unleash-edge/issues/337)**
    - Upgrades yggdrasil to 0.8.0, this fixes an issue with constraints not parsing correctly with free quotes ([`7a9c453`](https://github.com/Unleash/unleash-edge/commit/7a9c453e35ba1f93ffbd5f42b969cd79cc98b873))
 * **Uncategorized**
    - Release unleash-edge v16.0.3 ([`dfab30d`](https://github.com/Unleash/unleash-edge/commit/dfab30d18ee4a9ca99def0bd8a6de57eb4625d9c))
</details>

## 16.0.2 (2023-11-09)

### Bug Fixes

 - <csr-id-48e6498171e3f805a643a3ad3200f7be2cb37ce3/> Wildcard token refreshing.
   * fix: Wildcard token refreshing.

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 7 days passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#330](https://github.com/Unleash/unleash-edge/issues/330)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#330](https://github.com/Unleash/unleash-edge/issues/330)**
    - Wildcard token refreshing. ([`48e6498`](https://github.com/Unleash/unleash-edge/commit/48e6498171e3f805a643a3ad3200f7be2cb37ce3))
 * **Uncategorized**
    - Release unleash-edge v16.0.2 ([`0b1380a`](https://github.com/Unleash/unleash-edge/commit/0b1380ada39c65ec181761474338004eaadfd879))
</details>

## 16.0.1 (2023-11-01)

<csr-id-fc5ded0a1398e21d7fe17c1277fcf6af4f5d15e1/>

### Chore

 - <csr-id-fc5ded0a1398e21d7fe17c1277fcf6af4f5d15e1/> prepare for 16.0.1 release

### Bug Fixes

 - <csr-id-5ddd1f53124a55d65bff97f30589cd810bedaaf6/> Handle archived/deleted projects
   Previously, our cache refresh algorithm assumed that the response from
   upstream contained all projects we wanted to do updates to. Wayfair
   correctly reported this breaking their opportunity to archive/delete
   projects, since the cache would still contain deleted projects.
   
   This patch updates Edge to use the projects the token has access to
   decide whether or not to keep the elements in cache.
   
   New flow:
   1. Fetch projects from token
2. Filter out all features belonging to these projects
3. Extend remaining list with update from response
4. Return extended list.

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#324](https://github.com/Unleash/unleash-edge/issues/324)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#324](https://github.com/Unleash/unleash-edge/issues/324)**
    - Handle archived/deleted projects ([`5ddd1f5`](https://github.com/Unleash/unleash-edge/commit/5ddd1f53124a55d65bff97f30589cd810bedaaf6))
 * **Uncategorized**
    - Release unleash-edge v16.0.1 ([`f3c4c62`](https://github.com/Unleash/unleash-edge/commit/f3c4c623138de6fbe1868099098c58526b1587d6))
    - Prepare for 16.0.1 release ([`fc5ded0`](https://github.com/Unleash/unleash-edge/commit/fc5ded0a1398e21d7fe17c1277fcf6af4f5d15e1))
</details>

## 16.0.0 (2023-11-01)

<csr-id-fbd72a8bc8b64b388fc4fe0fc1de61bf5ff59b7f/>

### Chore

 - <csr-id-fbd72a8bc8b64b388fc4fe0fc1de61bf5ff59b7f/> prepare for release

### New Features

 - <csr-id-d27b81d2cdb7a7f7ea049a7e96c7b79bdabdbfe5/> Add support for setting log format at startup

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 1 day passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#322](https://github.com/Unleash/unleash-edge/issues/322)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#322](https://github.com/Unleash/unleash-edge/issues/322)**
    - Add support for setting log format at startup ([`d27b81d`](https://github.com/Unleash/unleash-edge/commit/d27b81d2cdb7a7f7ea049a7e96c7b79bdabdbfe5))
 * **Uncategorized**
    - Release unleash-edge v16.0.0 ([`fe761a2`](https://github.com/Unleash/unleash-edge/commit/fe761a2e10ab2f7ddba50d40afbd06923abc4b39))
    - Prepare for release ([`fbd72a8`](https://github.com/Unleash/unleash-edge/commit/fbd72a8bc8b64b388fc4fe0fc1de61bf5ff59b7f))
</details>

## 15.0.0 (2023-10-30)

<csr-id-3f94d5bf593daa34e671e972789a213206eea92e/>
<csr-id-0bda1cfd8fc157c36a3486acc2d949b2fccc15e4/>
<csr-id-0c6b33a1e011b76fd75618e4ba3cb8a52f7e6c2c/>
<csr-id-1b4277e211e8ece600b482fe49544163bcbf5eb9/>
<csr-id-30958a1cddb86c2abd705b2d4fd36b51037f6879/>

### Chore

 - <csr-id-3f94d5bf593daa34e671e972789a213206eea92e/> bump yggdrasil version
 - <csr-id-0bda1cfd8fc157c36a3486acc2d949b2fccc15e4/> remove dotenv and bump ahash to a non-yanked version
 - <csr-id-0c6b33a1e011b76fd75618e4ba3cb8a52f7e6c2c/> dependencies bump
 - <csr-id-1b4277e211e8ece600b482fe49544163bcbf5eb9/> bump renovate bot suggestions
 - <csr-id-30958a1cddb86c2abd705b2d4fd36b51037f6879/> Start work upgrading to opentelemetry 0.20

### Documentation

 - <csr-id-8279ec0c411586c91b1f7d5214be963a47bff9e0/> Update dependency pointer to 14.0.0

### New Features

 - <csr-id-e77ea1846ae01e9489c048db64c87e53ebdb6fb0/> make edge log bad request information from upstream

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 9 commits contributed to the release.
 - 14 days passed between releases.
 - 7 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 3 unique issues were worked on: [#292](https://github.com/Unleash/unleash-edge/issues/292), [#313](https://github.com/Unleash/unleash-edge/issues/313), [#319](https://github.com/Unleash/unleash-edge/issues/319)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#292](https://github.com/Unleash/unleash-edge/issues/292)**
    - Start work upgrading to opentelemetry 0.20 ([`30958a1`](https://github.com/Unleash/unleash-edge/commit/30958a1cddb86c2abd705b2d4fd36b51037f6879))
 * **[#313](https://github.com/Unleash/unleash-edge/issues/313)**
    - Make edge log bad request information from upstream ([`e77ea18`](https://github.com/Unleash/unleash-edge/commit/e77ea1846ae01e9489c048db64c87e53ebdb6fb0))
 * **[#319](https://github.com/Unleash/unleash-edge/issues/319)**
    - Bump yggdrasil version ([`3f94d5b`](https://github.com/Unleash/unleash-edge/commit/3f94d5bf593daa34e671e972789a213206eea92e))
 * **Uncategorized**
    - Release unleash-edge v15.0.0 ([`6f56a77`](https://github.com/Unleash/unleash-edge/commit/6f56a77013a4aa9cd820076bb7e8b0787394dab6))
    - Update dependency pointer to 14.0.0 ([`8279ec0`](https://github.com/Unleash/unleash-edge/commit/8279ec0c411586c91b1f7d5214be963a47bff9e0))
    - Release unleash-edge v14.0.0 ([`e0cdb5c`](https://github.com/Unleash/unleash-edge/commit/e0cdb5c7de1c4bf43776f750099072df3a36ae1a))
    - Remove dotenv and bump ahash to a non-yanked version ([`0bda1cf`](https://github.com/Unleash/unleash-edge/commit/0bda1cfd8fc157c36a3486acc2d949b2fccc15e4))
    - Dependencies bump ([`0c6b33a`](https://github.com/Unleash/unleash-edge/commit/0c6b33a1e011b76fd75618e4ba3cb8a52f7e6c2c))
    - Bump renovate bot suggestions ([`1b4277e`](https://github.com/Unleash/unleash-edge/commit/1b4277e211e8ece600b482fe49544163bcbf5eb9))
</details>

## 14.0.0 (2023-10-25)

<csr-id-0bda1cfd8fc157c36a3486acc2d949b2fccc15e4/>
<csr-id-0c6b33a1e011b76fd75618e4ba3cb8a52f7e6c2c/>
<csr-id-1b4277e211e8ece600b482fe49544163bcbf5eb9/>
<csr-id-30958a1cddb86c2abd705b2d4fd36b51037f6879/>

### Chore

 - <csr-id-0bda1cfd8fc157c36a3486acc2d949b2fccc15e4/> remove dotenv and bump ahash to a non-yanked version
 - <csr-id-0c6b33a1e011b76fd75618e4ba3cb8a52f7e6c2c/> dependencies bump
 - <csr-id-1b4277e211e8ece600b482fe49544163bcbf5eb9/> bump renovate bot suggestions
 - <csr-id-30958a1cddb86c2abd705b2d4fd36b51037f6879/> Start work upgrading to opentelemetry 0.20

### New Features

 - <csr-id-e77ea1846ae01e9489c048db64c87e53ebdb6fb0/> make edge log bad request information from upstream

## 13.1.0 (2023-10-16)

### New Features

 - <csr-id-db9fb2d6624efae325416152e3b0ebe2816f2153/> add dependent flag capability by bumping yggdrasil
   * feat: add dependent flag capability by bumping yggdrasil
* Update lockfile

### Bug Fixes

 - <csr-id-4f2adb7f5d6c47dfef2a701d8209c454a8822a3e/> move etag middleware to last in chain to ensure it gets added in gziped responses

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 3 days passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#304](https://github.com/Unleash/unleash-edge/issues/304), [#305](https://github.com/Unleash/unleash-edge/issues/305)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#304](https://github.com/Unleash/unleash-edge/issues/304)**
    - Move etag middleware to last in chain to ensure it gets added in gziped responses ([`4f2adb7`](https://github.com/Unleash/unleash-edge/commit/4f2adb7f5d6c47dfef2a701d8209c454a8822a3e))
 * **[#305](https://github.com/Unleash/unleash-edge/issues/305)**
    - Add dependent flag capability by bumping yggdrasil ([`db9fb2d`](https://github.com/Unleash/unleash-edge/commit/db9fb2d6624efae325416152e3b0ebe2816f2153))
 * **Uncategorized**
    - Release unleash-edge v13.1.0 ([`3c733fc`](https://github.com/Unleash/unleash-edge/commit/3c733fc2beb0095b46e7efc9a08d6c87039f894a))
</details>

## 13.0.2 (2023-10-12)

<csr-id-f5541a14cc2ef69a58513d212b9779eff4e4358d/>

### Chore

 - <csr-id-f5541a14cc2ef69a58513d212b9779eff4e4358d/> bump utoipa and unleash types

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 day passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#302](https://github.com/Unleash/unleash-edge/issues/302)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#302](https://github.com/Unleash/unleash-edge/issues/302)**
    - Bump utoipa and unleash types ([`f5541a1`](https://github.com/Unleash/unleash-edge/commit/f5541a14cc2ef69a58513d212b9779eff4e4358d))
 * **Uncategorized**
    - Release unleash-edge v13.0.2 ([`b856507`](https://github.com/Unleash/unleash-edge/commit/b85650717515c2ada85feed389ae8906d368eb00))
</details>

## 13.0.1 (2023-10-10)

### Documentation

 - <csr-id-b8d422a08a0ec00b3ed80ed53e29f694a597afe4/> Add link to feature flags best practices

### Bug Fixes

 - <csr-id-9b6a8906f17438a4332b26a892604359dc3fbaf1/> update Yggdrasil
   Previously, yggdrasil returned a disabled variant if the strategy
   variants representation came back as an empty list instead of null.
   With Yggdrasil 0.6 this is now fixed.
 - <csr-id-90c30e313257a91f640f9d5020cb73004046a97a/> update rust crate reqwest to 0.11.21
 - <csr-id-8d1c294a50c9c939f9365cd9d8e324c0faf512fc/> update rust crate clap to 4.4.6
 - <csr-id-7d3a93b9298304cd4f5ddcf1d51ae6c850fea19e/> update rust crate rustls to 0.21.7

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release.
 - 12 days passed between releases.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 5 unique issues were worked on: [#189](https://github.com/Unleash/unleash-edge/issues/189), [#281](https://github.com/Unleash/unleash-edge/issues/281), [#287](https://github.com/Unleash/unleash-edge/issues/287), [#288](https://github.com/Unleash/unleash-edge/issues/288), [#300](https://github.com/Unleash/unleash-edge/issues/300)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#189](https://github.com/Unleash/unleash-edge/issues/189)**
    - Update rust crate clap to 4.4.6 ([`8d1c294`](https://github.com/Unleash/unleash-edge/commit/8d1c294a50c9c939f9365cd9d8e324c0faf512fc))
 * **[#281](https://github.com/Unleash/unleash-edge/issues/281)**
    - Update rust crate rustls to 0.21.7 ([`7d3a93b`](https://github.com/Unleash/unleash-edge/commit/7d3a93b9298304cd4f5ddcf1d51ae6c850fea19e))
 * **[#287](https://github.com/Unleash/unleash-edge/issues/287)**
    - Add link to feature flags best practices ([`b8d422a`](https://github.com/Unleash/unleash-edge/commit/b8d422a08a0ec00b3ed80ed53e29f694a597afe4))
 * **[#288](https://github.com/Unleash/unleash-edge/issues/288)**
    - Update rust crate reqwest to 0.11.21 ([`90c30e3`](https://github.com/Unleash/unleash-edge/commit/90c30e313257a91f640f9d5020cb73004046a97a))
 * **[#300](https://github.com/Unleash/unleash-edge/issues/300)**
    - Update Yggdrasil ([`9b6a890`](https://github.com/Unleash/unleash-edge/commit/9b6a8906f17438a4332b26a892604359dc3fbaf1))
 * **Uncategorized**
    - Release unleash-edge v13.0.1 ([`cae9a71`](https://github.com/Unleash/unleash-edge/commit/cae9a7173401bbee9952c547c535aab5503550fb))
</details>

## 13.0.0 (2023-09-27)

<csr-id-0aa7b4a2214dd0060ba01402f7f4cb074918d6cb/>
<csr-id-629c4b8dba5aedd0f4e0520ad01d2ec5c85d03c4/>

### Chore

 - <csr-id-0aa7b4a2214dd0060ba01402f7f4cb074918d6cb/> Bump tokio,clap,shadow,serde_json to latest
 - <csr-id-629c4b8dba5aedd0f4e0520ad01d2ec5c85d03c4/> update rust crate actix-http to 3.4.0

### Bug Fixes

 - <csr-id-df73932e769efe9ff42f669580d7fb1de1dd31de/> No longer return wrong feature toggle
 - <csr-id-998314337ca42eab01881b2274e6f8012f429bd3/> archived toggles now removed from edge
   Previously, we made a best effort to keep all known data when an update
   came in. Realizing that the Unleash API currently does not allow for
   partial project tokens. Any refreshed data for a single project, can
   drop the existing project and replace it with the incoming
 - <csr-id-00661c4ac5db8cdb6ba95d992ecd1507a9124677/> use the validated token to calculate flags to return
   * fix(#274): use the validated token to calculate flags to return
* fix(#274): update more uses
* Update server/src/client_api.rs

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release.
 - 9 days passed between releases.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 3 unique issues were worked on: [#254](https://github.com/Unleash/unleash-edge/issues/254), [#275](https://github.com/Unleash/unleash-edge/issues/275), [#283](https://github.com/Unleash/unleash-edge/issues/283)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#254](https://github.com/Unleash/unleash-edge/issues/254)**
    - Update rust crate actix-http to 3.4.0 ([`629c4b8`](https://github.com/Unleash/unleash-edge/commit/629c4b8dba5aedd0f4e0520ad01d2ec5c85d03c4))
 * **[#275](https://github.com/Unleash/unleash-edge/issues/275)**
    - Use the validated token to calculate flags to return ([`00661c4`](https://github.com/Unleash/unleash-edge/commit/00661c4ac5db8cdb6ba95d992ecd1507a9124677))
 * **[#283](https://github.com/Unleash/unleash-edge/issues/283)**
    - No longer return wrong feature toggle ([`df73932`](https://github.com/Unleash/unleash-edge/commit/df73932e769efe9ff42f669580d7fb1de1dd31de))
 * **Uncategorized**
    - Release unleash-edge v13.0.0 ([`9e32cd9`](https://github.com/Unleash/unleash-edge/commit/9e32cd94583795c057dd8e13969f529f1a60fd74))
    - Archived toggles now removed from edge ([`9983143`](https://github.com/Unleash/unleash-edge/commit/998314337ca42eab01881b2274e6f8012f429bd3))
    - Bump tokio,clap,shadow,serde_json to latest ([`0aa7b4a`](https://github.com/Unleash/unleash-edge/commit/0aa7b4a2214dd0060ba01402f7f4cb074918d6cb))
</details>

## 12.0.0 (2023-09-18)

### Documentation

 - <csr-id-16ed8c027bc68941c0b36173d3717668f64fc75f/> updated to reference 12.0.0 version

### New Features

 - <csr-id-62af705c24862315ac279237d7ed23ed9fe9d957/> Added ready subcommand to cli

### Bug Fixes

 - <csr-id-1cc30b700a6b1b6df520f1c100a90a401d7660d4/> Update docs about environment in offline mode
   * fix: Update docs about environment in offline mode

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release.
 - 4 days passed between releases.
 - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#267](https://github.com/Unleash/unleash-edge/issues/267), [#270](https://github.com/Unleash/unleash-edge/issues/270)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#267](https://github.com/Unleash/unleash-edge/issues/267)**
    - Added ready subcommand to cli ([`62af705`](https://github.com/Unleash/unleash-edge/commit/62af705c24862315ac279237d7ed23ed9fe9d957))
 * **[#270](https://github.com/Unleash/unleash-edge/issues/270)**
    - Update docs about environment in offline mode ([`1cc30b7`](https://github.com/Unleash/unleash-edge/commit/1cc30b700a6b1b6df520f1c100a90a401d7660d4))
 * **Uncategorized**
    - Release unleash-edge v12.0.0 ([`24fd449`](https://github.com/Unleash/unleash-edge/commit/24fd449a8e53fcd742ef34b6c5e0abfbda6162a4))
    - Updated to reference 12.0.0 version ([`16ed8c0`](https://github.com/Unleash/unleash-edge/commit/16ed8c027bc68941c0b36173d3717668f64fc75f))
</details>

## 11.0.2 (2023-09-14)

### Bug Fixes

 - <csr-id-ac60f5dd3ac26ecef9befbd79b5a01b07ffb30f3/> allow startup tokens to continue to validate against unleash until they succeed

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#264](https://github.com/Unleash/unleash-edge/issues/264)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#264](https://github.com/Unleash/unleash-edge/issues/264)**
    - Allow startup tokens to continue to validate against unleash until they succeed ([`ac60f5d`](https://github.com/Unleash/unleash-edge/commit/ac60f5dd3ac26ecef9befbd79b5a01b07ffb30f3))
 * **Uncategorized**
    - Release unleash-edge v11.0.2 ([`7715e84`](https://github.com/Unleash/unleash-edge/commit/7715e84b44c414358c8bebcdf77f72951ff47e49))
</details>

## 11.0.1 (2023-09-13)

<csr-id-2d124017e7b282b65ed29adb71dac450961066ea/>

### Chore

 - <csr-id-2d124017e7b282b65ed29adb71dac450961066ea/> moved redis to bottom of edge cli struct

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release unleash-edge v11.0.1 ([`cabbf42`](https://github.com/Unleash/unleash-edge/commit/cabbf4207e505e084a0c6709e56bb694f4ece140))
    - Moved redis to bottom of edge cli struct ([`2d12401`](https://github.com/Unleash/unleash-edge/commit/2d124017e7b282b65ed29adb71dac450961066ea))
</details>

## 11.0.0 (2023-09-13)

<csr-id-77a078d71cd826f07778ebc54153579a32dbaf53/>

### Chore

 - <csr-id-77a078d71cd826f07778ebc54153579a32dbaf53/> Upgrade to actix 4.4 and rustls 0.21

### New Features

 - <csr-id-6da7d98617394b654fb660912af32a892c4b3546/> expose timeouts in CLI args for connecting to Edge and/or upstream
 - <csr-id-022b361e24f6425028ae7f4b518163477305b30d/> more information in error logs
 - <csr-id-3fff36356e5d8557e590b07399a060ad6033bde8/> add /internal-backstage/ready endpoint
 - <csr-id-29a2584cbbf59c7e9089654859f4579f8138ef79/> added token info endpoint

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release.
 - 5 days passed between releases.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 5 unique issues were worked on: [#245](https://github.com/Unleash/unleash-edge/issues/245), [#250](https://github.com/Unleash/unleash-edge/issues/250), [#252](https://github.com/Unleash/unleash-edge/issues/252), [#253](https://github.com/Unleash/unleash-edge/issues/253), [#262](https://github.com/Unleash/unleash-edge/issues/262)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#245](https://github.com/Unleash/unleash-edge/issues/245)**
    - Upgrade to actix 4.4 and rustls 0.21 ([`77a078d`](https://github.com/Unleash/unleash-edge/commit/77a078d71cd826f07778ebc54153579a32dbaf53))
 * **[#250](https://github.com/Unleash/unleash-edge/issues/250)**
    - Added token info endpoint ([`29a2584`](https://github.com/Unleash/unleash-edge/commit/29a2584cbbf59c7e9089654859f4579f8138ef79))
 * **[#252](https://github.com/Unleash/unleash-edge/issues/252)**
    - Add /internal-backstage/ready endpoint ([`3fff363`](https://github.com/Unleash/unleash-edge/commit/3fff36356e5d8557e590b07399a060ad6033bde8))
 * **[#253](https://github.com/Unleash/unleash-edge/issues/253)**
    - More information in error logs ([`022b361`](https://github.com/Unleash/unleash-edge/commit/022b361e24f6425028ae7f4b518163477305b30d))
 * **[#262](https://github.com/Unleash/unleash-edge/issues/262)**
    - Expose timeouts in CLI args for connecting to Edge and/or upstream ([`6da7d98`](https://github.com/Unleash/unleash-edge/commit/6da7d98617394b654fb660912af32a892c4b3546))
 * **Uncategorized**
    - Release unleash-edge v11.0.0 ([`dfdbf99`](https://github.com/Unleash/unleash-edge/commit/dfdbf99708161f23cbf0f849ba781cc833ab8fcb))
</details>

## 10.0.0 (2023-09-08)

### New Features

 - <csr-id-510073784335e8d8ec8f8e4cc988bc2aad176c8e/> add hot reloading and an optional, simpler file format to offline mode

### Bug Fixes

 - <csr-id-2025d5114d9e47a5b820d065642d3df697223f38/> make fe tokens respect token cache

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 15 days passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#241](https://github.com/Unleash/unleash-edge/issues/241), [#242](https://github.com/Unleash/unleash-edge/issues/242)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#241](https://github.com/Unleash/unleash-edge/issues/241)**
    - Make fe tokens respect token cache ([`2025d51`](https://github.com/Unleash/unleash-edge/commit/2025d5114d9e47a5b820d065642d3df697223f38))
 * **[#242](https://github.com/Unleash/unleash-edge/issues/242)**
    - Add hot reloading and an optional, simpler file format to offline mode ([`5100737`](https://github.com/Unleash/unleash-edge/commit/510073784335e8d8ec8f8e4cc988bc2aad176c8e))
 * **Uncategorized**
    - Release unleash-edge v10.0.0 ([`e76da04`](https://github.com/Unleash/unleash-edge/commit/e76da0414d2b37518ce218baa7fae51424fdeaa6))
</details>

## 9.0.0 (2023-08-23)

<csr-id-a6f1829102c671ebbab15f37502bc40f21616da6/>

### Chore

 - <csr-id-a6f1829102c671ebbab15f37502bc40f21616da6/> remove experimental post features endpoint

### New Features

 - <csr-id-af6c3a2079134acca6ae2739bd28aad61cb7f0ae/> add --disable-all-endpoint flag for disabling proxy /all endpoint

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 26 days passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#237](https://github.com/Unleash/unleash-edge/issues/237), [#238](https://github.com/Unleash/unleash-edge/issues/238)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#237](https://github.com/Unleash/unleash-edge/issues/237)**
    - Add --disable-all-endpoint flag for disabling proxy /all endpoint ([`af6c3a2`](https://github.com/Unleash/unleash-edge/commit/af6c3a2079134acca6ae2739bd28aad61cb7f0ae))
 * **[#238](https://github.com/Unleash/unleash-edge/issues/238)**
    - Remove experimental post features endpoint ([`a6f1829`](https://github.com/Unleash/unleash-edge/commit/a6f1829102c671ebbab15f37502bc40f21616da6))
 * **Uncategorized**
    - Release unleash-edge v9.0.0 ([`40a6a38`](https://github.com/Unleash/unleash-edge/commit/40a6a38a51a8422ca2dd593bb56a11f4598e350e))
</details>

## 8.1.0 (2023-07-27)

<csr-id-9d2271827f7c895acea280463011e638e3dd7dd4/>
<csr-id-d0b0b66d8c608ea742137c7647317fe876527ec9/>

### Chore

 - <csr-id-9d2271827f7c895acea280463011e638e3dd7dd4/> bumps yggdrasil and unleash-types to allow the usage of strategy variants
 - <csr-id-d0b0b66d8c608ea742137c7647317fe876527ec9/> updated README to point to newest edge docker container

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 14 days passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#231](https://github.com/Unleash/unleash-edge/issues/231)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#231](https://github.com/Unleash/unleash-edge/issues/231)**
    - Bumps yggdrasil and unleash-types to allow the usage of strategy variants ([`9d22718`](https://github.com/Unleash/unleash-edge/commit/9d2271827f7c895acea280463011e638e3dd7dd4))
 * **Uncategorized**
    - Release unleash-edge v8.1.0 ([`db512f8`](https://github.com/Unleash/unleash-edge/commit/db512f81b8d2bb355acd921ac3f046b7204e351d))
    - Updated README to point to newest edge docker container ([`d0b0b66`](https://github.com/Unleash/unleash-edge/commit/d0b0b66d8c608ea742137c7647317fe876527ec9))
</details>

## 8.0.1 (2023-07-13)

<csr-id-263d56c6746e141610e54cabb3a8861614ee7e0a/>

### Chore

 - <csr-id-263d56c6746e141610e54cabb3a8861614ee7e0a/> Prepare for release of 8.0.1

### New Features

 - <csr-id-5d63562e65225139c1fb67c715181896b3f982f8/> added timing for client feature fetch operations

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 14 days passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#228](https://github.com/Unleash/unleash-edge/issues/228)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#228](https://github.com/Unleash/unleash-edge/issues/228)**
    - Added timing for client feature fetch operations ([`5d63562`](https://github.com/Unleash/unleash-edge/commit/5d63562e65225139c1fb67c715181896b3f982f8))
 * **Uncategorized**
    - Release unleash-edge v8.0.1 ([`74c6801`](https://github.com/Unleash/unleash-edge/commit/74c68016f3cac5d78bf30dd593083327e32ce3d1))
    - Prepare for release of 8.0.1 ([`263d56c`](https://github.com/Unleash/unleash-edge/commit/263d56c6746e141610e54cabb3a8861614ee7e0a))
</details>

## 8.0.0 (2023-06-28)

<csr-id-a85c2f3911b5cffb6ccee78a74ffa4ece61cebc8/>
<csr-id-9dd9930d22cf259a20b8168d203c3919df019921/>

### Chore

 - <csr-id-a85c2f3911b5cffb6ccee78a74ffa4ece61cebc8/> reduce public api for a number of functions/structs that should never have been public anyway
 - <csr-id-9dd9930d22cf259a20b8168d203c3919df019921/> bump unleash-types to no longer serialize nulls

### Bug Fixes

 - <csr-id-61306041de7f58584ee2ab8d310b12a00f8eeb87/> log levels were too high

### Performance

 - <csr-id-4c03cba94693fe5ede4b7d16fb8ee00ec2d4e572/> improve memory usage during request lifecycle

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release.
 - 5 days passed between releases.
 - 4 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 3 unique issues were worked on: [#218](https://github.com/Unleash/unleash-edge/issues/218), [#220](https://github.com/Unleash/unleash-edge/issues/220), [#221](https://github.com/Unleash/unleash-edge/issues/221)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#218](https://github.com/Unleash/unleash-edge/issues/218)**
    - Perf/remove unnecessary clone ([`5808004`](https://github.com/Unleash/unleash-edge/commit/5808004aa4725bb8debd5d9150177c910b63d733))
 * **[#220](https://github.com/Unleash/unleash-edge/issues/220)**
    - Improve memory usage during request lifecycle ([`4c03cba`](https://github.com/Unleash/unleash-edge/commit/4c03cba94693fe5ede4b7d16fb8ee00ec2d4e572))
 * **[#221](https://github.com/Unleash/unleash-edge/issues/221)**
    - Reduce public api for a number of functions/structs that should never have been public anyway ([`a85c2f3`](https://github.com/Unleash/unleash-edge/commit/a85c2f3911b5cffb6ccee78a74ffa4ece61cebc8))
 * **Uncategorized**
    - Release unleash-edge v8.0.0 ([`16a34df`](https://github.com/Unleash/unleash-edge/commit/16a34dfd27b4e85abf44d440333b5fb0477d2aa3))
    - Bump unleash-types to no longer serialize nulls ([`9dd9930`](https://github.com/Unleash/unleash-edge/commit/9dd9930d22cf259a20b8168d203c3919df019921))
    - Log levels were too high ([`6130604`](https://github.com/Unleash/unleash-edge/commit/61306041de7f58584ee2ab8d310b12a00f8eeb87))
</details>

## 7.0.1 (2023-06-23)

<csr-id-0920dad3c42cf8284cf21899a8a5f392271acca9/>

### Chore

 - <csr-id-0920dad3c42cf8284cf21899a8a5f392271acca9/> allows resolving a single toggle to do that instead of iterating the whole hashmap

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 10 days passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#215](https://github.com/Unleash/unleash-edge/issues/215)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#215](https://github.com/Unleash/unleash-edge/issues/215)**
    - Allows resolving a single toggle to do that instead of iterating the whole hashmap ([`0920dad`](https://github.com/Unleash/unleash-edge/commit/0920dad3c42cf8284cf21899a8a5f392271acca9))
 * **Uncategorized**
    - Release unleash-edge v7.0.1 ([`92c882e`](https://github.com/Unleash/unleash-edge/commit/92c882e71d2a7747b9b10913757d8767b83241f0))
</details>

## 7.0.0 (2023-06-12)

<csr-id-21178ab0934176e7c1aac9a9093253b806acd399/>

### Chore

 - <csr-id-21178ab0934176e7c1aac9a9093253b806acd399/> remove unneeded import

### New Features

<csr-id-38b36e8af9e1560bc7ece1f644a0349257bf1a36/>
<csr-id-baecc67a5f81fa1c76798c320c65a5e6dbd5b061/>

 - <csr-id-2fcfcc54cc61ae277c8b1b66fe9d8e619ab47494/> trust-proxy - resolving peer ip for context
   * Added trust proxy for enriching context

### Bug Fixes

 - <csr-id-6c3942ef330bc6bf04344193d0ab3be9a1a1e3ed/> remove SA token from app_data, it's already added to the FeatureRefresher
 - <csr-id-d6da27a77551ee22d4e406deb6a3351ad013cf1e/> Don't log the SA token on startup

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 7 commits contributed to the release.
 - 5 days passed between releases.
 - 6 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 3 unique issues were worked on: [#206](https://github.com/Unleash/unleash-edge/issues/206), [#208](https://github.com/Unleash/unleash-edge/issues/208), [#210](https://github.com/Unleash/unleash-edge/issues/210)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#206](https://github.com/Unleash/unleash-edge/issues/206)**
    - Use service account to create client tokens ([`baecc67`](https://github.com/Unleash/unleash-edge/commit/baecc67a5f81fa1c76798c320c65a5e6dbd5b061))
 * **[#208](https://github.com/Unleash/unleash-edge/issues/208)**
    - You can now use tcp or tls as schemes for Redis ([`38b36e8`](https://github.com/Unleash/unleash-edge/commit/38b36e8af9e1560bc7ece1f644a0349257bf1a36))
 * **[#210](https://github.com/Unleash/unleash-edge/issues/210)**
    - Remove unneeded import ([`21178ab`](https://github.com/Unleash/unleash-edge/commit/21178ab0934176e7c1aac9a9093253b806acd399))
 * **Uncategorized**
    - Release unleash-edge v7.0.0 ([`e6b53a0`](https://github.com/Unleash/unleash-edge/commit/e6b53a0a0e61b98924315f86bc1f4d4d3ea9c317))
    - Trust-proxy - resolving peer ip for context ([`2fcfcc5`](https://github.com/Unleash/unleash-edge/commit/2fcfcc54cc61ae277c8b1b66fe9d8e619ab47494))
    - Remove SA token from app_data, it's already added to the FeatureRefresher ([`6c3942e`](https://github.com/Unleash/unleash-edge/commit/6c3942ef330bc6bf04344193d0ab3be9a1a1e3ed))
    - Don't log the SA token on startup ([`d6da27a`](https://github.com/Unleash/unleash-edge/commit/d6da27a77551ee22d4e406deb6a3351ad013cf1e))
</details>

## 6.0.0 (2023-06-07)

<csr-id-79613201c810435b8d01696af3864f065c5f0a9b/>
<csr-id-60296f3f8ddfdd5b187345f776d65fae58870cf2/>

### Chore

 - <csr-id-79613201c810435b8d01696af3864f065c5f0a9b/> update README for new release
 - <csr-id-60296f3f8ddfdd5b187345f776d65fae58870cf2/> bump versions

### Documentation

 - <csr-id-786215241cca06b0bbb759633bd40c00401cc19e/> Document that tokens cli arg allows multiple comma-separated values

### New Features

 - <csr-id-107467468f6f5875fa8ed4db456909a6bb17b89d/> add multiple env variables for configuring Redis
   * docs: Added auto generation of markdown help

### Bug Fixes

 - <csr-id-6fe165a6249290e043d21232059e4153436b4fde/> update rust crate chrono to 0.4.26
 - <csr-id-46fd89353a87e6621d8d938dee7023e001ed52b0/> update rust crate unleash-yggdrasil to 0.5.7

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 8 commits contributed to the release.
 - 5 days passed between releases.
 - 6 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 6 unique issues were worked on: [#194](https://github.com/Unleash/unleash-edge/issues/194), [#201](https://github.com/Unleash/unleash-edge/issues/201), [#202](https://github.com/Unleash/unleash-edge/issues/202), [#203](https://github.com/Unleash/unleash-edge/issues/203), [#204](https://github.com/Unleash/unleash-edge/issues/204), [#205](https://github.com/Unleash/unleash-edge/issues/205)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#194](https://github.com/Unleash/unleash-edge/issues/194)**
    - Update rust crate chrono to 0.4.26 ([`6fe165a`](https://github.com/Unleash/unleash-edge/commit/6fe165a6249290e043d21232059e4153436b4fde))
 * **[#201](https://github.com/Unleash/unleash-edge/issues/201)**
    - Update rust crate unleash-yggdrasil to 0.5.7 ([`46fd893`](https://github.com/Unleash/unleash-edge/commit/46fd89353a87e6621d8d938dee7023e001ed52b0))
 * **[#202](https://github.com/Unleash/unleash-edge/issues/202)**
    - Add multiple env variables for configuring Redis ([`1074674`](https://github.com/Unleash/unleash-edge/commit/107467468f6f5875fa8ed4db456909a6bb17b89d))
 * **[#203](https://github.com/Unleash/unleash-edge/issues/203)**
    - Bump versions ([`60296f3`](https://github.com/Unleash/unleash-edge/commit/60296f3f8ddfdd5b187345f776d65fae58870cf2))
 * **[#204](https://github.com/Unleash/unleash-edge/issues/204)**
    - Task/healthcheck subcommand ([`5253f5e`](https://github.com/Unleash/unleash-edge/commit/5253f5e62704432b1cdaf46a95c9af78b7d5cc96))
 * **[#205](https://github.com/Unleash/unleash-edge/issues/205)**
    - Document that tokens cli arg allows multiple comma-separated values ([`7862152`](https://github.com/Unleash/unleash-edge/commit/786215241cca06b0bbb759633bd40c00401cc19e))
 * **Uncategorized**
    - Release unleash-edge v6.0.0 ([`3ab7074`](https://github.com/Unleash/unleash-edge/commit/3ab70749ecbe19aa0a61b50090eca3af80f64e91))
    - Update README for new release ([`7961320`](https://github.com/Unleash/unleash-edge/commit/79613201c810435b8d01696af3864f065c5f0a9b))
</details>

## 5.0.0 (2023-06-01)

### New Features

 - <csr-id-4c187c622a78b7a91b8b3d868e51c51ddd0777c1/> makes a post to api/client/features possible by setting a cli arg

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 2 days passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#197](https://github.com/Unleash/unleash-edge/issues/197)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#197](https://github.com/Unleash/unleash-edge/issues/197)**
    - Makes a post to api/client/features possible by setting a cli arg ([`4c187c6`](https://github.com/Unleash/unleash-edge/commit/4c187c622a78b7a91b8b3d868e51c51ddd0777c1))
 * **Uncategorized**
    - Release unleash-edge v5.0.0 ([`cad3589`](https://github.com/Unleash/unleash-edge/commit/cad3589b28c74f1cb753acea2243aedeb1445268))
</details>

## 4.1.1 (2023-05-30)

### Bug Fixes

 - <csr-id-d60702d1693d4723a22443245ffe02e0771cae82/> pulls in fixes from Unleash Types so that Segments correctly update

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 6 days passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#196](https://github.com/Unleash/unleash-edge/issues/196)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#196](https://github.com/Unleash/unleash-edge/issues/196)**
    - Pulls in fixes from Unleash Types so that Segments correctly update ([`d60702d`](https://github.com/Unleash/unleash-edge/commit/d60702d1693d4723a22443245ffe02e0771cae82))
 * **Uncategorized**
    - Release unleash-edge v4.1.1 ([`2464099`](https://github.com/Unleash/unleash-edge/commit/2464099f18c8e5d9c82b377137a1e7679556fdae))
</details>

## 4.1.0 (2023-05-23)

### New Features

 - <csr-id-108005e4160ee70463d3b7434855426a874407dc/> add base uri path to server
   * feat: add base uri path to server
* docs: update docs to include new arg
* test: add base_path integration test
* test: add another endpoint that assumes 403
* test: use offline mode instead

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 5 days passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#191](https://github.com/Unleash/unleash-edge/issues/191)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#191](https://github.com/Unleash/unleash-edge/issues/191)**
    - Add base uri path to server ([`108005e`](https://github.com/Unleash/unleash-edge/commit/108005e4160ee70463d3b7434855426a874407dc))
 * **Uncategorized**
    - Release unleash-edge v4.1.0 ([`36e538b`](https://github.com/Unleash/unleash-edge/commit/36e538b3594da91047a0626b5811a869c75328b8))
</details>

## 4.0.3 (2023-05-18)

### Bug Fixes

 - <csr-id-808db80fcc68606f540a0339acb8cd757934ecdb/> allow multiple client tokens at startup

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#188](https://github.com/Unleash/unleash-edge/issues/188)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#188](https://github.com/Unleash/unleash-edge/issues/188)**
    - Allow multiple client tokens at startup ([`808db80`](https://github.com/Unleash/unleash-edge/commit/808db80fcc68606f540a0339acb8cd757934ecdb))
 * **Uncategorized**
    - Release unleash-edge v4.0.3 ([`fee159c`](https://github.com/Unleash/unleash-edge/commit/fee159c0bdf5dc867b704b7a2bdc2c46fbdcf1d7))
</details>

## 4.0.2 (2023-05-17)

<csr-id-447baab59e4488565e1f4b28613e9a60c2ef4af7/>

### Chore

 - <csr-id-447baab59e4488565e1f4b28613e9a60c2ef4af7/> bump yggdrasil to pull through fix for rollout not working with random

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 4 days passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#187](https://github.com/Unleash/unleash-edge/issues/187)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#187](https://github.com/Unleash/unleash-edge/issues/187)**
    - Bump yggdrasil to pull through fix for rollout not working with random ([`447baab`](https://github.com/Unleash/unleash-edge/commit/447baab59e4488565e1f4b28613e9a60c2ef4af7))
 * **Uncategorized**
    - Release unleash-edge v4.0.2 ([`940bb5b`](https://github.com/Unleash/unleash-edge/commit/940bb5b7376aed092922df87c40ff8198504d4a6))
</details>

## 4.0.1 (2023-05-12)

<csr-id-4984c3eb039837f0bdfa85f94e8129a03b2675a4/>
<csr-id-5b821f831db0dd6d4e4c5affd36624c0929268af/>

### Chore

 - <csr-id-4984c3eb039837f0bdfa85f94e8129a03b2675a4/> allow output from bad requests to respond with the error rather than just the status code
 - <csr-id-5b821f831db0dd6d4e4c5affd36624c0929268af/> output logs for any response from feature query in debug output

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 1 day passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#184](https://github.com/Unleash/unleash-edge/issues/184), [#185](https://github.com/Unleash/unleash-edge/issues/185)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#184](https://github.com/Unleash/unleash-edge/issues/184)**
    - Allow output from bad requests to respond with the error rather than just the status code ([`4984c3e`](https://github.com/Unleash/unleash-edge/commit/4984c3eb039837f0bdfa85f94e8129a03b2675a4))
 * **[#185](https://github.com/Unleash/unleash-edge/issues/185)**
    - Output logs for any response from feature query in debug output ([`5b821f8`](https://github.com/Unleash/unleash-edge/commit/5b821f831db0dd6d4e4c5affd36624c0929268af))
 * **Uncategorized**
    - Release unleash-edge v4.0.1 ([`c28ca3f`](https://github.com/Unleash/unleash-edge/commit/c28ca3f2a26557da6431c1a9f56941ec99388342))
</details>

## 4.0.0 (2023-05-11)

<csr-id-b5930bcc55d9e241b1fe29002d5cfb8f9191407f/>

### New Features

 - <csr-id-72656280a07c2d2c7729f9f25e9894f22f276ae5/> Add more visible info and warn logging for http errors

### Bug Fixes

 - <csr-id-bb09da9d9f2545a9ab8efda93a4ec270739f07ae/> update rust crate clap to 4.2.7

### Other

 - <csr-id-b5930bcc55d9e241b1fe29002d5cfb8f9191407f/> Prepare for 4.0.0 release

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release.
 - 6 days passed between releases.
 - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#171](https://github.com/Unleash/unleash-edge/issues/171), [#182](https://github.com/Unleash/unleash-edge/issues/182)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#171](https://github.com/Unleash/unleash-edge/issues/171)**
    - Update rust crate clap to 4.2.7 ([`bb09da9`](https://github.com/Unleash/unleash-edge/commit/bb09da9d9f2545a9ab8efda93a4ec270739f07ae))
 * **[#182](https://github.com/Unleash/unleash-edge/issues/182)**
    - Add more visible info and warn logging for http errors ([`7265628`](https://github.com/Unleash/unleash-edge/commit/72656280a07c2d2c7729f9f25e9894f22f276ae5))
 * **Uncategorized**
    - Release unleash-edge v4.0.0 ([`7d43885`](https://github.com/Unleash/unleash-edge/commit/7d438852ba3ea4f3a1fbef2359a5398a8aa6da22))
    - Prepare for 4.0.0 release ([`b5930bc`](https://github.com/Unleash/unleash-edge/commit/b5930bcc55d9e241b1fe29002d5cfb8f9191407f))
</details>

## 3.0.0 (2023-05-05)

### Documentation

 - <csr-id-effe175168bc59fddd04284a4217edcaddb0a714/> Prepare README for 3.0

### New Features

 - <csr-id-9f01316d6ac029d8b5b25140f54827a9627026e7/> Client TLS Identification

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 2 days passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#176](https://github.com/Unleash/unleash-edge/issues/176)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#176](https://github.com/Unleash/unleash-edge/issues/176)**
    - Client TLS Identification ([`9f01316`](https://github.com/Unleash/unleash-edge/commit/9f01316d6ac029d8b5b25140f54827a9627026e7))
 * **Uncategorized**
    - Release unleash-edge v3.0.0 ([`a6779cd`](https://github.com/Unleash/unleash-edge/commit/a6779cdb17f676ff278c3182e66284c3800955df))
    - Prepare README for 3.0 ([`effe175`](https://github.com/Unleash/unleash-edge/commit/effe175168bc59fddd04284a4217edcaddb0a714))
</details>

## 2.0.2 (2023-05-02)

<csr-id-dde64c8993e0c7003c544a2a68a52b1867b55ed2/>

### Bug Fixes

 - <csr-id-dfb191093063d676323d840614cd3e381cb4aa8a/> Handle both upper and lowercase of apitokentype.
   Unleash has suddenly started returning token type with uppercase.
   This PR makes us handle both UPPER and lower case for token type.
   
   The real fix would be for Unleash to obey its own contract with
   lowercase for token types, but this fix makes us more tolerant to
   mistakes in Unleash code.

### Other

 - <csr-id-dde64c8993e0c7003c544a2a68a52b1867b55ed2/> prepare for release

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 11 days passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#174](https://github.com/Unleash/unleash-edge/issues/174)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#174](https://github.com/Unleash/unleash-edge/issues/174)**
    - Handle both upper and lowercase of apitokentype. ([`dfb1910`](https://github.com/Unleash/unleash-edge/commit/dfb191093063d676323d840614cd3e381cb4aa8a))
 * **Uncategorized**
    - Release unleash-edge v2.0.2 ([`357b407`](https://github.com/Unleash/unleash-edge/commit/357b4070d53124f8fc06627c30ae4e43dd9f9594))
    - Prepare for release ([`dde64c8`](https://github.com/Unleash/unleash-edge/commit/dde64c8993e0c7003c544a2a68a52b1867b55ed2))
</details>

## 2.0.1 (2023-04-20)

### Bug Fixes

 - <csr-id-208ba30133348f8cb3ae4303415ac9c1484f03c5/> Use split_once.
   We had forgotten that `:` is a valid part of a header value, so
   splitting on `'` ended up splitting into too many parts and thus failing
   the parser. This PR changes to use split_once, which splits on first
   occurrence. Since Header Names are not allowed to contains `:` this will
   be fine
 - <csr-id-007a061b6c0eaa52de3eee81e8cadc0530562751/> update rust crate clap to 4.2.4

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release.
 - 1 day passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#140](https://github.com/Unleash/unleash-edge/issues/140), [#164](https://github.com/Unleash/unleash-edge/issues/164)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#140](https://github.com/Unleash/unleash-edge/issues/140)**
    - Update rust crate clap to 4.2.4 ([`007a061`](https://github.com/Unleash/unleash-edge/commit/007a061b6c0eaa52de3eee81e8cadc0530562751))
 * **[#164](https://github.com/Unleash/unleash-edge/issues/164)**
    - Use split_once. ([`208ba30`](https://github.com/Unleash/unleash-edge/commit/208ba30133348f8cb3ae4303415ac9c1484f03c5))
 * **Uncategorized**
    - Release unleash-edge v2.0.1 ([`6c7316b`](https://github.com/Unleash/unleash-edge/commit/6c7316b79f335b3fbbfb156a2ed00bbf95b0018f))
    - Update dependency status link ([`fc19857`](https://github.com/Unleash/unleash-edge/commit/fc1985758eb32885a2c970e7707623eea7bcabcd))
</details>

## 2.0.0 (2023-04-19)

### Bug Fixes

 - <csr-id-33d412a7fc304fb55203c8132ee59566e05b9874/> Building context parameters using map syntax

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 day passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#160](https://github.com/Unleash/unleash-edge/issues/160)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#160](https://github.com/Unleash/unleash-edge/issues/160)**
    - Building context parameters using map syntax ([`33d412a`](https://github.com/Unleash/unleash-edge/commit/33d412a7fc304fb55203c8132ee59566e05b9874))
 * **Uncategorized**
    - Release unleash-edge v2.0.0 ([`7438b56`](https://github.com/Unleash/unleash-edge/commit/7438b567dca06e359bd9eb35dbb7ae9c3d6e5c1b))
</details>

## 1.4.0 (2023-04-17)

### New Features

 - <csr-id-b74027319c87e078b042a28051e52e37dab956a9/> allow cli option to disable ssl verification

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 2 days passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#157](https://github.com/Unleash/unleash-edge/issues/157)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#157](https://github.com/Unleash/unleash-edge/issues/157)**
    - Allow cli option to disable ssl verification ([`b740273`](https://github.com/Unleash/unleash-edge/commit/b74027319c87e078b042a28051e52e37dab956a9))
 * **Uncategorized**
    - Release unleash-edge v1.4.0 ([`0847f7d`](https://github.com/Unleash/unleash-edge/commit/0847f7da0f4a761858b706300ee6048982270a7a))
</details>

## 1.3.1 (2023-04-14)

### Bug Fixes

 - <csr-id-a4930e6897b30e2b00e118a078d45e953190cfc6/> Fixes incorrect parsing of extra arguments.
   Currently we do not parse extra parameters into the properties holder
   for the context. This PR updates to make sure that overflows (properties
   we haven't explicitly defined) get parsed into the properties map

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 day passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#156](https://github.com/Unleash/unleash-edge/issues/156)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#156](https://github.com/Unleash/unleash-edge/issues/156)**
    - Fixes incorrect parsing of extra arguments. ([`a4930e6`](https://github.com/Unleash/unleash-edge/commit/a4930e6897b30e2b00e118a078d45e953190cfc6))
 * **Uncategorized**
    - Release unleash-edge v1.3.1 ([`845aa17`](https://github.com/Unleash/unleash-edge/commit/845aa177220a6ce61091c8861d1342e69f680ace))
</details>

## 1.3.0 (2023-04-13)

<csr-id-9a651efc0393cebeb67e639aa612434606b4c9ed/>
<csr-id-8bba7f47b2204d63409b0220ada78edb6bc156de/>

### Chore

 - <csr-id-9a651efc0393cebeb67e639aa612434606b4c9ed/> bump dependency status link

### Chore

 - <csr-id-8bba7f47b2204d63409b0220ada78edb6bc156de/> added changelog for 1.3.0 release

### Documentation

 - <csr-id-625b0760c66574f94a098885ff94735330a2bb2d/> updated README in server subfolder

### New Features

 - <csr-id-c417cab5698ac1f45e8f640012b06b655abb900d/> Added single feature evaluation endpoint
   For now, we resolve all toggles, waiting for feature improvement in
   Yggdrasil that allows us to query single ResolvedToggle by name
 - <csr-id-bde2d013b9b0e664ce087b0f6d6b979e11454414/> Added support for --custom-client-headers (CUSTOM_CLIENT_HEADERS)

### Bug Fixes

 - <csr-id-d1052f7f913713c488d3cd038709a872cb493c71/> update rust crate serde_json to 1.0.96

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 7 commits contributed to the release.
 - 1 day passed between releases.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#151](https://github.com/Unleash/unleash-edge/issues/151), [#154](https://github.com/Unleash/unleash-edge/issues/154)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#151](https://github.com/Unleash/unleash-edge/issues/151)**
    - Added single feature evaluation endpoint ([`c417cab`](https://github.com/Unleash/unleash-edge/commit/c417cab5698ac1f45e8f640012b06b655abb900d))
 * **[#154](https://github.com/Unleash/unleash-edge/issues/154)**
    - Update rust crate serde_json to 1.0.96 ([`d1052f7`](https://github.com/Unleash/unleash-edge/commit/d1052f7f913713c488d3cd038709a872cb493c71))
 * **Uncategorized**
    - Release unleash-edge v1.3.0 ([`83a7b97`](https://github.com/Unleash/unleash-edge/commit/83a7b97fe9ddff1871fe8563a96025a63fc91f4d))
    - Added changelog for 1.3.0 release ([`8bba7f4`](https://github.com/Unleash/unleash-edge/commit/8bba7f47b2204d63409b0220ada78edb6bc156de))
    - Updated README in server subfolder ([`625b076`](https://github.com/Unleash/unleash-edge/commit/625b0760c66574f94a098885ff94735330a2bb2d))
    - Bump dependency status link ([`9a651ef`](https://github.com/Unleash/unleash-edge/commit/9a651efc0393cebeb67e639aa612434606b4c9ed))
    - * feat: Add custom headers for clients ([`bde2d01`](https://github.com/Unleash/unleash-edge/commit/bde2d013b9b0e664ce087b0f6d6b979e11454414))
</details>

## v1.2.0 (2023-04-11)

### Documentation

 - <csr-id-26805bb55b25edc4cc2e41f525c7eee71df4cd54/> update dependency links

### New Features

 - <csr-id-ebd63005c3ff2f73da7cb35872bd132d1c953dd7/> add namePrefix filtering support
 - <csr-id-28fff02aaf3bda6305186a323b4a507356bfd6db/> add metrics endpoints for frontend

### Bug Fixes

 - <csr-id-48994233364c9fa7af8dc331dede2da38913922e/> update rust-futures monorepo to 0.3.28

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 5 commits contributed to the release.
 - 13 days passed between releases.
 - 4 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 3 unique issues were worked on: [#141](https://github.com/Unleash/unleash-edge/issues/141), [#147](https://github.com/Unleash/unleash-edge/issues/147), [#149](https://github.com/Unleash/unleash-edge/issues/149)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#141](https://github.com/Unleash/unleash-edge/issues/141)**
    - Update rust-futures monorepo to 0.3.28 ([`4899423`](https://github.com/Unleash/unleash-edge/commit/48994233364c9fa7af8dc331dede2da38913922e))
 * **[#147](https://github.com/Unleash/unleash-edge/issues/147)**
    - Add metrics endpoints for frontend ([`28fff02`](https://github.com/Unleash/unleash-edge/commit/28fff02aaf3bda6305186a323b4a507356bfd6db))
 * **[#149](https://github.com/Unleash/unleash-edge/issues/149)**
    - Add namePrefix filtering support ([`ebd6300`](https://github.com/Unleash/unleash-edge/commit/ebd63005c3ff2f73da7cb35872bd132d1c953dd7))
 * **Uncategorized**
    - Release unleash-edge v1.2.0 ([`ab51228`](https://github.com/Unleash/unleash-edge/commit/ab5122837f0476d055eaf007a55c13a715b1fdb3))
    - Update dependency links ([`26805bb`](https://github.com/Unleash/unleash-edge/commit/26805bb55b25edc4cc2e41f525c7eee71df4cd54))
</details>

## v1.1.0 (2023-03-29)

### New Features

 - <csr-id-5a7040c3c5787451e31dd3e804946c321ad6805a/> Add client feature endpoint
   Our client api in Unleash server also supports querying single features
   by name in path. This PR adds the necessary endpoint to support this.

### Bug Fixes

 - <csr-id-8e4df8d5b6d8800ad644cac0c6cda7c19386426f/> update rust crate clap to 4.2.0

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#132](https://github.com/Unleash/unleash-edge/issues/132), [#138](https://github.com/Unleash/unleash-edge/issues/138)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#132](https://github.com/Unleash/unleash-edge/issues/132)**
    - Update rust crate clap to 4.2.0 ([`8e4df8d`](https://github.com/Unleash/unleash-edge/commit/8e4df8d5b6d8800ad644cac0c6cda7c19386426f))
 * **[#138](https://github.com/Unleash/unleash-edge/issues/138)**
    - Add client feature endpoint ([`5a7040c`](https://github.com/Unleash/unleash-edge/commit/5a7040c3c5787451e31dd3e804946c321ad6805a))
 * **Uncategorized**
    - Release unleash-edge v1.1.0 ([`bcde480`](https://github.com/Unleash/unleash-edge/commit/bcde48011570099463a493f9dbd66162da9b9992))
</details>

## v1.0.2 (2023-03-28)

<csr-id-1ab5962ebc10c8a5f14492fcd28b46e541d2992d/>
<csr-id-b97681b8e9d40afd35b629f0d9b4757c66a637a8/>

### Chore

 - <csr-id-1ab5962ebc10c8a5f14492fcd28b46e541d2992d/> use fewer clones to reduce allocation

### Bug Fixes

 - <csr-id-a858391e9cc7d9bd805a892519f38da6b4be0ebb/> added custom metrics handler to drop dependency
 - <csr-id-f835db09798cdd45181000b194348d7cd1f3ba08/> update rust crate clap to 4.1.13
 - <csr-id-5034f87f9d0d0d38bd8674fd00acc52bf863559a/> update rust crate reqwest to 0.11.15

### Other

 - <csr-id-b97681b8e9d40afd35b629f0d9b4757c66a637a8/> Post appropriately sized metric batches
   * task: Post appropriately sized metric batches
   
   Previously we would save unacknowledged metrics until upstream accepted
   the post. This PR, splits into 90kB chunks, listens for http status
   codes to decide what to do on failure.
   * 400 will cause us to drop the metrics we tried to post
   * 413 would be a surprise, since we already split into chunks to avoid
     just this
   * other status codes will be reinserted to the cache and tried again
     next minute.

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release.
 - 5 days passed between releases.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 5 unique issues were worked on: [#117](https://github.com/Unleash/unleash-edge/issues/117), [#121](https://github.com/Unleash/unleash-edge/issues/121), [#122](https://github.com/Unleash/unleash-edge/issues/122), [#127](https://github.com/Unleash/unleash-edge/issues/127), [#135](https://github.com/Unleash/unleash-edge/issues/135)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#117](https://github.com/Unleash/unleash-edge/issues/117)**
    - Update rust crate reqwest to 0.11.15 ([`5034f87`](https://github.com/Unleash/unleash-edge/commit/5034f87f9d0d0d38bd8674fd00acc52bf863559a))
 * **[#121](https://github.com/Unleash/unleash-edge/issues/121)**
    - Update rust crate clap to 4.1.13 ([`f835db0`](https://github.com/Unleash/unleash-edge/commit/f835db09798cdd45181000b194348d7cd1f3ba08))
 * **[#122](https://github.com/Unleash/unleash-edge/issues/122)**
    - Post appropriately sized metric batches ([`b97681b`](https://github.com/Unleash/unleash-edge/commit/b97681b8e9d40afd35b629f0d9b4757c66a637a8))
 * **[#127](https://github.com/Unleash/unleash-edge/issues/127)**
    - Use fewer clones to reduce allocation ([`1ab5962`](https://github.com/Unleash/unleash-edge/commit/1ab5962ebc10c8a5f14492fcd28b46e541d2992d))
 * **[#135](https://github.com/Unleash/unleash-edge/issues/135)**
    - Added custom metrics handler to drop dependency ([`a858391`](https://github.com/Unleash/unleash-edge/commit/a858391e9cc7d9bd805a892519f38da6b4be0ebb))
 * **Uncategorized**
    - Release unleash-edge v1.0.2 ([`7014153`](https://github.com/Unleash/unleash-edge/commit/7014153c028e95cf977d206b3741bafea4758bbb))
</details>

## v1.0.1 (2023-03-23)

### Bug Fixes

 - <csr-id-d067f92d42a7a2051ea45683763297bfc20cc7c1/> Save checked tokens even if invalid
   To make sure we don't hammer upstream with validation requests even if
   edge is under heavy load, this PR allows Edge to save validation results
   for invalid tokens as well.

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 2 days passed between releases.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#120](https://github.com/Unleash/unleash-edge/issues/120)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#120](https://github.com/Unleash/unleash-edge/issues/120)**
    - Save checked tokens even if invalid ([`d067f92`](https://github.com/Unleash/unleash-edge/commit/d067f92d42a7a2051ea45683763297bfc20cc7c1))
 * **Uncategorized**
    - Release unleash-edge v1.0.1 ([`a470163`](https://github.com/Unleash/unleash-edge/commit/a470163679862369666c90bdc33e4cd4c1bceb55))
</details>

## v1.0.0 (2023-03-20)

<csr-id-584e61bb98e32083996720f9d703341ca0025ed6/>

### New Features

 - <csr-id-1e73fdcbce1786aea9f4a1b1a5a9a188c656e85c/> Client features are hydrated synchronously.
   Previously Edge returned a 503 the first time it saw a new client token.
   It now blocks until it's fetched the data for the new token and then
   returns it.

### Bug Fixes

 - <csr-id-d3dfefc08b4a2bdc837d153e89a17a5025908764/> clone value of cache entry
   When in offline mode, was using DashMap incorrectly. The get function
   returns a ref to the entry, so to get at the actual data you have to
   call .value(). This commit fixes that for the client features api
 - <csr-id-0a9353a95e83b30b46b04047f06f359933306ec7/> update rust crate serde to 1.0.158
 - <csr-id-b5604a34ee23aa17847fb8280c10cababce5ad26/> update rust crate clap to 4.1.11
 - <csr-id-4d704b68b78eb066a03d0c5006979db3189f5d43/> update rust crate clap to 4.1.9

### Other

 - <csr-id-584e61bb98e32083996720f9d703341ca0025ed6/> Return 511 if edge has not hydrated.
   Our client/frontend token separation leads to us having to hydrate
   client features using a client token. If a frontend token comes in that has
   access to a project/environment combination that Edge has not yet seen a
   client token for, this PR now makes Edge consistently return a 511 with
   a body explaining which project and environment the user has to add a
   client token for

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 7 commits contributed to the release.
 - 4 days passed between releases.
 - 6 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 5 unique issues were worked on: [#110](https://github.com/Unleash/unleash-edge/issues/110), [#111](https://github.com/Unleash/unleash-edge/issues/111), [#112](https://github.com/Unleash/unleash-edge/issues/112), [#113](https://github.com/Unleash/unleash-edge/issues/113), [#116](https://github.com/Unleash/unleash-edge/issues/116)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#110](https://github.com/Unleash/unleash-edge/issues/110)**
    - Update rust crate clap to 4.1.9 ([`4d704b6`](https://github.com/Unleash/unleash-edge/commit/4d704b68b78eb066a03d0c5006979db3189f5d43))
 * **[#111](https://github.com/Unleash/unleash-edge/issues/111)**
    - Return 511 if edge has not hydrated. ([`584e61b`](https://github.com/Unleash/unleash-edge/commit/584e61bb98e32083996720f9d703341ca0025ed6))
 * **[#112](https://github.com/Unleash/unleash-edge/issues/112)**
    - Client features are hydrated synchronously. ([`1e73fdc`](https://github.com/Unleash/unleash-edge/commit/1e73fdcbce1786aea9f4a1b1a5a9a188c656e85c))
 * **[#113](https://github.com/Unleash/unleash-edge/issues/113)**
    - Update rust crate clap to 4.1.11 ([`b5604a3`](https://github.com/Unleash/unleash-edge/commit/b5604a34ee23aa17847fb8280c10cababce5ad26))
 * **[#116](https://github.com/Unleash/unleash-edge/issues/116)**
    - Update rust crate serde to 1.0.158 ([`0a9353a`](https://github.com/Unleash/unleash-edge/commit/0a9353a95e83b30b46b04047f06f359933306ec7))
 * **Uncategorized**
    - Release unleash-edge v1.0.0 ([`27c3df8`](https://github.com/Unleash/unleash-edge/commit/27c3df8c0609b7564d323b2af5c1df08841ce1d2))
    - Clone value of cache entry ([`d3dfefc`](https://github.com/Unleash/unleash-edge/commit/d3dfefc08b4a2bdc837d153e89a17a5025908764))
</details>

## v0.5.1 (2023-03-15)

### Bug Fixes

 - <csr-id-c11ff4057398b63126effc93aa71578e328f79f4/> persist on shutdown also persists only validated tokens

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release unleash-edge v0.5.1 ([`4fb3ca9`](https://github.com/Unleash/unleash-edge/commit/4fb3ca98dc0c9c53ce1402e7048a0f3bee28f96c))
    - Persist on shutdown also persists only validated tokens ([`c11ff40`](https://github.com/Unleash/unleash-edge/commit/c11ff4057398b63126effc93aa71578e328f79f4))
</details>

## v0.5.0 (2023-03-15)

<csr-id-51bcd7db417a43c29c756a096db24ec6eba5b1c4/>
<csr-id-510fe21aad1733ea8010637bd69fa0039c8e1400/>
<csr-id-eab611cd924a401dfd36e06670782f377d56cc81/>

### Chore

 - <csr-id-51bcd7db417a43c29c756a096db24ec6eba5b1c4/> adds a derive for TokenValidation status with a #[default] on the child enum

### Bug Fixes

 - <csr-id-dee24adaf6086c14b309160809211fad1a601899/> update rust crate serde to 1.0.156
 - <csr-id-796440a86ce4d734e73239adc55228b2cb39b059/> update rust-futures monorepo to 0.3.27
 - <csr-id-02005129a59847271b0cac09a9cd956601c33674/> update rust crate chrono to 0.4.24
 - <csr-id-7ba4b3a087fcf7165a2c02d6bd3c33ae037f0df8/> update rust crate serde to 1.0.155

### Other

 - <csr-id-510fe21aad1733ea8010637bd69fa0039c8e1400/> Prepare a token revalidator
   * task: Prepare a token revalidator
   
   Edge caching tokens could cause tokens to become out of sync with
   Unleash Upstream, adding a scheduled background task which ensures that
   our known tokens are still valid will go a long way towards mitigating
   this.
   
   * task: Make feature_refresher remove tokens/caches.
   
   When unleash_client receives forbidden from upstream, feature_refresher
   will now remove the token to refresh from its cache. If the token is the
   last one that resolves to a specific environment, it will also clean
   features_cache and engine_cache for that environment.
 - <csr-id-eab611cd924a401dfd36e06670782f377d56cc81/> Make Feature refresher register as client
   When a new token for registration comes in, feature refresher registers
   as a client upstream
   
   * chore: make register include actual refresh interval

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 8 commits contributed to the release.
 - 6 days passed between releases.
 - 7 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 7 unique issues were worked on: [#102](https://github.com/Unleash/unleash-edge/issues/102), [#103](https://github.com/Unleash/unleash-edge/issues/103), [#105](https://github.com/Unleash/unleash-edge/issues/105), [#106](https://github.com/Unleash/unleash-edge/issues/106), [#107](https://github.com/Unleash/unleash-edge/issues/107), [#108](https://github.com/Unleash/unleash-edge/issues/108), [#109](https://github.com/Unleash/unleash-edge/issues/109)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#102](https://github.com/Unleash/unleash-edge/issues/102)**
    - Make Feature refresher register as client ([`eab611c`](https://github.com/Unleash/unleash-edge/commit/eab611cd924a401dfd36e06670782f377d56cc81))
 * **[#103](https://github.com/Unleash/unleash-edge/issues/103)**
    - Adds a derive for TokenValidation status with a #[default] on the child enum ([`51bcd7d`](https://github.com/Unleash/unleash-edge/commit/51bcd7db417a43c29c756a096db24ec6eba5b1c4))
 * **[#105](https://github.com/Unleash/unleash-edge/issues/105)**
    - Update rust-futures monorepo to 0.3.27 ([`796440a`](https://github.com/Unleash/unleash-edge/commit/796440a86ce4d734e73239adc55228b2cb39b059))
 * **[#106](https://github.com/Unleash/unleash-edge/issues/106)**
    - Update rust crate serde to 1.0.155 ([`7ba4b3a`](https://github.com/Unleash/unleash-edge/commit/7ba4b3a087fcf7165a2c02d6bd3c33ae037f0df8))
 * **[#107](https://github.com/Unleash/unleash-edge/issues/107)**
    - Update rust crate chrono to 0.4.24 ([`0200512`](https://github.com/Unleash/unleash-edge/commit/02005129a59847271b0cac09a9cd956601c33674))
 * **[#108](https://github.com/Unleash/unleash-edge/issues/108)**
    - Update rust crate serde to 1.0.156 ([`dee24ad`](https://github.com/Unleash/unleash-edge/commit/dee24adaf6086c14b309160809211fad1a601899))
 * **[#109](https://github.com/Unleash/unleash-edge/issues/109)**
    - Prepare a token revalidator ([`510fe21`](https://github.com/Unleash/unleash-edge/commit/510fe21aad1733ea8010637bd69fa0039c8e1400))
 * **Uncategorized**
    - Release unleash-edge v0.5.0 ([`02d31d0`](https://github.com/Unleash/unleash-edge/commit/02d31d0325f36bd65aa33a3a3e21612b6af000fd))
</details>

## v0.4.1 (2023-03-09)

### Bug Fixes

 - <csr-id-8bd4e85740160dafcd185b4703fd4cb3db65f8c0/> make sure edgemode allows comma separated tokens for prewarming

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release unleash-edge v0.4.1 ([`68bce60`](https://github.com/Unleash/unleash-edge/commit/68bce604ee55631a8ccb11b49f8e75db3f45eb31))
    - Make sure edgemode allows comma separated tokens for prewarming ([`8bd4e85`](https://github.com/Unleash/unleash-edge/commit/8bd4e85740160dafcd185b4703fd4cb3db65f8c0))
</details>

## v0.4.0 (2023-03-09)

<csr-id-f496004e73c6bce8ecf0485179a9bb1b25dca2fe/>

### Chore

 - <csr-id-f496004e73c6bce8ecf0485179a9bb1b25dca2fe/> update rust crate actix-http to 3.3.1

### Bug Fixes

 - <csr-id-1797ac70057328d32ed6cb7130fa720ccf659c63/> update rust crate serde_json to 1.0.94
 - <csr-id-15b1faa6680ef4f609ab16bb1caf54f6b7004091/> update rust crate serde to 1.0.154
 - <csr-id-34a945c402c2c0888b35e180c4a6ae3df3aa311f/> update rust crate async-trait to 0.1.66
 - <csr-id-a8a6a6afba5d696e3703eed79f167e2d3b5e3f62/> Move token cache resolution out of FromRequest
   * fix: Move token cache resolution out of FromRequest
* fix: metrics caches was passed in web::Data<Arc<MetricCache>>

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 6 commits contributed to the release.
 - 5 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 5 unique issues were worked on: [#100](https://github.com/Unleash/unleash-edge/issues/100), [#88](https://github.com/Unleash/unleash-edge/issues/88), [#90](https://github.com/Unleash/unleash-edge/issues/90), [#91](https://github.com/Unleash/unleash-edge/issues/91), [#97](https://github.com/Unleash/unleash-edge/issues/97)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#100](https://github.com/Unleash/unleash-edge/issues/100)**
    - Move token cache resolution out of FromRequest ([`a8a6a6a`](https://github.com/Unleash/unleash-edge/commit/a8a6a6afba5d696e3703eed79f167e2d3b5e3f62))
 * **[#88](https://github.com/Unleash/unleash-edge/issues/88)**
    - Update rust crate actix-http to 3.3.1 ([`f496004`](https://github.com/Unleash/unleash-edge/commit/f496004e73c6bce8ecf0485179a9bb1b25dca2fe))
 * **[#90](https://github.com/Unleash/unleash-edge/issues/90)**
    - Update rust crate async-trait to 0.1.66 ([`34a945c`](https://github.com/Unleash/unleash-edge/commit/34a945c402c2c0888b35e180c4a6ae3df3aa311f))
 * **[#91](https://github.com/Unleash/unleash-edge/issues/91)**
    - Update rust crate serde_json to 1.0.94 ([`1797ac7`](https://github.com/Unleash/unleash-edge/commit/1797ac70057328d32ed6cb7130fa720ccf659c63))
 * **[#97](https://github.com/Unleash/unleash-edge/issues/97)**
    - Update rust crate serde to 1.0.154 ([`15b1faa`](https://github.com/Unleash/unleash-edge/commit/15b1faa6680ef4f609ab16bb1caf54f6b7004091))
 * **Uncategorized**
    - Release unleash-edge v0.4.0 ([`c11fdce`](https://github.com/Unleash/unleash-edge/commit/c11fdce9e01f23a55ff6bb58c623f67be1792286))
</details>

## v0.3.2 (2023-03-08)

### Bug Fixes

 - <csr-id-5cd559399192a4381e117d3b190bb4f815a28817/> Uses token cache when resolving token from request

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#99](https://github.com/Unleash/unleash-edge/issues/99)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#99](https://github.com/Unleash/unleash-edge/issues/99)**
    - Uses token cache when resolving token from request ([`5cd5593`](https://github.com/Unleash/unleash-edge/commit/5cd559399192a4381e117d3b190bb4f815a28817))
 * **Uncategorized**
    - Release unleash-edge v0.3.2 ([`03dc7ca`](https://github.com/Unleash/unleash-edge/commit/03dc7caf177f7377670749ad82ce42c58ee0e0d6))
</details>

## v0.3.1 (2023-03-08)

<csr-id-036ab110d80cc696fcc166b3547294d2e0e6b6e1/>

### Chore

 - <csr-id-036ab110d80cc696fcc166b3547294d2e0e6b6e1/> Added tests for edge and client_api
   * fix: client_api endpoint wasn't filtering on which projects the token has access to.
   
   This also adds some Tarpaulin exclusion arguments to better reflect code
   coverage across code that we actually want to cover.
   
   There's still some work to do with regards to having the possibility to
   instantiate the entire application as a test service for full
   integration/e2e tests, but this at least covers more logic and also
   exposed a bug in how we validated keys when not using a token validator
   (offline mode))

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#98](https://github.com/Unleash/unleash-edge/issues/98)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#98](https://github.com/Unleash/unleash-edge/issues/98)**
    - Added tests for edge and client_api ([`036ab11`](https://github.com/Unleash/unleash-edge/commit/036ab110d80cc696fcc166b3547294d2e0e6b6e1))
 * **Uncategorized**
    - Release unleash-edge v0.3.1 ([`1eda8d6`](https://github.com/Unleash/unleash-edge/commit/1eda8d662ca9d991526a038985194f295a3fd74b))
</details>

## v0.3.0 (2023-03-07)

<csr-id-2fc9f70173970415e6995d1a2230699d7a2507a8/>

### Chore

 - <csr-id-2fc9f70173970415e6995d1a2230699d7a2507a8/> update pointers in README

### Documentation

 - <csr-id-c348c4f95ee8645a3ea1cdac03fb9bb338eae73d/> update release workflow

### New Features

 - <csr-id-a263dcaf0271ca38e83f7d55f5e62b4c699c148b/> lock free feature resolution
   Redesign the way data flows through Edge. Previously, we had thread locks on our data sources, which was impacting the response time of the application. This moves everything to be in memory cached with lazy persistence in the background and reloading the state on application startup. This means the hot path is now lock free.
   
   ---------

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 4 commits contributed to the release.
 - 6 days passed between releases.
 - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 1 unique issue was worked on: [#95](https://github.com/Unleash/unleash-edge/issues/95)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#95](https://github.com/Unleash/unleash-edge/issues/95)**
    - Update release workflow ([`c348c4f`](https://github.com/Unleash/unleash-edge/commit/c348c4f95ee8645a3ea1cdac03fb9bb338eae73d))
 * **Uncategorized**
    - Release unleash-edge v0.3.0 ([`2e14660`](https://github.com/Unleash/unleash-edge/commit/2e146600a044d54c9db8610003607ae8b0872dd0))
    - Lock free feature resolution ([`a263dca`](https://github.com/Unleash/unleash-edge/commit/a263dcaf0271ca38e83f7d55f5e62b4c699c148b))
    - Update pointers in README ([`2fc9f70`](https://github.com/Unleash/unleash-edge/commit/2fc9f70173970415e6995d1a2230699d7a2507a8))
</details>

## v0.2.0 (2023-02-28)

<csr-id-176ef576d6ad6ddfb0993f7738465f2f68d3b4af/>
<csr-id-5875ebda52a75560800e4506e3a124016258a228/>

### Chore

 - <csr-id-176ef576d6ad6ddfb0993f7738465f2f68d3b4af/> bump shadow-rs to 0.21
 - <csr-id-5875ebda52a75560800e4506e3a124016258a228/> added symlink to top level README file

### New Features

 - <csr-id-60bcf7617b5673dbf66a345b4bed81857d65b70e/> Added /api/frontend endpoint to match Unleash

### Bug Fixes

 - <csr-id-ae3c9f75bcccddefd571d7fca4c87a7b4e585ea7/> add README to server subfolder
 - <csr-id-eaf0e797b57ec49ce5050826705d458798619a5b/> update rust crate clap to 4.1.8
 - <csr-id-2020281566c695f9e3e0a371f0bf9644613b2c38/> update rust crate actix-web to 4.3.1
 - <csr-id-3b6be69d527e73b7b23bcf2311df1099e0499e73/> update rust crate clap to 4.1.7
 - <csr-id-98666cf738ede56dd6ef5d7162194e2dafd1dcbb/> Move /api/client/register to a post request.
   Earlier we didn't accept metrics from downstream clients because we made
   a wrong assumption about Request Method type. This PR fixes this and
   starts accepting client metrics and posting them upstream.
 - <csr-id-77b9b0c3eb5a98b35224e16fd4594226be79cbb5/> Client features were not refreshing.
   We incorrectly assumed that our merge method would be enough here, but
   since the merge method retained the original and deduped, it seems like
   we tricked ourselves. The fix reduces the action to simply replacing
   whatever was cached with the newly fetched features from the server

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 11 commits contributed to the release.
 - 4 days passed between releases.
 - 9 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 6 unique issues were worked on: [#76](https://github.com/Unleash/unleash-edge/issues/76), [#77](https://github.com/Unleash/unleash-edge/issues/77), [#78](https://github.com/Unleash/unleash-edge/issues/78), [#79](https://github.com/Unleash/unleash-edge/issues/79), [#81](https://github.com/Unleash/unleash-edge/issues/81), [#83](https://github.com/Unleash/unleash-edge/issues/83)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#76](https://github.com/Unleash/unleash-edge/issues/76)**
    - Added /api/frontend endpoint to match Unleash ([`60bcf76`](https://github.com/Unleash/unleash-edge/commit/60bcf7617b5673dbf66a345b4bed81857d65b70e))
 * **[#77](https://github.com/Unleash/unleash-edge/issues/77)**
    - Update rust crate actix-web to 4.3.1 ([`2020281`](https://github.com/Unleash/unleash-edge/commit/2020281566c695f9e3e0a371f0bf9644613b2c38))
 * **[#78](https://github.com/Unleash/unleash-edge/issues/78)**
    - Update rust crate clap to 4.1.7 ([`3b6be69`](https://github.com/Unleash/unleash-edge/commit/3b6be69d527e73b7b23bcf2311df1099e0499e73))
 * **[#79](https://github.com/Unleash/unleash-edge/issues/79)**
    - Client features were not refreshing. ([`77b9b0c`](https://github.com/Unleash/unleash-edge/commit/77b9b0c3eb5a98b35224e16fd4594226be79cbb5))
 * **[#81](https://github.com/Unleash/unleash-edge/issues/81)**
    - Move /api/client/register to a post request. ([`98666cf`](https://github.com/Unleash/unleash-edge/commit/98666cf738ede56dd6ef5d7162194e2dafd1dcbb))
 * **[#83](https://github.com/Unleash/unleash-edge/issues/83)**
    - Update rust crate clap to 4.1.8 ([`eaf0e79`](https://github.com/Unleash/unleash-edge/commit/eaf0e797b57ec49ce5050826705d458798619a5b))
 * **Uncategorized**
    - Release unleash-edge v0.2.0 ([`f9735fd`](https://github.com/Unleash/unleash-edge/commit/f9735fd79a7ce9ba9bbc3848980dd561ea13c2ed))
    - Release unleash-edge v0.2.0 ([`a71fd76`](https://github.com/Unleash/unleash-edge/commit/a71fd7676c606eb9004fbfa15334f1de42a3d6f3))
    - Add README to server subfolder ([`ae3c9f7`](https://github.com/Unleash/unleash-edge/commit/ae3c9f75bcccddefd571d7fca4c87a7b4e585ea7))
    - Bump shadow-rs to 0.21 ([`176ef57`](https://github.com/Unleash/unleash-edge/commit/176ef576d6ad6ddfb0993f7738465f2f68d3b4af))
    - Added symlink to top level README file ([`5875ebd`](https://github.com/Unleash/unleash-edge/commit/5875ebda52a75560800e4506e3a124016258a228))
</details>

## v0.1.1 (2023-02-24)

<csr-id-3f6920a5e56f3783594624eb370bff3af68ea91c/>
<csr-id-ffe24dcc7ec00097e43e5898b10373d6918aa234/>

### Chore

 - <csr-id-3f6920a5e56f3783594624eb370bff3af68ea91c/> remove rwlock from validator, client and builder
 - <csr-id-ffe24dcc7ec00097e43e5898b10373d6918aa234/> removal of RW locks for dashmaps

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 3 commits contributed to the release.
 - 1 day passed between releases.
 - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 2 unique issues were worked on: [#74](https://github.com/Unleash/unleash-edge/issues/74), [#75](https://github.com/Unleash/unleash-edge/issues/75)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#74](https://github.com/Unleash/unleash-edge/issues/74)**
    - Removal of RW locks for dashmaps ([`ffe24dc`](https://github.com/Unleash/unleash-edge/commit/ffe24dcc7ec00097e43e5898b10373d6918aa234))
 * **[#75](https://github.com/Unleash/unleash-edge/issues/75)**
    - Remove rwlock from validator, client and builder ([`3f6920a`](https://github.com/Unleash/unleash-edge/commit/3f6920a5e56f3783594624eb370bff3af68ea91c))
 * **Uncategorized**
    - Release unleash-edge v0.1.1 ([`ced1712`](https://github.com/Unleash/unleash-edge/commit/ced1712b186fc3cbad7dae1b061143234cd61c8f))
</details>

## v0.1.0 (2023-02-23)

<csr-id-cc123f6792494555c046a7eb6d164d066213c59d/>

### Chore

 - <csr-id-cc123f6792494555c046a7eb6d164d066213c59d/> update rust crate test-case to v3

### New Features

 - <csr-id-ab8e5ea52b8550ae97096f91d461f492dc9bd0d3/> allow controlling http server workers spun up
 - <csr-id-ac973797915b7d965721e77e3dba7a818033d87d/> implement metrics for front end clients

### Bug Fixes

 - <csr-id-aa2432e4efa9186bb5afa30df5dbc183d293672f/> update rust crate clap to 4.1.6
 - <csr-id-8ef7a33f61765cb7334d3791b64ffd0836bb0155/> Make offline mode handle non-Unleash tokens as valid secrets
 - <csr-id-b8b25d3075bafb83f3a14493a1dec0155835a2e9/> an issue where client features wouldn't correctly update in memory provider

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 8 commits contributed to the release.
 - 8 days passed between releases.
 - 6 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 7 unique issues were worked on: [#63](https://github.com/Unleash/unleash-edge/issues/63), [#64](https://github.com/Unleash/unleash-edge/issues/64), [#65](https://github.com/Unleash/unleash-edge/issues/65), [#66](https://github.com/Unleash/unleash-edge/issues/66), [#67](https://github.com/Unleash/unleash-edge/issues/67), [#68](https://github.com/Unleash/unleash-edge/issues/68), [#72](https://github.com/Unleash/unleash-edge/issues/72)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#63](https://github.com/Unleash/unleash-edge/issues/63)**
    - Update rust crate test-case to v3 ([`cc123f6`](https://github.com/Unleash/unleash-edge/commit/cc123f6792494555c046a7eb6d164d066213c59d))
 * **[#64](https://github.com/Unleash/unleash-edge/issues/64)**
    - An issue where client features wouldn't correctly update in memory provider ([`b8b25d3`](https://github.com/Unleash/unleash-edge/commit/b8b25d3075bafb83f3a14493a1dec0155835a2e9))
 * **[#65](https://github.com/Unleash/unleash-edge/issues/65)**
    - Implement metrics for front end clients ([`ac97379`](https://github.com/Unleash/unleash-edge/commit/ac973797915b7d965721e77e3dba7a818033d87d))
 * **[#66](https://github.com/Unleash/unleash-edge/issues/66)**
    - Allow controlling http server workers spun up ([`ab8e5ea`](https://github.com/Unleash/unleash-edge/commit/ab8e5ea52b8550ae97096f91d461f492dc9bd0d3))
 * **[#67](https://github.com/Unleash/unleash-edge/issues/67)**
    - Make offline mode handle non-Unleash tokens as valid secrets ([`8ef7a33`](https://github.com/Unleash/unleash-edge/commit/8ef7a33f61765cb7334d3791b64ffd0836bb0155))
 * **[#68](https://github.com/Unleash/unleash-edge/issues/68)**
    - Update rust crate clap to 4.1.6 ([`aa2432e`](https://github.com/Unleash/unleash-edge/commit/aa2432e4efa9186bb5afa30df5dbc183d293672f))
 * **[#72](https://github.com/Unleash/unleash-edge/issues/72)**
    - Chore/data store refactor ([`026de50`](https://github.com/Unleash/unleash-edge/commit/026de501dabf9be3e9e8e001f0122452dc67dc22))
 * **Uncategorized**
    - Release unleash-edge v0.1.0 ([`6cbafd4`](https://github.com/Unleash/unleash-edge/commit/6cbafd4fcc6489ed26c1047bcdc5d7272c622800))
</details>

## v0.0.2 (2023-02-14)

### Bug Fixes

 - <csr-id-764e92e134a3074c0cb8ffe6376c638f165e3da8/> Use upstream_url rather than unleash_url

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 2 commits contributed to the release.
 - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
 - 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **Uncategorized**
    - Release unleash-edge v0.0.2 ([`11fd0bc`](https://github.com/Unleash/unleash-edge/commit/11fd0bcead4836d288dc4153acf842980f19ba5b))
    - Use upstream_url rather than unleash_url ([`764e92e`](https://github.com/Unleash/unleash-edge/commit/764e92e134a3074c0cb8ffe6376c638f165e3da8))
</details>

## v0.0.1 (2023-02-14)

<csr-id-004aa955e8bed7687090762efa0bcc53577ecf2c/>
<csr-id-b18c039255180c8d18e786e783a40f5cf9724358/>
<csr-id-869294b93591055b8b078943771915aef0bf33d8/>
<csr-id-9a34999914d7c27b01b2ab7793863c8c139589fd/>
<csr-id-cdfa7c216c1b7066ab059259d319a8c8ce2dc82a/>
<csr-id-ba72e090c400e7d2d7f276a89ecf79f3760c7c47/>
<csr-id-286dfd536ff1c5d865829dcd98bda49da6ad9d36/>
<csr-id-e58f4fc3306ae71c1bcb8e8704d38eeb176cac96/>
<csr-id-ea8cd1ba7fb36afb039f31ec4ba000a2b7271700/>
<csr-id-9132cc1410d1d4a14e08de15ee53c9fce1fc5c92/>
<csr-id-1d6a5188a6334b341db72f847f55450726da3bee/>
<csr-id-76e8e2a8d6e71bd1cf8920e00ce2373da9054a8e/>
<csr-id-45d6b6641c941e391a16df3294427efe64863c3c/>
<csr-id-749b3ad08de04644d0182d891e4f097dc0c438f5/>
<csr-id-d32e20bebc02fcc40670f508c86ab37ee8967b5f/>
<csr-id-bcc20510714f9c48985367e00fbd2eb6124e669a/>
<csr-id-b618ff1b1cd3ea30d2705b21db31be042d89309f/>
<csr-id-8f6fa05435caae5cdc112fefa187b8e0681df2dd/>
<csr-id-2d99d7e01e602185337f79529aba9f9fd86cd634/>
<csr-id-e2a589418c3bd305f04d3083b8ad1826e662956d/>

### Chore

 - <csr-id-004aa955e8bed7687090762efa0bcc53577ecf2c/> added team developer to save spam
 - <csr-id-b18c039255180c8d18e786e783a40f5cf9724358/> tokens are now used
 - <csr-id-869294b93591055b8b078943771915aef0bf33d8/> redesign source and sinks to store features by environment and filter the responses by project
 - <csr-id-9a34999914d7c27b01b2ab7793863c8c139589fd/> remove sinks for offline mode
 - <csr-id-cdfa7c216c1b7066ab059259d319a8c8ce2dc82a/> redesign source/sink architecture
 - <csr-id-ba72e090c400e7d2d7f276a89ecf79f3760c7c47/> remove redis test that doesn't make sense anymore
 - <csr-id-286dfd536ff1c5d865829dcd98bda49da6ad9d36/> test auto-assign-pr action
 - <csr-id-e58f4fc3306ae71c1bcb8e8704d38eeb176cac96/> move server startup and traits to async
 - <csr-id-ea8cd1ba7fb36afb039f31ec4ba000a2b7271700/> improve tests for redis provider
 - <csr-id-9132cc1410d1d4a14e08de15ee53c9fce1fc5c92/> bump unleash-types
 - <csr-id-1d6a5188a6334b341db72f847f55450726da3bee/> Update cargo keys with ownership and license

### Chore

 - <csr-id-e2a589418c3bd305f04d3083b8ad1826e662956d/> added changelog

### Documentation

<csr-id-16771118dbfdb4fc2dd819564b9d3f3355154134/>

 - <csr-id-e6fd6c5fda8adea94f06eaaf10033e9ae9a194a3/> add edge mode
   * docs: add edge mode
* docs: organize modes differently, small fixes
* docs: edge mode does not need token to start, explain warm up
* Update README.md

### New Features

<csr-id-92aa64bc58e4193adc95370e651579feddea2811/>
<csr-id-5f55517e4407a7acf4b7906d82eee737bb58a53d/>
<csr-id-8fe7cabbb496c34618cae77e82ddceeeb8cfb617/>
<csr-id-3addbd639c12749c5d18775f95b1bfede106c4cf/>
<csr-id-e6bc817c21affd7e06883a9d56f85f254878a4c8/>
<csr-id-4bf25a3402c8e9a3c48c63118da1469a69a3bbdd/>
<csr-id-c270685a08207e0ab283e563ad6f58ad4f859161/>
<csr-id-231efc30353f6af6f20b8431220101802ca5c2b3/>

 - <csr-id-3a8cd761a8cd92696c9229df1a6c3614aae261fa/> switch to backing with HashMap<TokenString, EdgeToken>
 - <csr-id-0d037ec243b120f093b5a20efb3c5ddda6e25767/> adds a call for validating tokens
 - <csr-id-eab0878ce2bf49a499f032a13c47f58a4b346cc7/> implement simplify tokens
 - <csr-id-9e99f4b64b3d53b2e79381a2cb0d80ef4b010b2b/> add client for getting features
 - <csr-id-5ae644c8e4c98c588111a7461f359439c994209f/> implement an in memory data store
 - <csr-id-0469918e24763a5fef41a706f6f88fde986f955d/> internal backstage build info endpoint
   * feat: internal backstage build info endpoint
* chore: add test documenting info endpoint
* feat: add enabled toggles routes
* fix: disabling metrics for not linux

### Bug Fixes

 - <csr-id-eea450a47bfe5c32ea84994570223c1d5a746bc8/> update rust crate unleash-types to 0.8.3
 - <csr-id-4f528b76b718405d151a06af6657376c9358a7a2/> update rust crate unleash-types to 0.8.2
 - <csr-id-2d4a74312db1e5adc0d042e52e47c4f7286a966d/> update rust crate unleash-yggdrasil to 0.4.5
 - <csr-id-986a7433f687de3126cf05bf8d776cabf3a28290/> update rust crate serde_json to 1.0.93
 - <csr-id-cd86cdd7c5f6a9a6577a10b01278e3b17e36811d/> update rust crate serde_json to 1.0.92
 - <csr-id-0be62e8547f76508f9f14f949958b8529ae96b39/> update rust crate anyhow to 1.0.69
 - <csr-id-ca0a50d711f8c504f2ad9671929abc663639264b/> expose correct route on frontend api
 - <csr-id-2b0f8320e4120b8451ddd004b8c83b1c8b9193bc/> features get refreshed.
   Previously our spin loop slept for 15 seconds and then hit the await on
   the channel for a new token to validate.
   This PR changes that to use tokio::select to either refresh features for
   known tokens each 10th second, or receive a new token to validate.
   
   Should allow us to use more than one token and get them refreshed
 - <csr-id-5593376c3a89b28df6b6a8be2c93c1dc38a30c89/> allow any on CORS
 - <csr-id-93b0f22802f3fb16ac97174ccf8dc2574dafb9e0/> make sure reqwest does not bring along openssl
 - <csr-id-46a10d229bf2ccfd03f367a8e34e6f7f9f148013/> update rust crate tokio to 1.25.0
 - <csr-id-be9428d76742a3f5b2436b8b5cb61374609b98c3/> update rust crate unleash-yggdrasil to 0.4.2
 - <csr-id-71a9a2372d2e5110b628fe30438cf5b6760c8899/> patch the way CORS headers are done, without this, the server crashes on startup with an unhelpful error message
 - <csr-id-4b9e889a3d42089f206b62b9eea45dcfd8bae2f3/> update rust crate clap to 4.1.4
 - <csr-id-02e201b5142e6b95ced38f3636d3015ce4f79e03/> Update unleash-types to 0.5.1
 - <csr-id-fa8e9610dc74dd6868e36cdb6d2ae46c3aa17303/> update rust crate unleash-yggdrasil to 0.4.0
 - <csr-id-9f817bd7f0039315ad40aa61319c6ff1543b5241/> update rust crate clap to 4.1.3
 - <csr-id-042ae381536614d76f387c8d24b82c9ed9cb93bc/> update rust crate actix-web to 4.3.0

### Other

 - <csr-id-76e8e2a8d6e71bd1cf8920e00ce2373da9054a8e/> move obvious debug level logging to debug
 - <csr-id-45d6b6641c941e391a16df3294427efe64863c3c/> Subsume keys to check
   This collapses the keys seen. Removing keys that have been subsumed by a
   wider key (a key that includes the same projects or more as existing
   keys).
 - <csr-id-749b3ad08de04644d0182d891e4f097dc0c438f5/> token validator
   * task: add token validator
 - <csr-id-d32e20bebc02fcc40670f508c86ab37ee8967b5f/> Updated to only refresh tokens of type Client
 - <csr-id-bcc20510714f9c48985367e00fbd2eb6124e669a/> update to include openapi and hashes feature of types
 - <csr-id-b618ff1b1cd3ea30d2705b21db31be042d89309f/> added etag middleware
 - <csr-id-8f6fa05435caae5cdc112fefa187b8e0681df2dd/> Added prometheus metrics from shadow

### Style

 - <csr-id-2d99d7e01e602185337f79529aba9f9fd86cd634/> fix formatting

### Commit Statistics

<csr-read-only-do-not-edit/>

 - 59 commits contributed to the release.
 - 54 commits were understood as [conventional](https://www.conventionalcommits.org).
 - 47 unique issues were worked on: [#10](https://github.com/Unleash/unleash-edge/issues/10), [#12](https://github.com/Unleash/unleash-edge/issues/12), [#13](https://github.com/Unleash/unleash-edge/issues/13), [#14](https://github.com/Unleash/unleash-edge/issues/14), [#15](https://github.com/Unleash/unleash-edge/issues/15), [#16](https://github.com/Unleash/unleash-edge/issues/16), [#17](https://github.com/Unleash/unleash-edge/issues/17), [#18](https://github.com/Unleash/unleash-edge/issues/18), [#20](https://github.com/Unleash/unleash-edge/issues/20), [#22](https://github.com/Unleash/unleash-edge/issues/22), [#23](https://github.com/Unleash/unleash-edge/issues/23), [#25](https://github.com/Unleash/unleash-edge/issues/25), [#26](https://github.com/Unleash/unleash-edge/issues/26), [#27](https://github.com/Unleash/unleash-edge/issues/27), [#28](https://github.com/Unleash/unleash-edge/issues/28), [#29](https://github.com/Unleash/unleash-edge/issues/29), [#3](https://github.com/Unleash/unleash-edge/issues/3), [#30](https://github.com/Unleash/unleash-edge/issues/30), [#33](https://github.com/Unleash/unleash-edge/issues/33), [#34](https://github.com/Unleash/unleash-edge/issues/34), [#36](https://github.com/Unleash/unleash-edge/issues/36), [#37](https://github.com/Unleash/unleash-edge/issues/37), [#38](https://github.com/Unleash/unleash-edge/issues/38), [#39](https://github.com/Unleash/unleash-edge/issues/39), [#4](https://github.com/Unleash/unleash-edge/issues/4), [#40](https://github.com/Unleash/unleash-edge/issues/40), [#41](https://github.com/Unleash/unleash-edge/issues/41), [#42](https://github.com/Unleash/unleash-edge/issues/42), [#43](https://github.com/Unleash/unleash-edge/issues/43), [#44](https://github.com/Unleash/unleash-edge/issues/44), [#45](https://github.com/Unleash/unleash-edge/issues/45), [#46](https://github.com/Unleash/unleash-edge/issues/46), [#5](https://github.com/Unleash/unleash-edge/issues/5), [#52](https://github.com/Unleash/unleash-edge/issues/52), [#53](https://github.com/Unleash/unleash-edge/issues/53), [#54](https://github.com/Unleash/unleash-edge/issues/54), [#55](https://github.com/Unleash/unleash-edge/issues/55), [#56](https://github.com/Unleash/unleash-edge/issues/56), [#57](https://github.com/Unleash/unleash-edge/issues/57), [#58](https://github.com/Unleash/unleash-edge/issues/58), [#59](https://github.com/Unleash/unleash-edge/issues/59), [#6](https://github.com/Unleash/unleash-edge/issues/6), [#60](https://github.com/Unleash/unleash-edge/issues/60), [#61](https://github.com/Unleash/unleash-edge/issues/61), [#62](https://github.com/Unleash/unleash-edge/issues/62), [#8](https://github.com/Unleash/unleash-edge/issues/8), [#9](https://github.com/Unleash/unleash-edge/issues/9)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

 * **[#10](https://github.com/Unleash/unleash-edge/issues/10)**
    - Use subcommands rather than ValueEnum ([`8fe7cab`](https://github.com/Unleash/unleash-edge/commit/8fe7cabbb496c34618cae77e82ddceeeb8cfb617))
 * **[#12](https://github.com/Unleash/unleash-edge/issues/12)**
    - Add basic proxy endpoints and related test code ([`5f55517`](https://github.com/Unleash/unleash-edge/commit/5f55517e4407a7acf4b7906d82eee737bb58a53d))
 * **[#13](https://github.com/Unleash/unleash-edge/issues/13)**
    - Update rust crate clap to 4.1.4 ([`4b9e889`](https://github.com/Unleash/unleash-edge/commit/4b9e889a3d42089f206b62b9eea45dcfd8bae2f3))
 * **[#14](https://github.com/Unleash/unleash-edge/issues/14)**
    - Patch the way CORS headers are done, without this, the server crashes on startup with an unhelpful error message ([`71a9a23`](https://github.com/Unleash/unleash-edge/commit/71a9a2372d2e5110b628fe30438cf5b6760c8899))
 * **[#15](https://github.com/Unleash/unleash-edge/issues/15)**
    - Internal backstage build info endpoint ([`0469918`](https://github.com/Unleash/unleash-edge/commit/0469918e24763a5fef41a706f6f88fde986f955d))
 * **[#16](https://github.com/Unleash/unleash-edge/issues/16)**
    - Add client for getting features ([`9e99f4b`](https://github.com/Unleash/unleash-edge/commit/9e99f4b64b3d53b2e79381a2cb0d80ef4b010b2b))
 * **[#17](https://github.com/Unleash/unleash-edge/issues/17)**
    - Update rust crate unleash-yggdrasil to 0.4.2 ([`be9428d`](https://github.com/Unleash/unleash-edge/commit/be9428d76742a3f5b2436b8b5cb61374609b98c3))
 * **[#18](https://github.com/Unleash/unleash-edge/issues/18)**
    - Add enabled toggles routes ([`92aa64b`](https://github.com/Unleash/unleash-edge/commit/92aa64bc58e4193adc95370e651579feddea2811))
 * **[#20](https://github.com/Unleash/unleash-edge/issues/20)**
    - Added prometheus metrics from shadow ([`8f6fa05`](https://github.com/Unleash/unleash-edge/commit/8f6fa05435caae5cdc112fefa187b8e0681df2dd))
 * **[#22](https://github.com/Unleash/unleash-edge/issues/22)**
    - Added etag middleware ([`b618ff1`](https://github.com/Unleash/unleash-edge/commit/b618ff1b1cd3ea30d2705b21db31be042d89309f))
 * **[#23](https://github.com/Unleash/unleash-edge/issues/23)**
    - Update rust crate tokio to 1.25.0 ([`46a10d2`](https://github.com/Unleash/unleash-edge/commit/46a10d229bf2ccfd03f367a8e34e6f7f9f148013))
 * **[#25](https://github.com/Unleash/unleash-edge/issues/25)**
    - Implement redis datasource ([`0b2537f`](https://github.com/Unleash/unleash-edge/commit/0b2537f4bd397c666d458589bf30f9322b0c9214))
 * **[#26](https://github.com/Unleash/unleash-edge/issues/26)**
    - Update README ([`1677111`](https://github.com/Unleash/unleash-edge/commit/16771118dbfdb4fc2dd819564b9d3f3355154134))
 * **[#27](https://github.com/Unleash/unleash-edge/issues/27)**
    - Fix formatting ([`2d99d7e`](https://github.com/Unleash/unleash-edge/commit/2d99d7e01e602185337f79529aba9f9fd86cd634))
 * **[#28](https://github.com/Unleash/unleash-edge/issues/28)**
    - Improve tests for redis provider ([`ea8cd1b`](https://github.com/Unleash/unleash-edge/commit/ea8cd1ba7fb36afb039f31ec4ba000a2b7271700))
 * **[#29](https://github.com/Unleash/unleash-edge/issues/29)**
    - Implement an in memory data store ([`5ae644c`](https://github.com/Unleash/unleash-edge/commit/5ae644c8e4c98c588111a7461f359439c994209f))
 * **[#3](https://github.com/Unleash/unleash-edge/issues/3)**
    - Adds client features endpoint ([`4bf25a3`](https://github.com/Unleash/unleash-edge/commit/4bf25a3402c8e9a3c48c63118da1469a69a3bbdd))
 * **[#30](https://github.com/Unleash/unleash-edge/issues/30)**
    - Implement simplify tokens ([`eab0878`](https://github.com/Unleash/unleash-edge/commit/eab0878ce2bf49a499f032a13c47f58a4b346cc7))
 * **[#33](https://github.com/Unleash/unleash-edge/issues/33)**
    - Move server startup and traits to async ([`e58f4fc`](https://github.com/Unleash/unleash-edge/commit/e58f4fc3306ae71c1bcb8e8704d38eeb176cac96))
 * **[#34](https://github.com/Unleash/unleash-edge/issues/34)**
    - Adds a call for validating tokens ([`0d037ec`](https://github.com/Unleash/unleash-edge/commit/0d037ec243b120f093b5a20efb3c5ddda6e25767))
 * **[#36](https://github.com/Unleash/unleash-edge/issues/36)**
    - Feat/implement data sync ([`862ee28`](https://github.com/Unleash/unleash-edge/commit/862ee288eab20367c5d4e487ddd679f72174e8ef))
 * **[#37](https://github.com/Unleash/unleash-edge/issues/37)**
    - Allow any on CORS ([`5593376`](https://github.com/Unleash/unleash-edge/commit/5593376c3a89b28df6b6a8be2c93c1dc38a30c89))
 * **[#38](https://github.com/Unleash/unleash-edge/issues/38)**
    - Features get refreshed. ([`2b0f832`](https://github.com/Unleash/unleash-edge/commit/2b0f8320e4120b8451ddd004b8c83b1c8b9193bc))
 * **[#39](https://github.com/Unleash/unleash-edge/issues/39)**
    - Test auto-assign-pr action ([`286dfd5`](https://github.com/Unleash/unleash-edge/commit/286dfd536ff1c5d865829dcd98bda49da6ad9d36))
 * **[#4](https://github.com/Unleash/unleash-edge/issues/4)**
    - Add edge-token extractor to lock down access ([`e6bc817`](https://github.com/Unleash/unleash-edge/commit/e6bc817c21affd7e06883a9d56f85f254878a4c8))
 * **[#40](https://github.com/Unleash/unleash-edge/issues/40)**
    - Switch to backing with HashMap<TokenString, EdgeToken> ([`3a8cd76`](https://github.com/Unleash/unleash-edge/commit/3a8cd761a8cd92696c9229df1a6c3614aae261fa))
 * **[#41](https://github.com/Unleash/unleash-edge/issues/41)**
    - Expose correct route on frontend api ([`ca0a50d`](https://github.com/Unleash/unleash-edge/commit/ca0a50d711f8c504f2ad9671929abc663639264b))
 * **[#42](https://github.com/Unleash/unleash-edge/issues/42)**
    - Update rust crate anyhow to 1.0.69 ([`0be62e8`](https://github.com/Unleash/unleash-edge/commit/0be62e8547f76508f9f14f949958b8529ae96b39))
 * **[#43](https://github.com/Unleash/unleash-edge/issues/43)**
    - Update rust crate serde_json to 1.0.92 ([`cd86cdd`](https://github.com/Unleash/unleash-edge/commit/cd86cdd7c5f6a9a6577a10b01278e3b17e36811d))
 * **[#44](https://github.com/Unleash/unleash-edge/issues/44)**
    - Updated to only refresh tokens of type Client ([`d32e20b`](https://github.com/Unleash/unleash-edge/commit/d32e20bebc02fcc40670f508c86ab37ee8967b5f))
 * **[#45](https://github.com/Unleash/unleash-edge/issues/45)**
    - Remove redis test that doesn't make sense anymore ([`ba72e09`](https://github.com/Unleash/unleash-edge/commit/ba72e090c400e7d2d7f276a89ecf79f3760c7c47))
 * **[#46](https://github.com/Unleash/unleash-edge/issues/46)**
    - Redesign source/sink architecture ([`cdfa7c2`](https://github.com/Unleash/unleash-edge/commit/cdfa7c216c1b7066ab059259d319a8c8ce2dc82a))
 * **[#5](https://github.com/Unleash/unleash-edge/issues/5)**
    - Update rust crate actix-web to 4.3.0 ([`042ae38`](https://github.com/Unleash/unleash-edge/commit/042ae381536614d76f387c8d24b82c9ed9cb93bc))
 * **[#52](https://github.com/Unleash/unleash-edge/issues/52)**
    - Update rust crate serde_json to 1.0.93 ([`986a743`](https://github.com/Unleash/unleash-edge/commit/986a7433f687de3126cf05bf8d776cabf3a28290))
 * **[#53](https://github.com/Unleash/unleash-edge/issues/53)**
    - Task client metrics ([`81d49ef`](https://github.com/Unleash/unleash-edge/commit/81d49ef4c360a168a5c7445e56bab7e2cc78c020))
 * **[#54](https://github.com/Unleash/unleash-edge/issues/54)**
    - Remove sinks for offline mode ([`9a34999`](https://github.com/Unleash/unleash-edge/commit/9a34999914d7c27b01b2ab7793863c8c139589fd))
 * **[#55](https://github.com/Unleash/unleash-edge/issues/55)**
    - Update rust crate unleash-types to 0.8.2 ([`4f528b7`](https://github.com/Unleash/unleash-edge/commit/4f528b76b718405d151a06af6657376c9358a7a2))
 * **[#56](https://github.com/Unleash/unleash-edge/issues/56)**
    - Update rust crate unleash-yggdrasil to 0.4.5 ([`2d4a743`](https://github.com/Unleash/unleash-edge/commit/2d4a74312db1e5adc0d042e52e47c4f7286a966d))
 * **[#57](https://github.com/Unleash/unleash-edge/issues/57)**
    - Redesign source and sinks to store features by environment and filter the responses by project ([`869294b`](https://github.com/Unleash/unleash-edge/commit/869294b93591055b8b078943771915aef0bf33d8))
 * **[#58](https://github.com/Unleash/unleash-edge/issues/58)**
    - Token validator ([`749b3ad`](https://github.com/Unleash/unleash-edge/commit/749b3ad08de04644d0182d891e4f097dc0c438f5))
 * **[#59](https://github.com/Unleash/unleash-edge/issues/59)**
    - Subsume keys to check ([`45d6b66`](https://github.com/Unleash/unleash-edge/commit/45d6b6641c941e391a16df3294427efe64863c3c))
 * **[#6](https://github.com/Unleash/unleash-edge/issues/6)**
    - Update rust crate clap to 4.1.3 ([`9f817bd`](https://github.com/Unleash/unleash-edge/commit/9f817bd7f0039315ad40aa61319c6ff1543b5241))
 * **[#60](https://github.com/Unleash/unleash-edge/issues/60)**
    - Add edge mode ([`e6fd6c5`](https://github.com/Unleash/unleash-edge/commit/e6fd6c5fda8adea94f06eaaf10033e9ae9a194a3))
 * **[#61](https://github.com/Unleash/unleash-edge/issues/61)**
    - Open api docs ([`49d7129`](https://github.com/Unleash/unleash-edge/commit/49d7129a02f9ff8d9a336db9718593396742bb0d))
 * **[#62](https://github.com/Unleash/unleash-edge/issues/62)**
    - Update rust crate unleash-types to 0.8.3 ([`eea450a`](https://github.com/Unleash/unleash-edge/commit/eea450a47bfe5c32ea84994570223c1d5a746bc8))
 * **[#8](https://github.com/Unleash/unleash-edge/issues/8)**
    - Update rust crate unleash-yggdrasil to 0.4.0 ([`fa8e961`](https://github.com/Unleash/unleash-edge/commit/fa8e9610dc74dd6868e36cdb6d2ae46c3aa17303))
 * **[#9](https://github.com/Unleash/unleash-edge/issues/9)**
    - Added cors middleware ([`3addbd6`](https://github.com/Unleash/unleash-edge/commit/3addbd639c12749c5d18775f95b1bfede106c4cf))
 * **Uncategorized**
    - Release unleash-edge v0.0.1 ([`6187c4e`](https://github.com/Unleash/unleash-edge/commit/6187c4ef1fb79345e57bc8ac06efde2211e75798))
    - Added changelog ([`e2a5894`](https://github.com/Unleash/unleash-edge/commit/e2a589418c3bd305f04d3083b8ad1826e662956d))
    - Added team developer to save spam ([`004aa95`](https://github.com/Unleash/unleash-edge/commit/004aa955e8bed7687090762efa0bcc53577ecf2c))
    - Move obvious debug level logging to debug ([`76e8e2a`](https://github.com/Unleash/unleash-edge/commit/76e8e2a8d6e71bd1cf8920e00ce2373da9054a8e))
    - Tokens are now used ([`b18c039`](https://github.com/Unleash/unleash-edge/commit/b18c039255180c8d18e786e783a40f5cf9724358))
    - Make sure reqwest does not bring along openssl ([`93b0f22`](https://github.com/Unleash/unleash-edge/commit/93b0f22802f3fb16ac97174ccf8dc2574dafb9e0))
    - Update to include openapi and hashes feature of types ([`bcc2051`](https://github.com/Unleash/unleash-edge/commit/bcc20510714f9c48985367e00fbd2eb6124e669a))
    - Bump unleash-types ([`9132cc1`](https://github.com/Unleash/unleash-edge/commit/9132cc1410d1d4a14e08de15ee53c9fce1fc5c92))
    - Update unleash-types to 0.5.1 ([`02e201b`](https://github.com/Unleash/unleash-edge/commit/02e201b5142e6b95ced38f3636d3015ce4f79e03))
    - Update cargo keys with ownership and license ([`1d6a518`](https://github.com/Unleash/unleash-edge/commit/1d6a5188a6334b341db72f847f55450726da3bee))
    - Add /api/client/features endpoint ([`c270685`](https://github.com/Unleash/unleash-edge/commit/c270685a08207e0ab283e563ad6f58ad4f859161))
    - Server with metrics and health check ready ([`231efc3`](https://github.com/Unleash/unleash-edge/commit/231efc30353f6af6f20b8431220101802ca5c2b3))
</details>