-
Notifications
You must be signed in to change notification settings - Fork 59
/
CHANGELOG
2279 lines (2046 loc) · 123 KB
/
CHANGELOG
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
v2.10.20
- Dependency track mapper @Amndeep7 (#6307)
- Backend improvements @Amndeep7 (#6234)
- README improvements @Amndeep7 (#6233)
## Dependency Updates
- Bump @aws-sdk/client-config-service from 3.675.0 to 3.677.0 @dependabot (#6309)
- Bump @types/lodash from 4.17.11 to 4.17.12 @dependabot (#6302)
- Bump http-proxy-middleware from 2.0.6 to 2.0.7 @dependabot (#6312)
- Bump @types/node from 22.7.7 to 22.7.8 @dependabot (#6310)
- Bump @types/node from 22.7.6 to 22.7.7 @dependabot (#6305)
- Bump @smithy/node-http-handler from 3.2.4 to 3.2.5 @dependabot (#6303)
- Bump @aws-sdk/client-s3 from 3.675.0 to 3.676.0 @dependabot (#6306)
- Bump @aws-sdk/client-config-service from 3.670.0 to 3.675.0 @dependabot (#6298)
- Bump eslint-plugin-vue from 9.29.0 to 9.29.1 @dependabot (#6304)
- Bump @aws-sdk/client-s3 from 3.674.0 to 3.675.0 @dependabot (#6299)
- Bump @types/papaparse from 5.3.14 to 5.3.15 @dependabot (#6301)
- Bump @types/lodash from 4.17.10 to 4.17.11 @dependabot (#6300)
- Bump @aws-sdk/client-sts from 3.670.0 to 3.675.0 @dependabot (#6297)
- Bump @aws-sdk/client-s3 from 3.673.0 to 3.674.0 @dependabot (#6296)
- Bump @nestjs/schematics from 10.2.0 to 10.2.2 @dependabot (#6295)
- Bump @nestjs/platform-express from 10.4.4 to 10.4.5 @dependabot (#6288)
- Bump tailwindcss from 3.4.13 to 3.4.14 @dependabot (#6293)
- Bump @nestjs/testing from 10.4.4 to 10.4.5 @dependabot (#6294)
- Bump @aws-sdk/client-s3 from 3.670.0 to 3.673.0 @dependabot (#6289)
- Bump typedoc from 0.26.9 to 0.26.10 @dependabot (#6292)
- Bump @nestjs/common from 10.4.4 to 10.4.5 @dependabot (#6287)
- Bump @types/node from 22.7.5 to 22.7.6 @dependabot (#6290)
- Bump @nestjs/core from 10.4.4 to 10.4.5 @dependabot (#6291)
- Bump @nestjs/schematics from 10.1.4 to 10.2.0 @dependabot (#6286)
- Bump yaml from 2.5.1 to 2.6.0 @dependabot (#6285)
- Bump @aws-sdk/client-s3 from 3.669.0 to 3.670.0 @dependabot (#6279)
- Bump eslint-plugin-cypress from 3.5.0 to 3.6.0 @dependabot (#6281)
- Bump eslint-plugin-vue from 9.28.0 to 9.29.0 @dependabot (#6282)
- Bump typedoc from 0.26.8 to 0.26.9 @dependabot (#6277)
- Bump mock-fs from 5.3.0 to 5.4.0 @dependabot (#6278)
- Bump @aws-sdk/client-config-service from 3.669.0 to 3.670.0 @dependabot (#6276)
- Bump @aws-sdk/client-s3 from 3.668.0 to 3.669.0 @dependabot (#6274)
- Bump @aws-sdk/client-config-service from 3.668.0 to 3.669.0 @dependabot (#6273)
- Bump @aws-sdk/client-s3 from 3.667.0 to 3.668.0 @dependabot (#6272)
- Bump express-session from 1.18.0 to 1.18.1 @dependabot (#6268)
- Bump @aws-sdk/client-config-service from 3.667.0 to 3.668.0 @dependabot (#6270)
- Bump express from 4.21.0 to 4.21.1 @dependabot (#6266)
- Bump @aws-sdk/client-s3 from 3.666.0 to 3.667.0 @dependabot (#6269)
- Bump @aws-sdk/client-config-service from 3.665.0 to 3.667.0 @dependabot (#6265)
- Bump @types/diff from 5.2.2 to 5.2.3 @dependabot (#6264)
- Bump winston from 3.14.2 to 3.15.0 @dependabot (#6260)
- Bump @types/node from 22.7.4 to 22.7.5 @dependabot (#6258)
- Bump @aws-sdk/client-s3 from 3.665.0 to 3.666.0 @dependabot (#6259)
- Bump typedoc from 0.26.7 to 0.26.8 @dependabot (#6256)
- Bump express-rate-limit from 7.4.0 to 7.4.1 @dependabot (#6252)
- Bump sequelize from 6.37.3 to 6.37.4 @dependabot (#6257)
- Bump @aws-sdk/client-s3 from 3.664.0 to 3.665.0 @dependabot (#6253)
- Bump @aws-sdk/client-config-service from 3.664.0 to 3.665.0 @dependabot (#6254)
- Bump eslint-plugin-import from 2.30.0 to 2.31.0 @dependabot (#6248)
- Bump sanitize-html from 2.13.0 to 2.13.1 @dependabot (#6247)
- Bump @types/lodash from 4.17.9 to 4.17.10 @dependabot (#6249)
- Bump @aws-sdk/client-s3 from 3.662.0 to 3.664.0 @dependabot (#6246)
- Bump @aws-sdk/client-config-service from 3.662.0 to 3.664.0 @dependabot (#6245)
- Bump @aws-sdk/client-s3 from 3.658.1 to 3.662.0 @dependabot (#6241)
- Bump @aws-sdk/client-config-service from 3.658.1 to 3.662.0 @dependabot (#6242)
- Bump @aws-sdk/client-sts from 3.658.1 to 3.662.0 @dependabot (#6240)
- Bump @smithy/node-http-handler from 3.2.3 to 3.2.4 @dependabot (#6236)
- Bump helmet from 7.1.0 to 8.0.0 @dependabot (#6238)
- Bump @types/node from 22.7.3 to 22.7.4 @dependabot (#6230)
v2.10.19
- Neuvector mapper @jtquach1 (#6195)
## Dependency Updates
- Bump mock-fs from 5.2.0 to 5.3.0 @dependabot (#6229)
- Bump @types/node from 22.7.2 to 22.7.3 @dependabot (#6228)
- Bump @aws-sdk/client-s3 from 3.658.0 to 3.658.1 @dependabot (#6223)
- Bump @types/express from 4.17.21 to 5.0.0 @dependabot (#6225)
- Bump @types/node from 22.7.0 to 22.7.2 @dependabot (#6224)
- Bump cypress from 13.14.2 to 13.15.0 @dependabot (#6222)
- Bump @aws-sdk/client-config-service from 3.658.0 to 3.658.1 @dependabot (#6221)
- Bump @aws-sdk/client-s3 from 3.657.0 to 3.658.0 @dependabot (#6219)
- Bump @types/node from 22.6.1 to 22.7.0 @dependabot (#6220)
- Bump @aws-sdk/client-config-service from 3.654.0 to 3.658.0 @dependabot (#6218)
- Bump @nestjs/platform-express from 10.4.3 to 10.4.4 @dependabot (#6213)
- Bump @aws-sdk/client-s3 from 3.654.0 to 3.657.0 @dependabot (#6217)
- Bump @nestjs/testing from 10.4.3 to 10.4.4 @dependabot (#6214)
- Bump @nestjs/core from 10.4.3 to 10.4.4 @dependabot (#6215)
- Bump tailwindcss from 3.4.12 to 3.4.13 @dependabot (#6216)
- Bump @nestjs/common from 10.4.3 to 10.4.4 @dependabot (#6212)
- Bump @types/lodash from 4.17.7 to 4.17.9 @dependabot (#6211)
- Bump @types/node from 22.5.5 to 22.6.1 @dependabot (#6210)
- Bump sass-loader from 16.0.1 to 16.0.2 @dependabot (#6209)
- Bump prettier-plugin-organize-imports from 4.0.0 to 4.1.0 @dependabot (#6208)
- Bump @smithy/node-http-handler from 3.2.2 to 3.2.3 @dependabot (#6207)
- Bump @aws-sdk/client-config-service from 3.651.1 to 3.654.0 @dependabot (#6204)
- Bump @aws-sdk/client-s3 from 3.651.1 to 3.654.0 @dependabot (#6205)
- Bump @aws-sdk/client-sts from 3.651.1 to 3.654.0 @dependabot (#6206)
- Bump @nestjs/core from 10.4.2 to 10.4.3 @dependabot (#6198)
- Bump @nestjs/common from 10.4.2 to 10.4.3 @dependabot (#6200)
- Bump @nestjs/platform-express from 10.4.2 to 10.4.3 @dependabot (#6199)
- Bump tailwindcss from 3.4.11 to 3.4.12 @dependabot (#6202)
- Bump pg from 8.12.0 to 8.13.0 @dependabot (#6203)
- Bump @nestjs/testing from 10.4.2 to 10.4.3 @dependabot (#6201)
- Bump date-fns from 4.0.0 to 4.1.0 @dependabot (#6197)
- Bump @types/validator from 13.12.1 to 13.12.2 @dependabot (#6192)
- Bump eslint from 8.57.0 to 8.57.1 @dependabot (#6190)
- Bump @types/node from 22.5.4 to 22.5.5 @dependabot (#6191)
- Bump @nestjs/common from 10.4.1 to 10.4.2 @dependabot (#6194)
- Bump date-fns from 3.6.0 to 4.0.0 @dependabot (#6193)
- Bump @nestjs/platform-express from 10.4.1 to 10.4.2 @dependabot (#6188)
- Bump @nestjs/core from 10.4.1 to 10.4.2 @dependabot (#6189)
- Bump @nestjs/testing from 10.4.1 to 10.4.2 @dependabot (#6187)
v2.10.18
- readme and front end modal @andytang99 (#6186)
v2.10.17
- Anchore Grype Mapper @andytang99 (#6117)
## Dependency Updates
- Bump sinon from 19.0.0 to 19.0.2 @dependabot (#6183)
- Bump @aws-sdk/client-config-service from 3.650.0 to 3.651.1 @dependabot (#6185)
- Bump connect-pg-simple from 9.0.1 to 10.0.0 @dependabot (#6181)
- Bump @smithy/node-http-handler from 3.2.0 to 3.2.2 @dependabot (#6180)
- Bump @aws-sdk/client-s3 from 3.651.0 to 3.651.1 @dependabot (#6182)
- Bump sinon from 18.0.1 to 19.0.0 @dependabot (#6179)
- Bump @aws-sdk/client-s3 from 3.650.0 to 3.651.0 @dependabot (#6177)
- Bump tsx from 4.19.0 to 4.19.1 @dependabot (#6178)
v2.10.16
- Replace @cyclonedx/cyclonedx-library's internal types with cyclonedx specification types @Amndeep7 (#6155)
- updateTenableContentSecurityPolicy @georgedias (#6135)
## Dependency Updates
- Bump @aws-sdk/client-s3 from 3.645.0 to 3.649.0 @dependabot (#6170)
- Bump @aws-sdk/client-config-service from 3.645.0 to 3.649.0 @dependabot (#6166)
- Bump @aws-sdk/client-sts from 3.645.0 to 3.649.0 @dependabot (#6168)
- Bump sinon from 18.0.0 to 18.0.1 @dependabot (#6169)
- Bump typedoc from 0.26.6 to 0.26.7 @dependabot (#6164)
- Bump express from 4.19.2 to 4.20.0 @dependabot (#6171)
- Bump express from 4.19.2 to 4.20.0 @dependabot (#6167)
- Bump @aws-sdk/client-s3 from 3.637.0 to 3.645.0 @dependabot (#6157)
- Bump @smithy/node-http-handler from 3.1.4 to 3.2.0 @dependabot (#6165)
- Bump @types/node from 22.5.2 to 22.5.4 @dependabot (#6160)
- Bump eslint-plugin-import from 2.29.1 to 2.30.0 @dependabot (#6153)
- Bump cypress from 13.14.1 to 13.14.2 @dependabot (#6158)
- Bump diff from 6.0.0 to 7.0.0 @dependabot (#6161)
- Bump yaml from 2.5.0 to 2.5.1 @dependabot (#6152)
- Bump @aws-sdk/client-config-service from 3.637.0 to 3.645.0 @dependabot (#6159)
- Bump @aws-sdk/client-sts from 3.637.0 to 3.645.0 @dependabot (#6156)
- Bump eslint-plugin-vue from 9.27.0 to 9.28.0 @dependabot (#6154)
- Bump fast-xml-parser from 4.4.1 to 4.5.0 @dependabot (#6151)
- Bump @nestjs/cli from 10.4.4 to 10.4.5 @dependabot (#6147)
- Bump diff from 5.2.0 to 6.0.0 @dependabot (#6150)
- Bump @types/node from 22.5.1 to 22.5.2 @dependabot (#6149)
- Bump axios from 1.7.6 to 1.7.7 @dependabot (#6148)
- Bump axios from 1.7.5 to 1.7.6 @dependabot (#6146)
- Bump apexcharts from 3.52.0 to 3.53.0 @dependabot (#6144)
- Bump cypress from 13.14.0 to 13.14.1 @dependabot (#6143)
- Bump rexml from 3.3.3 to 3.3.6 in /libs/inspecjs @dependabot (#6128)
- Bump @types/diff from 5.2.1 to 5.2.2 @dependabot (#6142)
- Bump cypress from 13.13.3 to 13.14.0 @dependabot (#6139)
- Bump tsx from 4.18.0 to 4.19.0 @dependabot (#6141)
- Bump @types/node from 22.5.0 to 22.5.1 @dependabot (#6140)
- Bump @types/validator from 13.12.0 to 13.12.1 @dependabot (#6137)
- Bump tsx from 4.17.0 to 4.18.0 @dependabot (#6136)
- Bump @types/multer from 1.4.11 to 1.4.12 @dependabot (#6134)
- Bump axios from 1.7.4 to 1.7.5 @dependabot (#6132)
- Bump @aws-sdk/client-config-service from 3.635.0 to 3.637.0 @dependabot (#6131)
- Bump ts-jest from 29.2.4 to 29.2.5 @dependabot (#6133)
- Bump @aws-sdk/client-s3 from 3.635.0 to 3.637.0 @dependabot (#6130)
- Bump @aws-sdk/client-sts from 3.635.0 to 3.637.0 @dependabot (#6129)
- Bump @types/node from 22.4.1 to 22.5.0 @dependabot (#6126)
- Bump @aws-sdk/client-config-service from 3.632.0 to 3.635.0 @dependabot (#6123)
- Bump core-js from 3.38.0 to 3.38.1 @dependabot (#6122)
- Bump @aws-sdk/client-s3 from 3.633.0 to 3.635.0 @dependabot (#6124)
v2.10.15
## Bug Fixes
- Remove passport openid @Amndeep7 (#6112)
- SBOM Mapper @charleshu-8 (#5986)
## Dependency Updates
- Bump @aws-sdk/client-s3 from 3.632.0 to 3.633.0 @dependabot (#6113)
- Bump elliptic from 6.5.5 to 6.5.7 @dependabot (#6110)
- Bump @aws-sdk/client-config-service from 3.629.0 to 3.632.0 @dependabot (#6108)
- Bump @aws-sdk/client-s3 from 3.631.0 to 3.632.0 @dependabot (#6109)
- Bump @aws-sdk/client-sts from 3.631.0 to 3.632.0 @dependabot (#6107)
- Bump cypress from 13.13.2 to 13.13.3 @dependabot (#6105)
- Bump @aws-sdk/client-s3 from 3.629.0 to 3.631.0 @dependabot (#6102)
- Bump winston from 3.14.1 to 3.14.2 @dependabot (#6104)
- Bump @types/node from 22.2.0 to 22.3.0 @dependabot (#6101)
v2.10.14
## Bug Fixes
- Twistlock Mapper Tweaks @charleshu-8 (#6054)
## Dependency Updates
- Bump tailwindcss from 3.4.9 to 3.4.10 @dependabot (#6099)
- Bump axios from 1.7.3 to 1.7.4 @dependabot (#6100)
- Bump @nestjs/testing from 10.4.0 to 10.4.1 @dependabot (#6096)
- Bump @nestjs/platform-express from 10.3.10 to 10.4.1 @dependabot (#6095)
- Bump @nestjs/common from 10.4.0 to 10.4.1 @dependabot (#6098)
- Bump @nestjs/core from 10.4.0 to 10.4.1 @dependabot (#6097)
- Bump @nestjs/testing from 10.3.10 to 10.4.0 @dependabot (#6089)
- Bump @aws-sdk/client-s3 from 3.627.0 to 3.629.0 @dependabot (#6091)
- Bump @nestjs/common from 10.3.10 to 10.4.0 @dependabot (#6090)
- Bump @nestjs/core from 10.3.10 to 10.4.0 @dependabot (#6088)
- Bump @aws-sdk/client-config-service from 3.624.0 to 3.629.0 @dependabot (#6094)
- Bump eslint-plugin-cypress from 3.4.0 to 3.5.0 @dependabot (#6093)
- Bump @aws-sdk/client-sts from 3.624.0 to 3.629.0 @dependabot (#6087)
- Bump winston from 3.13.1 to 3.14.1 @dependabot (#6081)
- Bump tsx from 4.16.5 to 4.17.0 @dependabot (#6080)
- Bump @types/node from 22.1.0 to 22.2.0 @dependabot (#6084)
- Bump @aws-sdk/client-s3 from 3.626.0 to 3.627.0 @dependabot (#6079)
- Bump @nestjs/cli from 10.4.2 to 10.4.4 @dependabot (#6085)
- Bump tailwindcss from 3.4.8 to 3.4.9 @dependabot (#6078)
- Bump tailwindcss from 3.4.7 to 3.4.8 @dependabot (#6077)
- Bump @aws-sdk/client-s3 from 3.624.0 to 3.626.0 @dependabot (#6076)
v2.10.13
- Docker improvements @Amndeep7 (#6075)
- Convert Microsoft Secure Score to OHDF @meme112233 (#6007)
## Dependency Updates
- Bump core-js from 3.37.1 to 3.38.0 @dependabot (#6072)
- Bump @aws-sdk/client-s3 from 3.623.0 to 3.624.0 @dependabot (#6071)
- Bump luxon from 3.4.4 to 3.5.0 @dependabot (#6068)
- Bump ts-jest from 29.2.3 to 29.2.4 @dependabot (#6058)
- Bump @aws-sdk/client-config-service from 3.623.0 to 3.624.0 @dependabot (#6069)
- Bump apexcharts from 3.51.0 to 3.52.0 @dependabot (#6073)
- Bump lerna from 8.1.7 to 8.1.8 @dependabot (#6070)
- Bump @aws-sdk/client-sts from 3.623.0 to 3.624.0 @dependabot (#6067)
- Bump @aws-sdk/client-s3 from 3.622.0 to 3.623.0 @dependabot (#6063)
- Bump @types/node from 22.0.2 to 22.1.0 @dependabot (#6065)
- Bump tsx from 4.16.3 to 4.16.5 @dependabot (#6057)
- Bump @aws-sdk/client-config-service from 3.621.0 to 3.623.0 @dependabot (#6062)
- Bump cypress from 13.13.1 to 13.13.2 @dependabot (#6049)
- Bump axios from 1.7.2 to 1.7.3 @dependabot (#6059)
- Bump @aws-sdk/client-sts from 3.622.0 to 3.623.0 @dependabot (#6064)
- Bump rexml from 3.2.8 to 3.3.3 in /libs/inspecjs @dependabot (#6061)
- Bump @aws-sdk/client-s3 from 3.621.0 to 3.622.0 @dependabot (#6055)
- Bump tsx from 4.16.2 to 4.16.3 @dependabot (#6051)
- Bump @types/node from 22.0.0 to 22.0.2 @dependabot (#6050)
- Bump @aws-sdk/client-s3 from 3.620.1 to 3.621.0 @dependabot (#6048)
v2.10.12
- Hdf2ckl severity @kemley76 (#5866)
- checklist metadata input validation on export @kemley76 (#5902)
- gosec Mapper Rework @charleshu-8 (#5982)
- Trufflehog mapper @andytang99 (#6013)
- Format error message when validating checklist metadata @kemley76 (#6023)
- gosec Mapper Rework @charleshu-8 (#5982)
- GoSec Mapper `impact` Fix @charleshu-8 (#5952)
## Dependency Updates
- Bump cypress-wait-until from 1.7.2 to 3.0.2 @dependabot (#6046)
- Bump @aws-sdk/client-config-service from 3.620.1 to 3.621.0 @dependabot (#6044)
- Bump @types/lodash from 4.17.5 to 4.17.7 @dependabot (#6001)
- Bump @types/node from 20.14.12 to 22.0.0 @dependabot (#6043)
- Bump @aws-sdk/client-config-service from 3.620.0 to 3.620.1 @dependabot (#6042)
- Bump csv-stringify from 6.5.0 to 6.5.1 @dependabot (#6041)
- Bump @aws-sdk/client-s3 from 3.620.0 to 3.620.1 @dependabot (#6039)
- Bump fast-xml-parser from 4.4.0 to 4.4.1 @dependabot (#6037)
- Bump sass-loader from 15.0.0 to 16.0.0 @dependabot (#6036)
- Bump html-loader from 5.0.0 to 5.1.0 @dependabot (#6034)
- Bump @aws-sdk/client-config-service from 3.616.0 to 3.620.0 @dependabot (#6033)
- Bump tailwindcss from 3.4.6 to 3.4.7 @dependabot (#6031)
- Bump @aws-sdk/client-s3 from 3.617.0 to 3.620.0 @dependabot (#6029)
- Bump chai and @types/chai @dependabot (#6032)
- Bump @aws-sdk/client-sts from 3.616.0 to 3.620.0 @dependabot (#6030)
- Bump eslint-plugin-cypress from 3.3.0 to 3.4.0 @dependabot (#6027)
- Bump @smithy/node-http-handler from 3.1.3 to 3.1.4 @dependabot (#6025)
- Bump yaml from 2.4.5 to 2.5.0 @dependabot (#6026)
- Bump @nestjs/schematics from 10.1.2 to 10.1.3 @dependabot (#6024)
- Bump @types/node from 20.14.11 to 20.14.12 @dependabot (#6020)
- Bump @aws-sdk/client-s3 from 3.616.0 to 3.617.0 @dependabot (#6017)
- Bump @e965/xlsx from 0.20.2 to 0.20.3 @dependabot (#6012)
- Bump sass-loader from 14.2.1 to 15.0.0 @dependabot (#6022)
- Bump apexcharts from 3.50.0 to 3.51.0 @dependabot (#6015)
- Bump express-rate-limit from 7.3.1 to 7.4.0 @dependabot (#6021)
- Bump typedoc from 0.26.4 to 0.26.5 @dependabot (#6014)
- Bump lerna from 8.1.6 to 8.1.7 @dependabot (#6016)
- Bump @aws-sdk/client-s3 from 3.614.0 to 3.616.0 @dependabot (#6010)
- Bump @aws-sdk/client-config-service from 3.614.0 to 3.616.0 @dependabot (#6009)
- Bump ts-jest from 29.2.2 to 29.2.3 @dependabot (#6008)
- Bump @aws-sdk/client-sts from 3.614.0 to 3.616.0 @dependabot (#6011)
- Bump eslint-plugin-prettier from 5.1.3 to 5.2.1 @dependabot (#6006)
- Bump tailwindcss from 3.4.5 to 3.4.6 @dependabot (#6003)
- Bump @types/node from 20.14.10 to 20.14.11 @dependabot (#6000)
- Bump cypress from 13.13.0 to 13.13.1 @dependabot (#6002)
- Bump semver from 7.6.2 to 7.6.3 @dependabot (#5999)
- Bump compare-versions from 6.1.0 to 6.1.1 @dependabot (#5998)
- Bump prettier from 3.3.2 to 3.3.3 @dependabot (#5997)
- Bump @smithy/node-http-handler from 3.1.2 to 3.1.3 @dependabot (#5996)
- Bump tailwindcss from 3.4.4 to 3.4.5 @dependabot (#5995)
- Bump @aws-sdk/client-config-service from 3.609.0 to 3.614.0 @dependabot (#5991)
- Bump winston from 3.13.0 to 3.13.1 @dependabot (#5989)
- Bump ts-jest from 29.2.0 to 29.2.2 @dependabot (#5990)
- Bump typedoc from 0.26.3 to 0.26.4 @dependabot (#5992)
- Bump @aws-sdk/client-s3 from 3.613.0 to 3.614.0 @dependabot (#5993)
- Bump @aws-sdk/client-sts from 3.613.0 to 3.614.0 @dependabot (#5988)
- Bump @aws-sdk/client-s3 from 3.609.0 to 3.613.0 @dependabot (#5983)
- Bump xml-formatter from 3.6.2 to 3.6.3 @dependabot (#5981)
- Bump xml-parser-xo from 4.1.1 to 4.1.2 @dependabot (#5980)
- Bump highlight.js from 11.9.0 to 11.10.0 @dependabot (#5978)
- Bump @nestjs/testing from 10.3.9 to 10.3.10 @dependabot (#5956)
- Bump @smithy/node-http-handler from 3.1.1 to 3.1.2 @dependabot (#5979)
- Bump ts-jest from 29.1.5 to 29.2.0 @dependabot (#5977)
- Bump tsx from 4.16.0 to 4.16.2 @dependabot (#5969)
- Bump @nestjs/cli from 10.4.0 to 10.4.2 @dependabot (#5973)
- Bump @types/node from 20.14.9 to 20.14.10 @dependabot (#5972)
- Bump lerna from 8.1.5 to 8.1.6 @dependabot (#5974)
- Bump apexcharts from 3.49.2 to 3.50.0 @dependabot (#5971)
- Bump @aws-sdk/client-config-service from 3.606.0 to 3.609.0 @dependabot (#5966)
- Bump eslint-plugin-vue from 9.26.0 to 9.27.0 @dependabot (#5967)
- Bump @aws-sdk/client-s3 from 3.608.0 to 3.609.0 @dependabot (#5964)
- Bump @nestjs/schematics from 10.1.1 to 10.1.2 @dependabot (#5968)
- Bump @aws-sdk/client-sts from 3.606.0 to 3.609.0 @dependabot (#5963)
- Bump @nestjs/cli from 10.3.2 to 10.4.0 @dependabot (#5965)
- Bump @nestjs/core from 10.3.9 to 10.3.10 @dependabot (#5960)
- Bump prettier-plugin-organize-imports from 3.2.4 to 4.0.0 @dependabot (#5958)
- Bump tsx from 4.15.7 to 4.16.0 @dependabot (#5959)
- Bump @nestjs/platform-express from 10.3.9 to 10.3.10 @dependabot (#5957)
- Bump cypress from 13.12.0 to 13.13.0 @dependabot (#5954)
- Bump @nestjs/common from 10.3.9 to 10.3.10 @dependabot (#5955)
- Bump @aws-sdk/client-s3 from 3.606.0 to 3.608.0 @dependabot (#5953)
- Bump typedoc from 0.26.2 to 0.26.3 @dependabot (#5947)
- Bump lru-cache from 10.2.2 to 10.3.0 @dependabot (#5948)
- Bump @aws-sdk/client-config-service from 3.600.0 to 3.606.0 @dependabot (#5950)
- Bump @aws-sdk/client-s3 from 3.600.0 to 3.606.0 @dependabot (#5946)
- Bump @smithy/node-http-handler from 3.1.0 to 3.1.1 @dependabot (#5945)
- Bump @aws-sdk/client-sts from 3.600.0 to 3.606.0 @dependabot (#5943)
- Bump apexcharts from 3.49.1 to 3.49.2 @dependabot (#5941)
- Bump @types/node from 20.14.8 to 20.14.9 @dependabot (#5942)
- Bump typedoc from 0.25.13 to 0.26.2 @dependabot (#5939)
- Bump lerna from 8.1.3 to 8.1.5 @dependabot (#5940)
- Bump tsx from 4.15.6 to 4.15.7 @dependabot (#5937)
- Bump @types/node from 20.14.7 to 20.14.8 @dependabot (#5938)
- Bump @types/node from 20.14.6 to 20.14.7 @dependabot (#5936)
- Bump @types/uuid from 9.0.8 to 10.0.0 @dependabot (#5935)
- Bump @types/node from 20.14.4 to 20.14.6 @dependabot (#5934)
- Bump @aws-sdk/client-config-service from 3.598.0 to 3.600.0 @dependabot (#5931)
- Bump cypress from 13.11.0 to 13.12.0 @dependabot (#5933)
- Bump @aws-sdk/client-s3 from 3.596.0 to 3.600.0 @dependabot (#5929)
- Bump @smithy/node-http-handler from 3.0.1 to 3.1.0 @dependabot (#5928)
- Bump @types/node from 20.14.2 to 20.14.4 @dependabot (#5924)
- Bump ts-jest from 29.1.4 to 29.1.5 @dependabot (#5925)
- Bump tsx from 4.15.5 to 4.15.6 @dependabot (#5926)
- Bump @aws-sdk/client-config-service from 3.596.0 to 3.598.0 @dependabot (#5922)
- Bump ws from 7.5.9 to 7.5.10 @dependabot (#5927)
- Bump @types/validator from 13.11.10 to 13.12.0 @dependabot (#5923)
- Bump @aws-sdk/client-sts from 3.596.0 to 3.598.0 @dependabot (#5920)
- Bump tsx from 4.15.2 to 4.15.5 @dependabot (#5919)
v2.10.10
- Revert "Bump tw-elements from 1.1.0 to 2.0.0" @charleshu-8 (#5894)
## Dependency Updates
- Bump tw-elements from 1.1.0 to 2.0.0 @dependabot (#5602)
- Bump tailwindcss from 3.4.3 to 3.4.4 @dependabot (#5893)
- Bump @aws-sdk/client-s3 from 3.590.0 to 3.591.0 @dependabot (#5892)
- Bump @types/node from 20.14.1 to 20.14.2 @dependabot (#5891)
- Bump prettier from 3.3.0 to 3.3.1 @dependabot (#5890)
- Bump @nestjs/platform-express from 10.3.8 to 10.3.9 @dependabot (#5878)
- Bump pg from 8.11.5 to 8.12.0 @dependabot (#5886)
- Bump cypress from 13.10.0 to 13.11.0 @dependabot (#5885)
- Bump @aws-sdk/client-s3 from 3.588.0 to 3.590.0 @dependabot (#5888)
- Bump @aws-sdk/client-config-service from 3.588.0 to 3.590.0 @dependabot (#5884)
- Bump @nestjs/core from 10.3.8 to 10.3.9 @dependabot (#5876)
- Bump express-rate-limit from 7.2.0 to 7.3.0 @dependabot (#5882)
- Bump yaml from 2.4.2 to 2.4.3 @dependabot (#5881)
- Bump prettier from 3.2.5 to 3.3.0 @dependabot (#5875)
- Bump tsx from 4.11.0 to 4.11.2 @dependabot (#5877)
- Bump @types/node from 20.13.0 to 20.14.1 @dependabot (#5873)
- Bump @nestjs/common from 10.3.8 to 10.3.9 @dependabot (#5880)
- Bump @nestjs/testing from 10.3.8 to 10.3.9 @dependabot (#5874)
- Bump @types/node from 20.12.13 to 20.13.0 @dependabot (#5871)
- Bump @aws-sdk/client-config-service from 3.583.0 to 3.588.0 @dependabot (#5870)
- Bump @aws-sdk/client-s3 from 3.587.0 to 3.588.0 @dependabot (#5867)
- Bump @aws-sdk/client-s3 from 3.583.0 to 3.587.0 @dependabot (#5863)
- Bump @aws-sdk/client-sts from 3.583.0 to 3.587.0 @dependabot (#5862)
- Bump eslint-plugin-cypress from 3.2.0 to 3.3.0 @dependabot (#5861)
- Bump @types/node from 20.12.12 to 20.12.13 @dependabot (#5860)
v2.10.9
- Add option to normalize export ckl profile name @georgedias (#5852)
- Sequelize fix for Windows dev configuration @georgedias (#5851)
## Dependency Updates
- Bump ts-jest from 29.1.3 to 29.1.4 @dependabot (#5859)
- Bump @aws-sdk/client-s3 from 3.582.0 to 3.583.0 @dependabot (#5854)
- Bump cypress from 13.9.0 to 13.10.0 @dependabot (#5844)
- Bump tsx from 4.10.5 to 4.11.0 @dependabot (#5855)
- Bump @aws-sdk/client-config-service from 3.582.0 to 3.583.0 @dependabot (#5853)
- Bump @aws-sdk/client-s3 from 3.577.0 to 3.582.0 @dependabot (#5849)
- Bump @aws-sdk/client-config-service from 3.577.0 to 3.582.0 @dependabot (#5850)
- Bump @aws-sdk/client-sts from 3.577.0 to 3.582.0 @dependabot (#5848)
v2.10.8
- Use latest splunk image on the hdf converters tests workflow @Amndeep7 (#5835)
- Updated Heroku PostgreSQL @georgedias (#5804)
## Dependency Updates
- Bump tsx from 4.10.4 to 4.10.5 @dependabot (#5839)
- Bump ts-jest from 29.1.2 to 29.1.3 @dependabot (#5846)
- Bump axios from 1.6.8 to 1.7.2 @dependabot (#5845)
- Bump oauth2-mock-server from 7.1.1 to 7.1.2 @dependabot (#5843)
- Bump fast-xml-parser from 4.3.6 to 4.4.0 @dependabot (#5840)
- Bump @types/lodash from 4.17.1 to 4.17.4 @dependabot (#5837)
- Bump tsx from 4.10.3 to 4.10.4 @dependabot (#5836)
- Bump @aws-sdk/client-config-service from 3.576.0 to 3.577.0 @dependabot (#5828)
- Bump core-js from 3.37.0 to 3.37.1 @dependabot (#5823)
- Bump tsx from 4.10.2 to 4.10.3 @dependabot (#5833)
- Bump rexml from 3.2.5 to 3.2.8 in /libs/inspecjs @dependabot (#5832)
- Bump @aws-sdk/client-s3 from 3.576.0 to 3.577.0 @dependabot (#5829)
- Bump sinon from 17.0.2 to 18.0.0 @dependabot (#5827)
- Bump @aws-sdk/client-config-service from 3.575.0 to 3.576.0 @dependabot (#5826)
- Bump @types/node from 20.12.11 to 20.12.12 @dependabot (#5824)
- Bump @aws-sdk/client-s3 from 3.575.0 to 3.576.0 @dependabot (#5822)
v2.10.7
## Dependency Updates
- Bump rimraf from 5.0.6 to 5.0.7 @dependabot (#5819)
- Bump apexcharts from 3.49.0 to 3.49.1 @dependabot (#5818)
- Bump @types/validator from 13.11.9 to 13.11.10 @dependabot (#5815)
- Bump chai-as-promised from 7.1.1 to 7.1.2 @dependabot (#5820)
- Bump @aws-sdk/client-s3 from 3.574.0 to 3.575.0 @dependabot (#5812)
- Bump tsx from 4.9.3 to 4.10.2 @dependabot (#5813)
- Bump @aws-sdk/client-config-service from 3.574.0 to 3.575.0 @dependabot (#5817)
- Bump csv-stringify from 6.4.6 to 6.5.0 @dependabot (#5814)
- Bump lerna from 8.1.2 to 8.1.3 @dependabot (#5811)
- Bump @aws-sdk/client-config-service from 3.572.0 to 3.574.0 @dependabot (#5806)
- Bump rimraf from 5.0.5 to 5.0.6 @dependabot (#5807)
- Bump @aws-sdk/client-s3 from 3.572.0 to 3.574.0 @dependabot (#5809)
- Bump @smithy/node-http-handler from 2.5.0 to 3.0.0 @dependabot (#5805)
- Bump semver from 7.6.1 to 7.6.2 @dependabot (#5803)
- Bump eslint-plugin-vue from 9.25.0 to 9.26.0 @dependabot (#5802)
- Bump @aws-sdk/client-config-service from 3.569.0 to 3.572.0 @dependabot (#5799)
- Bump @types/node from 20.12.10 to 20.12.11 @dependabot (#5800)
- Bump @aws-sdk/client-s3 from 3.569.0 to 3.572.0 @dependabot (#5801)
- Bump cypress from 13.8.1 to 13.9.0 @dependabot (#5797)
- Bump semver from 7.6.0 to 7.6.1 @dependabot (#5795)
- Bump sinon from 17.0.1 to 17.0.2 @dependabot (#5796)
- Bump dotenv-cli from 7.4.1 to 7.4.2 @dependabot (#5794)
- Bump @types/lodash from 4.17.0 to 4.17.1 @dependabot (#5787)
- Bump @types/diff from 5.2.0 to 5.2.1 @dependabot (#5791)
- Bump eslint-plugin-cypress from 3.1.1 to 3.2.0 @dependabot (#5790)
- Bump @aws-sdk/client-s3 from 3.568.0 to 3.569.0 @dependabot (#5783)
- Bump @types/prismjs from 1.26.3 to 1.26.4 @dependabot (#5788)
- Bump tsx from 4.8.2 to 4.9.3 @dependabot (#5792)
- Bump @types/node from 20.12.8 to 20.12.10 @dependabot (#5789)
- Bump @aws-sdk/client-config-service from 3.568.0 to 3.569.0 @dependabot (#5782)
- Bump eslint-plugin-cypress from 3.0.3 to 3.1.1 @dependabot (#5781)
- Bump tsx from 4.7.3 to 4.8.2 @dependabot (#5775)
- Bump @aws-sdk/client-config-service from 3.567.0 to 3.568.0 @dependabot (#5780)
- Bump @aws-sdk/client-sts from 3.567.0 to 3.568.0 @dependabot (#5779)
- Bump @aws-sdk/client-s3 from 3.567.0 to 3.568.0 @dependabot (#5778)
- Bump @aws-sdk/client-config-service from 3.564.0 to 3.567.0 @dependabot (#5773)
- Bump @aws-sdk/client-s3 from 3.565.0 to 3.567.0 @dependabot (#5774)
- Bump @types/node from 20.12.7 to 20.12.8 @dependabot (#5776)
- Bump eslint-plugin-cypress from 3.0.2 to 3.0.3 @dependabot (#5772)
- Bump ejs from 3.1.9 to 3.1.10 @dependabot (#5777)
- Bump @aws-sdk/client-sts from 3.565.0 to 3.567.0 @dependabot (#5771)
- Bump lru-cache from 10.2.1 to 10.2.2 @dependabot (#5769)
- Bump @aws-sdk/client-sts from 3.556.0 to 3.565.0 @dependabot (#5765)
- Bump eslint-plugin-cypress from 3.0.0 to 3.0.2 @dependabot (#5762)
- Bump yaml from 2.4.1 to 2.4.2 @dependabot (#5764)
- Bump @aws-sdk/client-s3 from 3.564.0 to 3.565.0 @dependabot (#5766)
- Bump @aws-sdk/client-config-service from 3.563.0 to 3.564.0 @dependabot (#5763)
- Bump tsx from 4.7.2 to 4.7.3 @dependabot (#5756)
- Bump @aws-sdk/client-s3 from 3.563.0 to 3.564.0 @dependabot (#5761)
- Bump @aws-sdk/client-config-service from 3.556.0 to 3.563.0 @dependabot (#5759)
- Bump lru-cache from 10.2.0 to 10.2.1 @dependabot (#5758)
- Bump @aws-sdk/client-s3 from 3.556.0 to 3.563.0 @dependabot (#5757)
- Bump cypress from 13.8.0 to 13.8.1 @dependabot (#5751)
- Bump supertest from 6.3.4 to 7.0.0 @dependabot (#5752)
- Bump eslint-plugin-cypress from 2.15.2 to 3.0.0 @dependabot (#5750)
v2.10.6
## Dependency Updates
- Bump apexcharts from 3.48.0 to 3.49.0 @dependabot (#5748)
- Bump @nestjs/common from 10.3.7 to 10.3.8 @dependabot (#5743)
- Bump @nestjs/platform-express from 10.3.7 to 10.3.8 @dependabot (#5744)
- Bump @nestjs/core from 10.3.7 to 10.3.8 @dependabot (#5745)
- Bump @nestjs/testing from 10.3.7 to 10.3.8 @dependabot (#5747)
- Bump @types/diff from 5.0.9 to 5.2.0 @dependabot (#5742)
- Bump cypress from 13.7.3 to 13.8.0 @dependabot (#5741)
v2.10.5
Package.json Fix @DMedina6 (#5727)
Update okta.strategy.ts to work with passport-openidconnect 0.1.1 @em-c-rod (#5725)
Fix Ironbank Deployment Pipeline Error @DMedina6 (#5707)
Fix hdf converter test @em-c-rod (#5706)
## Dependency Updates
- Bump @aws-sdk/client-s3 from 3.554.0 to 3.556.0 @dependabot (#5737)
- Bump @aws-sdk/client-config-service from 3.555.0 to 3.556.0 @dependabot (#5735)
- Bump core-js from 3.36.1 to 3.37.0 @dependabot (#5736)
- Bump sass-loader from 14.2.0 to 14.2.1 @dependabot (#5734)
- Bump sequelize from 6.37.2 to 6.37.3 @dependabot (#5730)
- Bump eslint-plugin-cypress from 2.15.1 to 2.15.2 @dependabot (#5728)
- Bump eslint-plugin-vue from 9.24.1 to 9.25.0 @dependabot (#5729)
- Bump cypress from 13.7.2 to 13.7.3 @dependabot (#5720)
- Bump @aws-sdk/client-config-service from 3.554.0 to 3.555.0 @dependabot (#5726)
- Bump @aws-sdk/client-s3 from 3.550.0 to 3.554.0 @dependabot (#5724)
- Bump sass-loader from 14.1.1 to 14.2.0 @dependabot (#5723)
- Bump @aws-sdk/client-config-service from 3.552.0 to 3.554.0 @dependabot (#5721)
- Bump @aws-sdk/client-config-service from 3.549.0 to 3.552.0 @dependabot (#5714)
- Bump @types/node from 20.12.5 to 20.12.7 @dependabot (#5718)
- Bump @aws-sdk/client-sts from 3.549.0 to 3.552.0 @dependabot (#5716)
- Bump vue-cookies from 1.8.3 to 1.8.4 @dependabot (#5715)
- Bump typedoc from 0.25.12 to 0.25.13 @dependabot (#5712)
- Bump eslint-plugin-vue from 9.24.0 to 9.24.1 @dependabot (#5711)
- Bump @aws-sdk/client-s3 from 3.549.0 to 3.550.0 @dependabot (#5710)
- Bump @types/node from 20.12.4 to 20.12.5 @dependabot (#5709)
- Bump diff2html from 3.4.47 to 3.4.48 @dependabot (#5708)
- Bump pg from 8.11.3 to 8.11.5 @dependabot (#5698)
- Bump cypress from 13.7.1 to 13.7.2 @dependabot (#5697)
- Bump @types/node from 20.11.30 to 20.12.4 @dependabot (#5701)
- Bump @aws-sdk/client-s3 from 3.540.0 to 3.549.0 @dependabot (#5703)
- Bump tsx from 4.7.1 to 4.7.2 @dependabot (#5704)
- Bump @aws-sdk/client-config-service from 3.540.0 to 3.549.0 @dependabot (#5705)
v2.10.4
Hotfix for yarn.lock file mismatch
v2.10.3
Reverse hdf to ckl @Hookwitz (#4841)
## Dependency Updates
- Bump reflect-metadata from 0.2.1 to 0.2.2 @dependabot (#5693)
- Bump sequelize from 6.37.1 to 6.37.2 @dependabot (#5692)
- Bump @nestjs/serve-static from 4.0.1 to 4.0.2 @dependabot (#5691)
- Bump @nestjs/core from 10.3.6 to 10.3.7 @dependabot (#5684)
- Bump @nestjs/common from 10.3.6 to 10.3.7 @dependabot (#5685)
- Bump @nestjs/platform-express from 10.3.6 to 10.3.7 @dependabot (#5683)
- Bump @nestjs/testing from 10.3.6 to 10.3.7 @dependabot (#5682)
- Bump @nestjs/platform-express from 10.3.5 to 10.3.6 @dependabot (#5681)
- Bump @casl/ability from 6.7.0 to 6.7.1 @dependabot (#5677)
- Bump @nestjs/testing from 10.3.5 to 10.3.6 @dependabot (#5679)
- Bump tailwindcss from 3.4.1 to 3.4.3 @dependabot (#5680)
- Bump @nestjs/core from 10.3.5 to 10.3.6 @dependabot (#5678)
- Bump @nestjs/common from 10.3.5 to 10.3.6 @dependabot (#5676)
v2.10.2
- Modify default case to conform to format defined in CLI @DMedina6 (#5588)
- Update README.md @em-c-rod (#5623)
- Removed potential for an expired attestation to override the status of a control from being 'not reviewed' @Amndeep7 (#4526)
- HTML Reports based on filter data @georgedias (#5595)
## Dependency Updates
- Bump @nestjs/platform-express from 10.3.4 to 10.3.5 @dependabot (#5668)
- Bump express from 4.19.1 to 4.19.2 @dependabot (#5672)
- Bump eslint-plugin-vue from 9.23.0 to 9.24.0 @dependabot (#5670)
- Bump winston from 3.12.0 to 3.13.0 @dependabot (#5671)
- Bump @nestjs/common from 10.3.4 to 10.3.5 @dependabot (#5664)
- Bump @nestjs/core from 10.3.4 to 10.3.5 @dependabot (#5667)
- Bump @aws-sdk/client-s3 from 3.537.0 to 3.540.0 @dependabot (#5663)
- Bump @nestjs/testing from 10.3.4 to 10.3.5 @dependabot (#5661)
- Bump @e965/xlsx from 0.20.1 to 0.20.2 @dependabot (#5665)
- Bump webpack-dev-middleware from 5.3.3 to 5.3.4 @dependabot (#5669)
- Bump cypress from 13.7.0 to 13.7.1 @dependabot (#5660)
- Bump @aws-sdk/client-config-service from 3.535.0 to 3.540.0 @dependabot (#5662)
- Bump core-js from 3.36.0 to 3.36.1 @dependabot (#5657)
- Bump sanitize-html from 2.12.1 to 2.13.0 @dependabot (#5659)
- Bump express from 4.18.3 to 4.19.1 @dependabot (#5658)
- Bump @aws-sdk/client-s3 from 3.536.0 to 3.537.0 @dependabot (#5655)
- Bump @types/node from 20.11.29 to 20.11.30 @dependabot (#5656)
- Bump apexcharts from 3.47.0 to 3.48.0 @dependabot (#5654)
- Bump fast-xml-parser from 4.3.5 to 4.3.6 @dependabot (#5647)
- Bump @nestjs/testing from 10.3.3 to 10.3.4 @dependabot (#5651)
- Bump @types/node from 20.11.28 to 20.11.29 @dependabot (#5648)
- Bump @nestjs/platform-express from 10.3.3 to 10.3.4 @dependabot (#5652)
- Bump @aws-sdk/client-s3 from 3.535.0 to 3.536.0 @dependabot (#5653)
- Bump @nestjs/common from 10.3.3 to 10.3.4 @dependabot (#5649)
- Bump date-fns from 3.5.0 to 3.6.0 @dependabot (#5650)
- Bump @nestjs/core from 10.3.3 to 10.3.4 @dependabot (#5646)
- Bump @types/node from 20.11.27 to 20.11.28 @dependabot (#5639)
- Bump date-fns from 3.4.0 to 3.5.0 @dependabot (#5642)
- Bump @aws-sdk/client-s3 from 3.534.0 to 3.535.0 @dependabot (#5641)
- Bump @aws-sdk/client-config-service from 3.533.0 to 3.535.0 @dependabot (#5643)
- Bump axios from 1.6.7 to 1.6.8 @dependabot (#5640)
- Bump @aws-sdk/client-s3 from 3.529.1 to 3.534.0 @dependabot (#5635)
- Bump @types/node from 20.11.26 to 20.11.27 @dependabot (#5629)
- Bump @smithy/node-http-handler from 2.4.3 to 2.5.0 @dependabot (#5637)
- Bump cypress from 13.6.6 to 13.7.0 @dependabot (#5633)
- Bump follow-redirects from 1.15.5 to 1.15.6 @dependabot (#5638)
- Bump adm-zip from 0.5.10 to 0.5.12 @dependabot (#5636)
- Bump @aws-sdk/client-config-service from 3.529.1 to 3.533.0 @dependabot (#5627)
- Bump typedoc from 0.25.11 to 0.25.12 @dependabot (#5617)
- Bump @smithy/node-http-handler from 2.4.2 to 2.4.3 @dependabot (#5625)
- Bump @types/lodash from 4.14.202 to 4.17.0 @dependabot (#5626)
- Bump d3 from 7.8.5 to 7.9.0 @dependabot (#5624)
- Bump date-fns from 3.3.1 to 3.4.0 @dependabot (#5618)
- Bump @types/node from 20.11.25 to 20.11.26 @dependabot (#5620)
- Bump dotenv-cli from 7.4.0 to 7.4.1 @dependabot (#5621)
- Bump eslint-plugin-vue from 9.22.0 to 9.23.0 @dependabot (#5619)
- Bump apexcharts from 3.46.0 to 3.47.0 @dependabot (#5614)
- Bump @vue/eslint-config-typescript from 12.0.0 to 13.0.0 @dependabot (#5615)
- Bump dotenv-cli from 7.3.0 to 7.4.0 @dependabot (#5610)
- Bump @types/node from 20.11.24 to 20.11.25 @dependabot (#5606)
- Bump @aws-sdk/client-config-service from 3.525.0 to 3.529.1 @dependabot (#5609)
- Bump @aws-sdk/client-s3 from 3.525.0 to 3.529.1 @dependabot (#5613)
- Bump @smithy/node-http-handler from 2.4.1 to 2.4.2 @dependabot (#5611)
- Bump jose from 4.15.4 to 4.15.5 @dependabot (#5608)
- Bump typedoc from 0.25.10 to 0.25.11 @dependabot (#5607)
- Bump yaml from 2.4.0 to 2.4.1 @dependabot (#5605)
- Bump winston from 3.11.0 to 3.12.0 @dependabot (#5599)
- Bump html-entities from 2.4.0 to 2.5.2 @dependabot (#5600)
- Bump express-rate-limit from 7.1.5 to 7.2.0 @dependabot (#5601)
- Bump typedoc from 0.25.9 to 0.25.10 @dependabot (#5598)
- Bump @aws-sdk/client-s3 from 3.523.0 to 3.525.0 @dependabot (#5591)
- Bump @aws-sdk/client-config-service from 3.523.0 to 3.525.0 @dependabot (#5592)
- Bump @aws-sdk/client-sts from 3.523.0 to 3.525.0 @dependabot (#5594)
- Bump express from 4.18.2 to 4.18.3 @dependabot (#5593)
- Bump @types/node from 20.11.20 to 20.11.24 @dependabot (#5590)
v2.10.1
- Add refs to details tab @Amndeep7 (#5587)
- Node1819plus - requires minimum of Node 18.19 now @Amndeep7 (#5574)
## Dependency Updates
- Bump csv-stringify from 6.4.5 to 6.4.6 @dependabot (#5582)
- Bump @aws-sdk/client-config-service from 3.521.0 to 3.523.0 @dependabot (#5585)
- Bump @aws-sdk/client-s3 from 3.521.0 to 3.523.0 @dependabot (#5586)
- Bump @aws-sdk/client-sts from 3.521.0 to 3.523.0 @dependabot (#5581)
- Bump typedoc from 0.25.8 to 0.25.9 @dependabot (#5575)
- Bump fast-xml-parser from 4.3.4 to 4.3.5 @dependabot (#5578)
- Bump es5-ext from 0.10.62 to 0.10.64 @dependabot (#5580)
- Bump @types/express-session from 1.17.10 to 1.18.0 @dependabot (#5577)
- Bump yaml from 2.3.4 to 2.4.0 @dependabot (#5576)
- Bump @aws-sdk/client-s3 from 3.515.0 to 3.521.0 @dependabot (#5569)
- Bump @aws-sdk/client-config-service from 3.517.0 to 3.521.0 @dependabot (#5570)
- Bump @aws-sdk/client-sts from 3.515.0 to 3.521.0 @dependabot (#5572)
- Bump @casl/ability from 6.5.0 to 6.7.0 @dependabot (#5571)
- Bump eslint from 8.56.0 to 8.57.0 @dependabot (#5568)
- Bump eslint-plugin-vue from 9.21.1 to 9.22.0 @dependabot (#5567)
- Bump @types/node from 20.11.19 to 20.11.20 @dependabot (#5566)
- Bump sanitize-html from 2.12.0 to 2.12.1 @dependabot (#5564)
- Bump @smithy/node-http-handler from 2.3.1 to 2.4.0 @dependabot (#5565)
- Bump cypress from 13.6.5 to 13.6.6 @dependabot (#5563)
- Bump sanitize-html from 2.11.0 to 2.12.0 @dependabot (#5562)
- Bump fast-xml-parser from 4.3.3 to 4.3.4 @dependabot (#5490)
- Bump cypress from 13.6.4 to 13.6.5 @dependabot (#5561)
v2.9.6
- Passport openidconnect clarifications @kentpsanders (#5548)
- Alternate passport-openidconnect 1.1.0 @kentpsanders (#5512)
- Db schema scripts @georgedias (#5414)
- Add ability to inject cacerts into the Heimdall container @Amndeep7 (#5410)
- Group users bug fix @georgedias (#5555)
## Dependency Updates
- Bump @aws-sdk/client-config-service from 3.514.0 to 3.515.0 @dependabot (#5553)
- Bump @types/node from 20.11.17 to 20.11.19 @dependabot (#5552)
- Bump @aws-sdk/client-s3 from 3.514.0 to 3.515.0 @dependabot (#5551)
- Bump @aws-sdk/client-sts from 3.513.0 to 3.515.0 @dependabot (#5550)
- Bump lerna from 5.6.2 to 8.1.2 @dependabot (#5508)
- Bump core-js from 3.35.1 to 3.36.0 @dependabot (#5545)
- Bump @aws-sdk/client-s3 from 3.513.0 to 3.514.0 @dependabot (#5547)
- Bump vuetify from 2.7.1 to 2.7.2 @dependabot (#5544)
- Bump @aws-sdk/client-config-service from 3.513.0 to 3.514.0 @dependabot (#5543)
- Bump helmet from 4.6.0 to 7.1.0 @dependabot (#5200)
- Bump @nestjs/core from 10.3.2 to 10.3.3 @dependabot (#5528)
- Bump @aws-sdk/client-s3 from 3.511.0 to 3.513.0 @dependabot (#5537)
- Bump @aws-sdk/client-config-service from 3.511.0 to 3.513.0 @dependabot (#5539)
- Bump @aws-sdk/client-sts from 3.511.0 to 3.513.0 @dependabot (#5538)
- Bump reflect-metadata from 0.1.14 to 0.2.1 @dependabot (#5540)
- Bump dotenv from 16.4.3 to 16.4.4 @dependabot (#5536)
- Bump @nestjs/testing from 10.3.2 to 10.3.3 @dependabot (#5532)
- Bump @nestjs/sequelize from 10.0.0 to 10.0.1 @dependabot (#5533)
- Bump @nestjs/platform-express from 10.3.2 to 10.3.3 @dependabot (#5531)
- Bump sequelize from 6.36.0 to 6.37.0 @dependabot (#5535)
- Bump dotenv from 16.4.1 to 16.4.3 @dependabot (#5534)
- Bump diff from 5.1.0 to 5.2.0 @dependabot (#5530)
- Bump typedoc from 0.25.7 to 0.25.8 @dependabot (#5526)
- Bump @nestjs/common from 10.3.2 to 10.3.3 @dependabot (#5529)
- Bump @aws-sdk/client-config-service from 3.509.0 to 3.511.0 @dependabot (#5525)
- Bump @aws-sdk/client-s3 from 3.509.0 to 3.511.0 @dependabot (#5524)
- Bump @aws-sdk/client-sts from 3.507.0 to 3.511.0 @dependabot (#5527)
- Bump @nestjs/common from 10.3.1 to 10.3.2 @dependabot (#5518)
- Bump @types/node from 20.11.16 to 20.11.17 @dependabot (#5523)
- Bump @nestjs/core from 10.3.1 to 10.3.2 @dependabot (#5515)
- Bump @nestjs/platform-express from 10.3.1 to 10.3.2 @dependabot (#5516)
- Bump vue-template-compiler from 2.6.14 to 2.7.16 @dependabot (#5392)
- Bump @nestjs/schematics from 10.1.0 to 10.1.1 @dependabot (#5522)
- Bump @nestjs/serve-static from 4.0.0 to 4.0.1 @dependabot (#5521)
- Bump @nestjs/cli from 10.3.1 to 10.3.2 @dependabot (#5517)
- Bump @types/chroma-js from 2.4.3 to 2.4.4 @dependabot (#5519)
- Bump @aws-sdk/client-config-service from 3.507.0 to 3.509.0 @dependabot (#5520)
- Bump @aws-sdk/client-s3 from 3.507.0 to 3.509.0 @dependabot (#5514)
- Bump @nestjs/testing from 10.3.1 to 10.3.2 @dependabot (#5513)
- Bump prettier from 2.8.8 to 3.2.4 @dependabot (#5449)
- Bump @types/sanitize-html from 2.9.5 to 2.11.0 @dependabot (#5505)
- Bump @types/validator from 13.11.8 to 13.11.9 @dependabot (#5507)
- Bump @aws-sdk/client-config-service from 3.504.0 to 3.507.0 @dependabot (#5506)
- Bump @nestjs/cli from 10.3.0 to 10.3.1 @dependabot (#5504)
- Bump @aws-sdk/client-s3 from 3.504.0 to 3.507.0 @dependabot (#5503)
- Bump passport-oauth2 from 1.7.0 to 1.8.0 @dependabot (#5502)
- Bump sequelize from 6.35.2 to 6.36.0 @dependabot (#5501)
- Bump @types/uuid from 9.0.7 to 9.0.8 @dependabot (#5477)
- Bump @aws-sdk/client-s3 from 3.496.0 to 3.504.0 @dependabot (#5496)
- Bump express-session from 1.17.3 to 1.18.0 @dependabot (#5483)
- Bump eslint-plugin-vue from 9.20.1 to 9.21.1 @dependabot (#5497)
- Bump @types/node from 20.11.5 to 20.11.16 @dependabot (#5500)
- Bump cypress from 13.6.3 to 13.6.4 @dependabot (#5494)
- Bump @aws-sdk/client-config-service from 3.496.0 to 3.504.0 @dependabot (#5498)
- Bump axios from 1.6.5 to 1.6.7 @dependabot (#5474)
- Bump @types/passport-jwt from 4.0.0 to 4.0.1 @dependabot (#5481)
- Bump @nestjs/testing from 10.3.0 to 10.3.1 @dependabot (#5487)
- Bump @nestjs/core from 10.3.0 to 10.3.1 @dependabot (#5466)
- Bump @nestjs/platform-express from 10.3.0 to 10.3.1 @dependabot (#5464)
- Bump @aws-sdk/client-sts from 3.496.0 to 3.501.0 @dependabot (#5480)
- Bump sass-loader from 14.0.0 to 14.1.0 @dependabot (#5493)
- Bump lru-cache from 10.1.0 to 10.2.0 @dependabot (#5476)
- Bump dotenv from 16.3.2 to 16.4.1 @dependabot (#5469)
- Bump @nestjs/common from 10.3.0 to 10.3.1 @dependabot (#5463)
- Bump ts-jest from 29.1.1 to 29.1.2 @dependabot (#5460)
- Bump apexcharts from 3.45.1 to 3.45.2 @dependabot (#5458)
- Bump core-js from 3.35.0 to 3.35.1 @dependabot (#5461)
- Bump date-fns from 3.2.0 to 3.3.1 @dependabot (#5459)
- Bump @types/luxon from 3.4.1 to 3.4.2 @dependabot (#5457)
- Bump dotenv from 16.3.1 to 16.3.2 @dependabot (#5456)
- Bump @aws-sdk/client-s3 from 3.495.0 to 3.496.0 @dependabot (#5455)
- Bump @aws-sdk/client-config-service from 3.495.0 to 3.496.0 @dependabot (#5453)
- Bump @aws-sdk/client-sts from 3.495.0 to 3.496.0 @dependabot (#5454)
v2.9.5
- Fix error message incorrectly showing up for overlay profile results @Amndeep7 (#5437)
- Add tags in results view fix @georgedias (#5432)
- Add tags in results view fix @georgedias (#5432)
## Dependency Updates
- Bump @smithy/node-http-handler from 2.2.2 to 2.3.0 @dependabot (#5448)
- Bump @types/node from 20.11.3 to 20.11.4 @dependabot (#5445)
- Bump cypress from 13.6.2 to 13.6.3 @dependabot (#5444)
- Bump html-loader from 4.2.0 to 5.0.0 @dependabot (#5443)
- Bump @types/luxon from 3.4.0 to 3.4.1 @dependabot (#5439)
- Bump supertest from 6.3.3 to 6.3.4 @dependabot (#5442)
- Bump sass-loader from 13.3.3 to 14.0.0 @dependabot (#5441)
- Bump @types/node from 20.11.0 to 20.11.3 @dependabot (#5438)
- Bump eslint-plugin-vue from 9.20.0 to 9.20.1 @dependabot (#5434)
- Bump class-validator from 0.14.0 to 0.14.1 @dependabot (#5436)
- Bump diff2html from 3.4.46 to 3.4.47 @dependabot (#5433)
- Bump @aws-sdk/client-s3 from 3.489.0 to 3.490.0 @dependabot (#5428)
- Bump @aws-sdk/client-config-service from 3.489.0 to 3.490.0 @dependabot (#5430)
- Bump @types/sequelize from 4.28.19 to 4.28.20 @dependabot (#5431)
- Bump @types/node from 20.10.8 to 20.11.0 @dependabot (#5427)
- Bump @types/node from 20.10.7 to 20.10.8 @dependabot (#5417)
- Bump @aws-sdk/client-s3 from 3.485.0 to 3.489.0 @dependabot (#5424)
- Bump fast-xml-parser from 4.3.2 to 4.3.3 @dependabot (#5423)
- Bump @aws-sdk/client-config-service from 3.486.0 to 3.489.0 @dependabot (#5420)
- Bump eslint-plugin-vue from 9.19.2 to 9.20.0 @dependabot (#5421)
- Bump @aws-sdk/client-sts from 3.485.0 to 3.489.0 @dependabot (#5422)
- Bump @types/sinon from 17.0.2 to 17.0.3 @dependabot (#5419)
- Bump date-fns from 3.1.0 to 3.2.0 @dependabot (#5416)
v2.9.4
- Update pagination count logic @georgedias (#5402)
## Dependency Updates
Bump @aws-sdk/client-s3 from 3.484.0 to 3.485.0
Bump chai from 4.3.10 to 4.4.0
Bump htmlparser2 from 6.1.0 to 9.1.0
Bump tailwindcss from 3.4.0 to 3.4.1
Bump date-fns from 3.0.6 to 3.1.0
Bump @types/passport-jwt from 3.0.13 to 4.0.0
Bump @aws-sdk/client-config-service from 3.484.0 to 3.486.0
Bump @types/luxon from 3.3.7 to 3.4.0
v2.9.3
- Database load pagination @georgedias (#5183)
## Dependency Updates
- Bump @aws-sdk/client-s3 from 3.481.0 to 3.484.0 @dependabot (#5388)
- Bump typedoc from 0.25.4 to 0.25.6 @dependabot (#5393)
- Bump @types/node from 20.10.5 to 20.10.6 @dependabot (#5391)
- Bump @aws-sdk/client-config-service from 3.481.0 to 3.484.0 @dependabot (#5389)
- Bump @aws-sdk/client-sts from 3.481.0 to 3.484.0 @dependabot (#5390)
- Bump core-js from 3.34.0 to 3.35.0 @dependabot (#5387)
- Bump moment from 2.29.4 to 2.30.1 @dependabot (#5385)
- Bump @types/supertest from 6.0.1 to 6.0.2 @dependabot (#5386)
- Bump axios from 1.6.2 to 1.6.3 @dependabot (#5381)
- Bump @aws-sdk/client-s3 from 3.478.0 to 3.481.0 @dependabot (#5379)
- Bump cypress from 13.6.1 to 13.6.2 @dependabot (#5378)
- Bump @aws-sdk/client-config-service from 3.478.0 to 3.481.0 @dependabot (#5383)
- Bump sass-loader from 10.5.0 to 13.3.3 @dependabot (#5376)
- Bump @mdi/js from 7.3.67 to 7.4.47 @dependabot (#5380)
- Bump @mdi/font from 7.3.67 to 7.4.47 @dependabot (#5382)
- Bump @aws-sdk/client-sts from 3.478.0 to 3.481.0 @dependabot (#5377)
- Bump apexcharts from 3.45.0 to 3.45.1 @dependabot (#5374)
- Bump @types/supertest from 2.0.16 to 6.0.1 @dependabot (#5373)
- Bump date-fns from 3.0.5 to 3.0.6 @dependabot (#5372)
- Bump date-fns from 3.0.3 to 3.0.5 @dependabot (#5371)
- Bump @aws-sdk/client-s3 from 3.477.0 to 3.478.0 @dependabot (#5369)
- Bump @aws-sdk/client-config-service from 3.477.0 to 3.478.0 @dependabot (#5366)
- Bump @aws-sdk/client-sts from 3.477.0 to 3.478.0 @dependabot (#5368)
- Bump date-fns from 3.0.1 to 3.0.3 @dependabot (#5367)
- Bump tailwindcss from 3.3.7 to 3.4.0 @dependabot (#5365)
- Bump @aws-sdk/client-config-service from 3.476.0 to 3.477.0 @dependabot (#5363)
- Bump @aws-sdk/client-s3 from 3.476.0 to 3.477.0 @dependabot (#5362)
- Bump date-fns from 3.0.0 to 3.0.1 @dependabot (#5364)
- Bump @aws-sdk/client-sts from 3.476.0 to 3.477.0 @dependabot (#5361)
v2.9.2
- Upgrade to aws sdk v3 @Amndeep7 (#5310)
- Possible Copy Workaround For HTTP @ChrisHinchey (#5235)
- Quick Fixes For Heimdall Issues @ChrisHinchey (#5237)
- Add Better Error Display @ChrisHinchey (#5298)
- Fix Group Empty Array Bug @ChrisHinchey (#5236)
- Add Missing HTML Export Static Files @ChrisHinchey (#5260)
- Undefined Evaluation Bug Fix @ChrisHinchey (#5234)
- Update evaluations.controller.ts @hstefan2200 (#5171)
## Dependency Updates
- Bump @aws-sdk/client-config-service from 3.470.0 to 3.473.0 @dependabot (#5341)
- Bump @aws-sdk/client-s3 from 3.472.0 to 3.473.0 @dependabot (#5340)
- Bump @aws-sdk/client-sts from 3.470.0 to 3.473.0 @dependabot (#5339)
- Bump @aws-sdk/client-s3 from 3.470.0 to 3.472.0 @dependabot (#5338)
- Bump @aws-sdk/client-config-service from 3.468.0 to 3.470.0 @dependabot (#5334)
- Bump sequelize from 6.35.1 to 6.35.2 @dependabot (#5337)
- Bump csv-stringify from 6.4.4 to 6.4.5 @dependabot (#5335)
- Bump @aws-sdk/client-s3 from 3.468.0 to 3.470.0 @dependabot (#5332)
- Bump @aws-sdk/client-s3 from 3.465.0 to 3.468.0 @dependabot (#5328)
- Bump @types/node from 20.10.3 to 20.10.4 @dependabot (#5331)
- Bump reflect-metadata from 0.1.13 to 0.1.14 @dependabot (#5330)
- Bump sanitize-html from 2.7.3 to 2.11.0 @dependabot (#4638)
- Bump @aws-sdk/client-config-service from 3.465.0 to 3.468.0 @dependabot (#5327)
- Bump cypress from 13.6.0 to 13.6.1 @dependabot (#5322)
- Bump passport from 0.6.0 to 0.7.0 @dependabot (#5323)
- Bump @e965/xlsx from 0.20.0 to 0.20.1 @dependabot (#5320)
- Bump apexcharts from 3.44.1 to 3.44.2 @dependabot (#5321)
- Bump aws-sdk from 2.1510.0 to 2.1511.0 @dependabot (#5314)
- Bump @nestjs/passport from 10.0.2 to 10.0.3 @dependabot (#5311)
- Bump tw-elements from 1.0.0 to 1.1.0 @dependabot (#5316)
- Bump tailwindcss from 3.3.5 to 3.3.6 @dependabot (#5317)
- Bump @types/node from 20.10.2 to 20.10.3 @dependabot (#5318)
- Bump eslint-config-prettier from 9.0.0 to 9.1.0 @dependabot (#5315)
- Bump @types/luxon from 3.3.6 to 3.3.7 @dependabot (#5312)
- Bump apexcharts from 3.44.0 to 3.44.1 @dependabot (#5313)
- Bump aws-sdk from 2.1508.0 to 2.1510.0 @dependabot (#5307)
- Bump @types/luxon from 3.3.5 to 3.3.6 @dependabot (#5306)
- Bump @types/node from 20.10.1 to 20.10.2 @dependabot (#5308)
- Bump eslint from 8.54.0 to 8.55.0 @dependabot (#5309)
- Bump eslint-plugin-vue from 9.18.1 to 9.19.2 @dependabot (#5304)
- Bump aws-sdk from 2.1506.0 to 2.1508.0 @dependabot (#5299)
- Bump @types/node from 20.10.0 to 20.10.1 @dependabot (#5300)
- Bump @types/papaparse from 5.3.13 to 5.3.14 @dependabot (#5293)
- Bump aws-sdk from 2.1504.0 to 2.1506.0 @dependabot (#5296)
- Bump typedoc from 0.25.3 to 0.25.4 @dependabot (#5294)
- Bump aws-sdk from 2.1502.0 to 2.1504.0 @dependabot (#5292)
- Bump sequelize-typescript from 2.1.5 to 2.1.6 @dependabot (#5290)
- Bump @types/node from 20.9.5 to 20.10.0 @dependabot (#5289)
- Bump express-rate-limit from 7.1.4 to 7.1.5 @dependabot (#5291)
- Bump @types/lodash from 4.14.201 to 4.14.202 @dependabot (#5280)
- Bump @types/node from 20.9.4 to 20.9.5 @dependabot (#5288)
- Bump cypress from 13.5.1 to 13.6.0 @dependabot (#5283)
- Bump aws-sdk from 2.1501.0 to 2.1502.0 @dependabot (#5285)
- Bump @types/sequelize from 4.28.18 to 4.28.19 @dependabot (#5282)
- Bump @nestjs/core from 10.2.8 to 10.2.10 @dependabot (#5266)
- Bump @types/papaparse from 5.3.12 to 5.3.13 @dependabot (#5277)
- Bump @types/node from 20.9.3 to 20.9.4 @dependabot (#5281)
- Bump @types/chai from 4.3.10 to 4.3.11 @dependabot (#5279)
- Bump aws-sdk from 2.1500.0 to 2.1501.0 @dependabot (#5278)
- Bump @types/luxon from 3.3.4 to 3.3.5 @dependabot (#5265)
- Bump @types/validator from 13.11.6 to 13.11.7 @dependabot (#5274)
- Bump @types/concat-stream from 2.0.2 to 2.0.3 @dependabot (#5271)
- Bump @types/adm-zip from 0.5.4 to 0.5.5 @dependabot (#5275)
- Bump @nestjs/common from 10.2.9 to 10.2.10 @dependabot (#5269)
- Bump sequelize from 6.35.0 to 6.35.1 @dependabot (#5267)
- Bump @types/sinon from 17.0.1 to 17.0.2 @dependabot (#5273)
- Bump @types/multer from 1.4.10 to 1.4.11 @dependabot (#5262)
- Bump @types/node from 20.9.1 to 20.9.3 @dependabot (#5276)
- Bump @types/papaparse from 5.3.11 to 5.3.12 @dependabot (#5263)
- Bump aws-sdk from 2.1499.0 to 2.1500.0 @dependabot (#5268)
- Bump core-js from 3.33.2 to 3.33.3 @dependabot (#5264)
- Bump @nestjs/platform-express from 10.2.9 to 10.2.10 @dependabot (#5261)
- Bump @nestjs/common from 10.2.8 to 10.2.9 @dependabot (#5256)
- Bump eslint from 8.53.0 to 8.54.0 @dependabot (#5257)
- Bump aws-sdk from 2.1498.0 to 2.1499.0 @dependabot (#5255)
- Bump @nestjs/platform-express from 10.2.8 to 10.2.9 @dependabot (#5253)
- Bump @types/node from 20.9.0 to 20.9.1 @dependabot (#5251)
- Bump aws-sdk from 2.1497.0 to 2.1498.0 @dependabot (#5252)
- Bump ts-loader from 9.5.0 to 9.5.1 @dependabot (#5250)
- Bump aws-sdk from 2.1496.0 to 2.1497.0 @dependabot (#5249)
- Bump axios from 1.6.1 to 1.6.2 @dependabot (#5245)
- Bump luxon from 3.4.3 to 3.4.4 @dependabot (#5240)
- Bump cypress from 13.5.0 to 13.5.1 @dependabot (#5244)
- Bump aws-sdk from 2.1494.0 to 2.1496.0 @dependabot (#5243)
- Bump sequelize from 6.34.0 to 6.35.0 @dependabot (#5239)
- Bump aws-sdk from 2.1493.0 to 2.1494.0 @dependabot (#5232)
- Bump prettier-plugin-organize-imports from 3.2.3 to 3.2.4 @dependabot (#5230)
- Bump @nestjs/jwt from 10.1.1 to 10.2.0 @dependabot (#5229)
- Bump aws-sdk from 2.1492.0 to 2.1493.0 @dependabot (#5231)
- Bump @types/triple-beam from 1.3.4 to 1.3.5 @dependabot (#5213)
- Bump cypress from 13.4.0 to 13.5.0 @dependabot (#5223)
- Bump aws-sdk from 2.1489.0 to 2.1492.0 @dependabot (#5225)
- Bump @types/multer from 1.4.9 to 1.4.10 @dependabot (#5217)
- Bump axios from 1.6.0 to 1.6.1 @dependabot (#5224)
- Bump @types/validator from 13.11.5 to 13.11.6 @dependabot (#5211)
- Bump @types/sequelize from 4.28.17 to 4.28.18 @dependabot (#5220)
- Bump @types/express from 4.17.20 to 4.17.21 @dependabot (#5204)
- Bump @types/vuelidate from 0.7.20 to 0.7.21 @dependabot (#5215)
- Bump @types/passport-github from 1.1.11 to 1.1.12 @dependabot (#5214)
- Bump @types/file-saver from 2.0.6 to 2.0.7 @dependabot (#5201)
- Bump @types/chai from 4.3.9 to 4.3.10 @dependabot (#5203)
- Bump @types/ms from 0.7.33 to 0.7.34 @dependabot (#5218)
- Bump @types/luxon from 3.3.3 to 3.3.4 @dependabot (#5219)
- Bump @types/node from 20.8.10 to 20.9.0 @dependabot (#5199)
- Bump @types/d3 from 7.4.2 to 7.4.3 @dependabot (#5209)
- Bump @types/express-session from 1.17.9 to 1.17.10 @dependabot (#5207)
- Bump @types/passport-local from 1.0.37 to 1.0.38 @dependabot (#5202)
- Bump @types/uuid from 9.0.6 to 9.0.7 @dependabot (#5197)
- Bump @types/mustache from 4.2.4 to 4.2.5 @dependabot (#5198)
- Bump @types/passport-jwt from 3.0.12 to 3.0.13 @dependabot (#5212)
- Bump @types/js-levenshtein from 1.1.2 to 1.1.3 @dependabot (#5210)
- Bump @types/papaparse from 5.3.10 to 5.3.11 @dependabot (#5221)
- Bump @types/prismjs from 1.26.2 to 1.26.3 @dependabot (#5195)
- Bump express-rate-limit from 7.1.3 to 7.1.4 @dependabot (#5184)
- Bump @types/mock-fs from 4.13.3 to 4.13.4 @dependabot (#5196)
- Bump @types/xml2js from 0.4.13 to 0.4.14 @dependabot (#5205)
- Bump @types/chroma-js from 2.4.2 to 2.4.3 @dependabot (#5208)
- Bump @types/supertest from 2.0.15 to 2.0.16 @dependabot (#5193)
- Bump @types/diff from 5.0.7 to 5.0.8 @dependabot (#5194)
- Bump @types/sinon from 17.0.0 to 17.0.1 @dependabot (#5216)
- Bump @types/lodash from 4.14.200 to 4.14.201 @dependabot (#5192)
- Bump aws-sdk from 2.1487.0 to 2.1489.0 @dependabot (#5190)
- Bump @types/bcryptjs from 2.4.5 to 2.4.6 @dependabot (#5191)
- Bump @types/adm-zip from 0.5.3 to 0.5.4 @dependabot (#5189)
- Bump @types/csv2json from 1.4.4 to 1.4.5 @dependabot (#5186)
- Bump @types/connect-pg-simple from 7.0.2 to 7.0.3 @dependabot (#5188)
- Bump @types/chai-as-promised from 7.1.7 to 7.1.8 @dependabot (#5187)
- Bump @types/concat-stream from 2.0.1 to 2.0.2 @dependabot (#5185)
- Bump yaml from 2.3.3 to 2.3.4 @dependabot (#5178)
- Bump sequelize from 6.33.0 to 6.34.0 @dependabot (#5182)
- Bump @types/sinon from 10.0.19 to 17.0.0 @dependabot (#5180)
- Bump sequelize-cli from 6.6.1 to 6.6.2 @dependabot (#5181)
- Bump eslint from 8.52.0 to 8.53.0 @dependabot (#5176)
- Bump @nestjs/core from 10.2.7 to 10.2.8 @dependabot (#5174)
- Bump @nestjs/platform-express from 10.2.7 to 10.2.8 @dependabot (#5175)
- Bump aws-sdk from 2.1486.0 to 2.1487.0 @dependabot (#5173)
- Bump @nestjs/common from 10.2.7 to 10.2.8 @dependabot (#5172)
- Bump aws-sdk from 2.1485.0 to 2.1486.0 @dependabot (#5169)
- Bump @types/node from 20.8.9 to 20.8.10 @dependabot (#5165)
- Bump connect-pg-simple from 9.0.0 to 9.0.1 @dependabot (#5167)
- Bump sinon from 17.0.0 to 17.0.1 @dependabot (#5168)
- Bump aws-sdk from 2.1484.0 to 2.1485.0 @dependabot (#5164)
v2.8.8
- LDAPS @Amndeep7 (#5146)
## Dependency Updates
- Bump oauth2-mock-server from 7.0.0 to 7.1.1 @dependabot (#5137)
- Bump typedoc from 0.25.2 to 0.25.3 @dependabot (#5156)
- Bump @nestjs/cli from 10.2.0 to 10.2.1 @dependabot (#5158)