-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.yml
2782 lines (2688 loc) · 87.1 KB
/
changelog.yml
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
- semver: 0.5.3
date: 2024-08-29T23:00:53-04:00
packager: unclesp1d3r
changes:
- commit: 6e54a44cb37b0d7d9bc41cac487ef358876f2a94
note: 'chore: Updated changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 3ad433e61c663d5b21252ed799b3af7a2feae91d
note: 'refactor: Code changes to try and make golangci-lint happy'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: refactor
scope: ""
description: Code changes to try and make golangci-lint happy
body: ""
footer: []
major: false
minor: false
patch: true
- commit: 36ebebeb4d772459795b6ba32a72459a1ee74414
note: 'chore: Update changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Update changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: c1869a60e6e8263c14276ecbde9db45b5c605808
note: |-
feat: Devices are now identified using hashcat rather than a brittle shell script
The system now runs a tiny attack job upon the agent’s startup, which verifies that the hashcat is working correctly and then identifies the devices detected by the hashcat. This is much more accurate than the legacy technique since it conforms to what hashcat will actually use.
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: feat
scope: ""
description: Devices are now identified using hashcat rather than a brittle shell script
body: The system now runs a tiny attack job upon the agent’s startup, which verifies that the hashcat is working correctly and then identifies the devices detected by the hashcat. This is much more accurate than the legacy technique since it conforms to what hashcat will actually use.
footer: []
major: false
minor: true
patch: false
- commit: 34759e79898780aaa1888195386eed02547bd868
note: 'refactor: Minor cleanup of hashcat session code'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: refactor
scope: ""
description: Minor cleanup of hashcat session code
body: ""
footer: []
major: false
minor: false
patch: true
- commit: f6403afd9b18ab0e0b5842a022c27b8d9e00c1de
note: 'fix: Finished enabling support for opencl-devices'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Finished enabling support for opencl-devices
body: ""
footer: []
major: false
minor: false
patch: true
- commit: 3ad2163375476f36c338576782f03322a4e20f7a
note: 'refactor: Minor code cleanup'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: refactor
scope: ""
description: Minor code cleanup
body: ""
footer: []
major: false
minor: false
patch: true
- commit: 83eed4ec65132f6a78a27992d92eb7ae95d5dbfc
note: 'chore: Updated CHANGELOG'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated CHANGELOG
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 8165e1229dda97a0f30526588ce7c19a403e106a
note: |-
feat: Added automatic hashcat capability
The hashcat session will be stored in the data directory, and if one is detected, it will automatically attempt to resume it when starting the attack. When the attack is complete, the restore file will be removed.
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: feat
scope: ""
description: Added automatic hashcat capability
body: The hashcat session will be stored in the data directory, and if one is detected, it will automatically attempt to resume it when starting the attack. When the attack is complete, the restore file will be removed.
footer: []
major: false
minor: true
patch: false
- semver: 0.5.2
date: 2024-08-27T19:54:17-04:00
packager: unclesp1d3r
changes:
- commit: 2deb4f81be0a58535ce70891bccf2ead2e7fb8a1
note: 'chore: Updated ChangeLog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated ChangeLog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 19dd475314ec7358d8d999493a99455a25ed320f
note: |-
fix: Fixed an issue causing SegFaults on weird HTTP errors
There was a condition where an HTTP error outside of the 4XX and 5XX range could cause a seg fault. I added more error checking to ensure that it only throws a verbose error and doesn’t crash the agent.
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Fixed an issue causing SegFaults on weird HTTP errors
body: There was a condition where an HTTP error outside of the 4XX and 5XX range could cause a seg fault. I added more error checking to ensure that it only throws a verbose error and doesn’t crash the agent.
footer: []
major: false
minor: false
patch: true
- commit: 1a98d7d69d10e1e275352daf0bd3af23ba985754
note: |-
fix: Fixed an issue causing SegFaults on weird HTTP errors
There was a condition where an HTTP error outside of the 4XX and 5XX range could cause a seg fault. I added more error checking to ensure that it only throws a verbose error and doesn’t crash the agent.
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Fixed an issue causing SegFaults on weird HTTP errors
body: There was a condition where an HTTP error outside of the 4XX and 5XX range could cause a seg fault. I added more error checking to ensure that it only throws a verbose error and doesn’t crash the agent.
footer: []
major: false
minor: false
patch: true
- semver: 0.5.1
date: 2024-08-26T21:34:21-04:00
packager: unclesp1d3r
changes:
- commit: c1bf22887b3717b530be0fae894e0f14907cfccc
note: 'chore: Updated CHANGELOG'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated CHANGELOG
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 19732b63a42f8b4d8919d795238d1877036fb8db
note: 'fix: Added significant error checking to client to prevent nil crashes'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Added significant error checking to client to prevent nil crashes
body: ""
footer: []
major: false
minor: false
patch: true
- semver: 0.5.0
date: 2024-08-26T02:27:02-04:00
packager: unclesp1d3r
changes:
- commit: 1d95828f203e9e9203946d7b561e63abdd54068e
note: 'chore: Update changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Update changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 2bb6d3fca8ffc6c4ccf3198acc51d3108f0535e5
note: 'feat: Added support for mask list files from v0.5.0 of API'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: feat
scope: ""
description: Added support for mask list files from v0.5.0 of API
body: ""
footer: []
major: false
minor: true
patch: false
- semver: 0.4.2
date: 2024-08-06T20:34:01-04:00
packager: unclesp1d3r
changes:
- commit: f9e524840c77a06b6c58951fd8a8f4921a031580
note: 'chore: Updated changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 3f7c518bcbaf16effb8cdc920401c16f1abf8702
note: 'refactor: Minor cleanup to meet formatting standards'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: refactor
scope: ""
description: Minor cleanup to meet formatting standards
body: ""
footer: []
major: false
minor: false
patch: true
- commit: 9391241fb05d03f5081a7f0db9f4eb2026163041
note: 'docs: Minor grammar changes to the README'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: docs
scope: ""
description: Minor grammar changes to the README
body: ""
footer: []
major: false
minor: false
patch: true
- commit: bce61a8a21217d3579e2b374d8baa19640e8d4b5
note: |-
fix: Upgraded to support version v0.7.2 of API
The API was refactored, introducing breaking changes in the SDK, so we needed to rename some packages and objects.
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Upgraded to support version v0.7.2 of API
body: The API was refactored, introducing breaking changes in the SDK, so we needed to rename some packages and objects.
footer: []
major: false
minor: false
patch: true
- semver: 0.4.1
date: 2024-07-31T22:47:42-04:00
packager: unclesp1d3r
changes:
- commit: 9d5067cf990e2aa0d35c6fb98fbf40dbf375ca8c
note: 'chore: Updated changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 333bf213cc7504394834d266dabc6c510c90bdbe
note: |-
fix: Automatic benchmark now performs all hash types
Since the benchmarking function determines what hash types this agent supports, we needed to change the feature to benchmark all hash types, not just the common ones. The agent’s initial startup is significantly slower now but supports more functionality. This can be turned off by setting `enable_additional_hash_types: false` in the agent config.
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Automatic benchmark now performs all hash types
body: Since the benchmarking function determines what hash types this agent supports, we needed to change the feature to benchmark all hash types, not just the common ones. The agent’s initial startup is significantly slower now but supports more functionality. This can be turned off by setting `
footer:
- 'enable_additional_hash_types: false` in the agent config.'
major: false
minor: false
patch: true
- semver: 0.4.0
date: 2024-07-29T20:48:26-04:00
packager: unclesp1d3r
changes:
- commit: b0546ead4cb945ef3071ab9288bccbd60fc4a034
note: 'chore: Updated changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: a2bb60b8cbe893a0eec530da20e1a9f280de339f
note: |-
feat: Added support for bidirectional status on status updates
This enables running tasks to be notified of hashes cracked in another task and pause tasks currently running.
We also added support for using a shared directory as a zap synchronization point. If configured, cracked hashes will be written to a directory, and the client will monitor that directory for new zaps.
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: feat
scope: ""
description: Added support for bidirectional status on status updates
body: |-
This enables running tasks to be notified of hashes cracked in another task and pause tasks currently running.
We also added support for using a shared directory as a zap synchronization point. If configured, cracked hashes will be written to a directory, and the client will monitor that directory for new zaps.
footer: []
major: false
minor: true
patch: false
- semver: 0.3.1
date: 2024-07-23T22:14:24-04:00
packager: unclesp1d3r
changes:
- commit: 69a84997d38d0c91eca7d541e6c888139a18bd67
note: Merge branch 'release/0.3.1'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Merge branch 'release/0.3.1'
body: ""
footer: []
major: false
minor: false
patch: false
- commit: a232e5381e82b49aad040b9d46943dd0cf6b3263
note: 'chore: Updated changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 3087b0b7586a635fdf0d3c6281bafd62ed27ff26
note: |-
fix: Tasks are accepted before the downloads start
Resolves #44
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Tasks are accepted before the downloads start
body: ""
footer:
- 'Resolves #44'
major: false
minor: false
patch: true
- commit: ba1bb6698c2814eab5090bb2653481d9482fb477
note: 'chore: Bumped chglog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Bumped chglog
body: ""
footer: []
major: false
minor: false
patch: false
- semver: 0.3.0
date: 2024-07-12T23:35:43-04:00
packager: unclesp1d3r
changes:
- commit: f1bbb575a3898959101eb2565c5addf64bd90c66
note: Merge branch 'release/0.3'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Merge branch 'release/0.3'
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 28ea10ab58504e9401afbbbd3676b4e985e996d8
note: 'chore: Updated changelog and bumped version number'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated changelog and bumped version number
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 6a89591a5d678092a37a2de4da15ab7859d4e994
note: |-
feat: Add support for zaps
Fixed #41
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: feat
scope: ""
description: Add support for zaps
body: ""
footer:
- 'Fixed #41'
major: false
minor: true
patch: false
- commit: 3cbdcded1a367fa3960ad221fd30cd4b9b2c89b6
note: 'chore: Bumped dependencies'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Bumped dependencies
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 981c4deb1e0f42964c973e0d450c7e3b567e404a
note: |-
fix: Fixed issue with always_use_native_hashcat on server messing up the client
When the server setting was set for the agent, the agent was not finding hashcat, but also not allowing it to be set via config or environment variable.
Fixes #39
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Fixed issue with always_use_native_hashcat on server messing up the client
body: When the server setting was set for the agent, the agent was not finding hashcat, but also not allowing it to be set via config or environment variable.
footer:
- 'Fixes #39'
major: false
minor: false
patch: true
- commit: 47f6bfcb7ae18472393cff0b87bfbf3c8d77cb49
note: |-
fix: Removed exessive output in standard debugging
Fixes issue #40
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Removed exessive output in standard debugging
body: Fixes
footer:
- 'issue #40'
major: false
minor: false
patch: true
- commit: 3901882dc56dec51ad9293809e95a7a4ef8264c5
note: |-
fix: Files directory can be set separate of the data dir
Fixes #38
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Files directory can be set separate of the data dir
body: ""
footer:
- 'Fixes #38'
major: false
minor: false
patch: true
- commit: dabeea672aa4d1a855ea157665b4b20595267342
note: |-
fix: Replaced tail library with one still maintained
Resolves #37
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Replaced tail library with one still maintained
body: ""
footer:
- 'Resolves #37'
major: false
minor: false
patch: true
- semver: 0.2.8
date: 2024-07-10T19:22:24-04:00
packager: unclesp1d3r
changes:
- commit: 10e67e176f402400bc70528146ad0a89466b7471
note: 'chore: Updated changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: a1bbafb789d4d51502b8947d3266b9204093a85c
note: 'fix: Added more checking for null tasks or attacks'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Added more checking for null tasks or attacks
body: ""
footer: []
major: false
minor: false
patch: true
- commit: 9bbdba0622720772529032bc4f9a99980b1ed7e5
note: 'chore: Bumped module versions'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Bumped module versions
body: ""
footer: []
major: false
minor: false
patch: false
- commit: bee6232a346a2b2f04e179293685a9e7a4498320
note: |-
chore(deps): Bump google.golang.org/grpc from 1.64.0 to 1.64.1 in the go_modules group (#36)
chore(deps): Bump google.golang.org/grpc in the go_modules group
Bumps the go_modules group with 1 update: [google.golang.org/grpc](https://github.com/grpc/grpc-go).
Updates `google.golang.org/grpc` from 1.64.0 to 1.64.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](https://github.com/grpc/grpc-go/compare/v1.64.0...v1.64.1)
---
updated-dependencies:
- dependency-name: google.golang.org/grpc
dependency-type: indirect
dependency-group: go_modules
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
author:
name: dependabot[bot]
email: 49699333+dependabot[bot]@users.noreply.github.com
committer:
name: GitHub
email: noreply@github.com
conventional_commit:
category: chore
scope: deps
description: Bump google.golang.org/grpc from 1.64.0 to 1.64.1 in the go_modules group (#36)
body: |-
chore(deps): Bump google.golang.org/grpc in the go_modules group
Bumps the go_modules group with 1
footer:
- |-
update: [google.golang.org/grpc](https://github.com/grpc/grpc-go).
Updates `google.golang.org/grpc` from 1.64.0 to 1.64.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](https://github.com/grpc/grpc-go/compare/v1.64.0...v1.64.1)
---
updated-dependencies:
- dependency-name: google.golang.org/grpc
dependency-type: indirect
dependency-group: go_modules
...
- 'Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>'
major: false
minor: false
patch: false
- commit: 60bf8b9b2c9184d3e7c260501e090cdbb8ea2459
note: 'chore(deps): Bump github.com/unclesp1d3r/cipherswarm-agent-sdk-go from 0.4.6 to 0.5.0 (#35)'
author:
name: dependabot[bot]
email: 49699333+dependabot[bot]@users.noreply.github.com
committer:
name: GitHub
email: noreply@github.com
conventional_commit:
category: chore
scope: deps
description: Bump github.com/unclesp1d3r/cipherswarm-agent-sdk-go from 0.4.6 to 0.5.0 (#35)
body: ""
footer: []
major: false
minor: false
patch: false
- semver: 0.2.7
date: 2024-07-01T17:55:42-04:00
packager: unclesp1d3r
changes:
- commit: c2e0d0bf20fc0f64e3f4d5b4261f47f8288c28db
note: 'chore: Updated Changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Updated Changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: ddcab787dd6ed5c2f91b27fbd0ffd20d4b02ff08
note: 'refactor: Moved utility code out of agentClient.go'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: refactor
scope: ""
description: Moved utility code out of agentClient.go
body: ""
footer: []
major: false
minor: false
patch: true
- commit: cd19aceac09288a2d4ff3fc0b1f645b3ea03c439
note: 'chore(deps): Bump github.com/hashicorp/go-getter from 1.7.4 to 1.7.5 (#34)'
author:
name: dependabot[bot]
email: 49699333+dependabot[bot]@users.noreply.github.com
committer:
name: GitHub
email: noreply@github.com
conventional_commit:
category: chore
scope: deps
description: Bump github.com/hashicorp/go-getter from 1.7.4 to 1.7.5 (#34)
body: ""
footer: []
major: false
minor: false
patch: false
- commit: d27d1aaffabf1bb38a9b6b32d975e30a01f290fc
note: 'chore(deps): Bump github.com/unclesp1d3r/cipherswarm-agent-sdk-go from 0.4.5 to 0.4.6 (#33)'
author:
name: dependabot[bot]
email: 49699333+dependabot[bot]@users.noreply.github.com
committer:
name: GitHub
email: noreply@github.com
conventional_commit:
category: chore
scope: deps
description: Bump github.com/unclesp1d3r/cipherswarm-agent-sdk-go from 0.4.5 to 0.4.6 (#33)
body: ""
footer: []
major: false
minor: false
patch: false
- semver: 0.2.6
date: 2024-06-21T00:33:49-04:00
packager: unclesp1d3r
changes:
- commit: f51530b10b7898bf36ac69192c8c8bea79b8bc5f
note: 'chore: Update changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Update changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 14e98276a8c07c30eb534cdce1874b6bb819f0cd
note: 'fix: Correctly handle when a running task is deleted'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Correctly handle when a running task is deleted
body: ""
footer: []
major: false
minor: false
patch: true
- semver: 0.2.5
date: 2024-06-17T21:06:06-04:00
packager: unclesp1d3r
changes:
- commit: e81049d93afbb6cc06dbcc4151757f7e1e6e367b
note: 'chore: Update changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Update changelog
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 27e16da1bdffea1b643c50a35a4e576be30d07f6
note: |-
fix: Fix incorrect status and benchmark output
The benchmark was incorrectly sending the time in ms to complete a hash instead of the number of hashes per second. Additionally, the cracked count was always 2, which wrong.
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: fix
scope: ""
description: Fix incorrect status and benchmark output
body: The benchmark was incorrectly sending the time in ms to complete a hash instead of the number of hashes per second. Additionally, the cracked count was always 2, which wrong.
footer: []
major: false
minor: false
patch: true
- semver: 0.2.4
date: 2024-06-16T21:33:22-04:00
packager: unclesp1d3r
changes:
- commit: c351f923f5e988591e8120ed4167a1ea470cfb99
note: 'chore: Bumped version tag'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer:
name: UncleSp1d3r
email: unclespider@protonmail.com
conventional_commit:
category: chore
scope: ""
description: Bumped version tag
body: ""
footer: []
major: false
minor: false
patch: false
- commit: 87c0eec87f8766bf836e02fbd30de8f3cc84fec0
note: 'chore: updated changelog'
author:
name: UncleSp1d3r
email: unclespider@protonmail.com
committer: