forked from Samsung/CredData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snapshot.yaml
1188 lines (1188 loc) · 38.8 KB
/
snapshot.yaml
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
- id: pBfFrJ0X
sha: 2abd898038aa362391856f91fd4f5abe33e1e88a
tag: v3.3.2-1-g2abd898
url: https://github.com/kubernetes/git-sync
- id: o2W4wJCO
sha: fa2771998a98a5bfdfa3c3503757668ac4f1c8ec
tag: v2.2-77-gfa27719
url: https://github.com/bitly/oauth2_proxy
- id: SMec2rOf
sha: 957d02d76b72ceca1c43a1dffe88b8f90aea0b45
tag: 11.4.2-2-g957d02d7
url: https://github.com/NG-ZORRO/ng-zorro-antd
- id: qOlAFRZp
sha: a230a87f8e60d2d8a8f7aafafd687a5e8e991bb0
tag: 2.13.5
url: https://github.com/fecshop/yii2_fecshop
- id: 74fXw77g
sha: 75abeb13a836cbf3faf43a2af12a8f1206787b4d
tag: v1.11.0-4-g75abeb13
url: https://github.com/cli/cli
- id: rLWcNkSH
sha: 568c11f2b9b556027dda05ad7b62c044f039b4e4
tag: v3.7-8-g568c11f
url: https://github.com/commonsguy/cw-android
- id: QAg7AYU3
sha: 7704fbc5e83a35357d89458d9269a7e739964296
tag: 1.2.0-10-g7704fbc
url: https://github.com/bookshelf/bookshelf
- id: 8SP5qHzf
sha: a47fc294393a3e9507a8207a5a2f07648a524722
tag: v4.0.0-6-ga47fc294
url: https://github.com/lerna/lerna
- id: Wsbrj6nm
sha: 645466cebc466772254310f269060167e13e8cd5
tag: v0.1.4-23-g645466c
url: https://github.com/uber/kraken
- id: cF51Z6Me
sha: fff6eb15d7088d4198650a2c6e673dedaf3b8f36
tag: 0.95.5-2-gfff6eb15
url: https://github.com/knex/knex
- id: yzlH6X00
sha: a9fbbeeec9abfe9ff54365160ce476ba853ba203
tag: v6.1.0-66-ga9fbbeee
url: https://github.com/tornadoweb/tornado
- id: Te5G9bT8
sha: 68876b0464ab6190815fb9d8b1bbb9b4d114a2d7
tag: None
url: https://github.com/zzzprojects/EntityFramework.Extended
- id: yV2do93l
sha: 779802e2ee6be8ce955113a167e04897dd1beed4
tag: v2-2-g779802e
url: https://github.com/docker/build-push-action
- id: POSwAepP
sha: 96c12726fdb9b24e985b4de74d5c82145ccd8185
tag: 4.4.1-55-g96c1272
url: https://github.com/docker/docker-py
- id: JXnk97AF
sha: 0ae9d4cea735b6f73b8aa223325e7d8385ff70e7
tag: None
url: https://github.com/docker/awesome-compose
- id: obwl5as9
sha: b59fd7b2364b099704c8235ae2e36c0c8c3d01bd
tag: v1.1.0-12-gb59fd7b
url: https://github.com/jdcloud-bds/bds
- id: 8ybm7bSL
sha: 8cee4de75d073a5c57d778929b5e63c2254d8e36
tag: 0.7.1-93-g8cee4de
url: https://github.com/jazzband/django-admin2
- id: AmlxFDDp
sha: 350f973f705dc996af27d66fe02e03e2f1f99968
tag: 2.4.0-43-g350f973
url: https://github.com/httpie/httpie
- id: fQoIovQ3
sha: 4bc80d1a459542d883ea9200e4e1f48d265d0fda
tag: 6.0.0-16-g4bc80d1
url: https://github.com/angular/protractor
- id: FdOAhUyO
sha: 5a51f2b30cfd3c8902b331317eaa1c538b576207
tag: v2020.06.02-186-g5a51f2b3
url: https://github.com/kivy/python-for-android
- id: 73xnd6uw
sha: 6ec740f644f4c5ec9958bc5e037f449af3af7bc1
tag: v1.1.31-172-g6ec740f6
url: https://github.com/googleprojectzero/sandbox-attacksurface-analysis-tools
- id: kTdCF0mK
sha: 56d5214055947db83e2f82a9a16175cf63c15cdf
tag: v0.6.0
url: https://github.com/basecamp/pow
- id: SdX6wq8W
sha: 70944b3ac086b7c94a92e6a6051807479c4384fa
tag: None
url: https://github.com/juicycleff/ultimate-backend
- id: XNxBEeTS
sha: 265ee115a74cb1eb141b2902e31e3897ba9f73a0
tag: 2.5.1.RELEASE-4-g265ee115
url: https://github.com/spring-projects/spring-security-oauth
- id: lUNiO3WE
sha: 28db2c2c5cf992c897d1fbbc6b119ee02fe32ab1
tag: 4.17.1-41-g28db2c2c
url: https://github.com/expressjs/express
- id: NdYALLiE
sha: 829cac07c8e155cc1844dc3a069dcf9283abf603
tag: None
url: https://github.com/sherlock-project/sherlock
- id: n2x1PPtw
sha: d02d13d9b0659e9d195ddec6d9d4227b34061f28
tag: canary-tag
url: https://github.com/terminusdb/terminusdb
- id: mcLooqZr
sha: 706252cf689ae82218cf36890d4586e176986066
tag: None
url: https://github.com/tumobi/nideshop
- id: XDsX5HPh
sha: 706b2f3765d41bee2853b17724888d1a3f6f00d9
tag: None
url: https://github.com/ohmyzsh/ohmyzsh
- id: XqyKrT9y
sha: 59b27a7a7a7a495ee86dfcb2053583ead5633704
tag: v2.2.6-14-g59b27a7a
url: https://github.com/nats-io/nats-server
- id: r7P6BHTt
sha: b6f3578bb2cf6c60e3efe110143409b47f368d36
tag: 0.14.2-20-gb6f3578
url: https://github.com/encode/starlette
- id: Uw9gelPv
sha: 26d27d871b7992022c082dc207e3d126e1d9d278
tag: 2.2.0-preview3-40-g26d27d87
url: https://github.com/aspnet/Security
- id: OfzEVjqS
sha: f7f760f8c6e2f1aba1bf7c544fdd84d70f6e05b6
tag: v3.0.29-2-gf7f760f
url: https://github.com/pion/webrtc
- id: 8oEGt2NF
sha: fbedf3c82b1223cf14abce642f6e3ed2ff1653a6
tag: v1.13.0-36-gfbedf3c
url: https://github.com/appleboy/gorush
- id: ooEMWs5T
sha: 490c554e23343eec0736b06e59b2108fdd057fdc
tag: 0.5.0-25-g490c554
url: https://github.com/tiangolo/full-stack-fastapi-postgresql
- id: TQSIWMKB
sha: 636a987c4aeda49df2748ae0ab56442420b3a4ca
tag: None
url: https://github.com/oracle/docker-images
- id: lY5tQBGg
sha: bf6f6f3d4a5440feb73a51937059d7feddc335a0
tag: v0.6.3-19-gbf6f6f3
url: https://github.com/doraemonext/wechat-python-sdk
- id: 5lLEJxqR
sha: e0a4c18c4a074016beef46886b03e456102e2db1
tag: v3.1.0-38-ge0a4c18c
url: https://github.com/dbcli/pgcli
- id: DbFMenDo
sha: c5cea74c31a5b5c070a8dba64d514bb04694db22
tag: None
url: https://github.com/eshengsky/iBlog
- id: LyjXVmMN
sha: 37de06228f3f6f49de20a510d5349c784903b01f
tag: None
url: https://github.com/kgrzybek/modular-monolith-with-ddd
- id: JoZnJyOZ
sha: 41559fc95494235471039217ad9c3b3a79d006b7
tag: v1.16.1-4-g41559fc
url: https://github.com/justauth/JustAuth
- id: ok4vYMwV
sha: 2c417ee1889dbd8bf743bb3edd2fc63b35a5089a
tag: v0.2.0.1-19-g2c417ee
url: https://github.com/wasp-lang/wasp
- id: GEnUhwxQ
sha: 35fa3fe891574ce43705cec39c5b5e48cd4172ea
tag: v0.53a-20-g35fa3fe
url: https://github.com/mail-in-a-box/mailinabox
- id: jJTHtI1R
sha: caa61eed7a315469857c6e946fc786f8d46d4517
tag: 3.0.1003-264-gcaa61ee
url: https://github.com/justcoding121/titanium-web-proxy
- id: qJdZmMzX
sha: a70a2844b1aba63643801c26c35cc0a68b03a8c1
tag: v1.6.0-24-ga70a284
url: https://github.com/an-tao/drogon
- id: akhBV3f7
sha: 5d86cc2f20a198d410fe94cfdf5d11b3cbfbab8d
tag: v1.1.7-26-g5d86cc2
url: https://github.com/tal-tech/go-zero
- id: 1hBLDCfQ
sha: f08dbd903add1390a2f84a8db0b5558be5c260d6
tag: None
url: https://github.com/davestephens/ansible-nas
- id: ImopeC5M
sha: f39e5d9bfdb70c435f8649555f224c0fa4f51e54
tag: v0.7.9-3-gf39e5d9
url: https://github.com/go-xorm/xorm
- id: 1PX2hrKl
sha: 6e51d2acb3f1f4a24a3bc4d6327f04cc993396ae
tag: v3.13.0-3-g6e51d2a
url: https://github.com/brocaar/chirpstack-network-server
- id: s54Kuc4G
sha: e0a2b2e2520c62c5a30a53418e84cd225c63087b
tag: v0.6.2-187-ge0a2b2e
url: https://github.com/ArchiveBox/ArchiveBox
- id: 0papXQrp
sha: 130e12bf401f292350e105bc7358b65a362d6ea2
tag: None
url: https://github.com/GantMan/ReactStateMuseum
- id: hA1rpYFW
sha: c2d8fdc7de614320462a3205ebcabb8e0e927508
tag: 2.9.1-40-gc2d8fdc
url: https://github.com/duo-labs/cloudmapper
- id: IgOfBRuZ
sha: 53e1ead2b52af28b385ee5ae2b144bca0fd80732
tag: 6.0.0-39-g53e1ead
url: https://github.com/sahat/hackathon-starter
- id: Op8rYt1s
sha: 50b719af447594abbae7beeb4d6458a19f8e9689
tag: prometheus-adapter-2.14.0
url: https://github.com/prometheus-community/helm-charts
- id: wVMAxYz1
sha: d58fb8d7382c1a452bf67f1efbd3dc53415f811b
tag: 5.54.1
url: https://github.com/twilio/twilio-ruby
- id: llfEB2z1
sha: ad9c15b82405ba9eed991f9823482c7799d5a2cc
tag: 2.1-653-gad9c15b
url: https://github.com/swisskyrepo/PayloadsAllTheThings
- id: Y9QrETNa
sha: 3c2c19fc68765ea17fdc1fe38e94330434aa500d
tag: v1.0.1-21-g3c2c19f
url: https://github.com/flant/shell-operator
- id: cOPWgKrR
sha: 7ef6f8b91ccdd659556990b6033ece9a632273e6
tag: v4.0-7-g7ef6f8b
url: https://github.com/uswitch/kiam
- id: Detjar9l
sha: 8f56787bf1560112668576b44174df927c429c8b
tag: v0.24.10-19-g8f56787b
url: https://github.com/dokku/dokku
- id: uUz3yCe6
sha: 81a73d6eb15a836936fce08b7932bbb849bb1d54
tag: v1.8.10
url: https://github.com/8treenet/freedom
- id: z7YGFeM3
sha: 9a8df79f847dbcca833680e69f8b4ea1ace310bf
tag: 1.15.3-102-g9a8df79f
url: https://github.com/testcontainers/testcontainers-java
- id: WFOccAvt
sha: f3ce7248a4011f37afebb1cfa7fa33034656015e
tag: parent-3.0.0-alpha.6-2-gf3ce724
url: https://github.com/square/okio
- id: 2Dfn86bN
sha: c64957ea9be7d18893fcc4f04e643d8f7ec68554
tag: 2.28.1
url: https://github.com/tomakehurst/wiremock
- id: f78IeNK4
sha: 8f7d393f1971fe3159c55f1ffea74f5feef43c8e
tag: v2.4.0-40-g8f7d393
url: https://github.com/grpc-ecosystem/grpc-gateway
- id: SNY9mbAj
sha: a0b077109860bfb94684d2693d1b0a7d906308fb
tag: None
url: https://github.com/rabbitmq/rabbitmq-tutorials
- id: KYkNHsQs
sha: 95c8a5125207a62362345d85be77531ad9654edd
tag: openssl-3.0.0-alpha17-323-g95c8a51252
url: https://github.com/openssl/openssl
- id: dZtuXtH5
sha: b9e01da6d29264b147c19f98204f75859a680a6f
tag: 5.0.0.beta.3-5-gb9e01da
url: https://github.com/backup/backup
- id: PbuKyTqg
sha: 48dff8611166038c7a8172e60dd42ef09832786d
tag: v2.6-87-g48dff86
url: https://github.com/elunez/eladmin
- id: pcgVxxkq
sha: bd6e2a29f1bc23e56c8cd35612e2567764e5085e
tag: 1.23.0-12-gbd6e2a2
url: https://github.com/aws/chalice
- id: BEkKC1y4
sha: a6734b23bfaf833435bed2fe648bd0c85a259260
tag: 1.12.1-1-ga6734b23bfa
url: https://github.com/aws/aws-sdk-java
- id: T0cdSdoj
sha: 551191a804084a355232bc214d8211b96dec14c7
tag: v1.0-1157-g551191a
url: https://github.com/qibaoguang/Spring-Boot-Reference-Guide
- id: EE8ghkoG
sha: 86cd6ac13bd958f1d0163e7123f1e10c9ac87111
tag: v2.2.2-rc.2-6-g86cd6ac1
url: https://github.com/formio/formio
- id: uYsXFhPO
sha: 4fc9aed708c58643f5e7c94917a99f662464ff11
tag: jitsi-meet_5961
url: https://github.com/jitsi/jitsi-meet
- id: P2hadGYn
sha: ff6a33d39fc8fd768774a474131e6b37e7ad6924
tag: v0.9.1-20-gff6a33d
url: https://github.com/xo/usql
- id: 23ISmQZZ
sha: dc9c73c3ef9f46d6f0f3e6867094b4746242d384
tag: v1.9.0-RC1-16-gdc9c73c
url: https://github.com/netlify/gocommerce
- id: Sri3j2pN
sha: bc93e82c2208023ac142acb6a2a26ca3f59fc40a
tag: v0.7.104-5-gbc93e82
url: https://github.com/dotnet/pinvoke
- id: KMS9tYwf
sha: ebece3e0d6d3825e2c8262f6166d3403fd97cb68
tag: None
url: https://github.com/DavideViolante/Angular-Full-Stack
- id: OKqHaXRN
sha: dddf776a18b095ac373a22b28135c5dd6858496b
tag: None
url: https://github.com/ziahamza/webui-aria2
- id: eaHQJi6k
sha: f4183aaa646d6f0f208d3dc8c22323cfff1f518f
tag: v1.0.8-276-gf4183aa
url: https://github.com/nntaoli-project/goex
- id: tEhI9dyd
sha: 8d626c206733420637660ac7c2098d7de45e8590
tag: 2.3.6-10-g8d626c2
url: https://github.com/enquirer/enquirer
- id: oQ3tZLt7
sha: f78e469b2a2a580926f0abfb88c8fc047d63a6ed
tag: v3.2.16-16-gf78e469
url: https://github.com/LycheeOrg/Lychee-v3
- id: TVw1jxa2
sha: d6951405186bbb91ad392b7646a9fd56b8ed1867
tag: Pre-Release0.0.1-814-gd695140
url: https://github.com/DefactoSoftware/Hours
- id: IJXU4DxV
sha: 20eb23161153b3532f14da83fe74dedd628fd29b
tag: v3-47-g20eb231
url: https://github.com/github/super-linter
- id: WFQzhXff
sha: f19f101610cbaaf67113aa4a1c223b702152dafb
tag: v1.1.1-46-gf19f101
url: https://github.com/github/gh-ost
- id: jYt3YlwI
sha: 9cd70d42d533b4088ec80d2afa42bb3ed80557b6
tag: None
url: https://github.com/github/platform-samples
- id: RYRGbNBr
sha: 7e38458132f4537cbeeccbd262fb3f2541ddb259
tag: v0.36.1
url: https://github.com/gruntwork-io/terratest
- id: 65SEkRrM
sha: 8af9f78abc31f6b95d4394850787b406f65c9c4d
tag: v4.0.16-3-g8af9f78
url: https://github.com/Binaryify/NeteaseCloudMusicApi
- id: 8bFtg4B1
sha: 2aeb844e677437b7d1c9a5ad1e467378f6c25cc0
tag: v5.2.4-1-g2aeb844e
url: https://github.com/deepstreamIO/deepstream.io
- id: 1VSNGSYL
sha: d59247283dc8c1af019e3e2a8c75c7519d1fdb6d
tag: 0.32.1
url: https://github.com/JetBrains/Exposed
- id: 0KkhMk74
sha: f972b103db7ac650adef235de704dc44dd782bcb
tag: 1.8.1-31-gf972b103
url: https://github.com/alibaba/Sentinel
- id: la0Xfl97
sha: 474063af3b51c86b173bd6753ff98727aca1e44a
tag: canal-1.1.5-2-g474063af
url: https://github.com/alibaba/canal
- id: zkfdVldi
sha: ed8d04c4cacf305c25a7a13fface589fd80d1d58
tag: 0.5.0-92-ged8d04c
url: https://github.com/meanjs/mean
- id: HFU12x0l
sha: 3f4db68d6700c7d9023ecd17d0d39893f75a19fd
tag: v5.0.0-pre.4-9-g3f4db68d
url: https://github.com/feathersjs/feathers
- id: vFDVfqXi
sha: ba39be3b89d568ddd85997089b1c3dd423b4e52a
tag: v16.2-158-gba39be3b
url: https://github.com/graphql-java/graphql-java
- id: oiOnKXcA
sha: 14eb1e10c93a67d962ef242d2f22ba6ccf004993
tag: None
url: https://github.com/Panuon/PanuonUI.Silver
- id: cJ9l8OAJ
sha: eef7995773c5a4d77f070a916e2b126827dd90df
tag: v1.5.18
url: https://github.com/FredrikNoren/ungit
- id: 3bJm3bDB
sha: 0ba9c9116178c8c6f2d49cfeed8c819f9a34397e
tag: v1.8.12-22-g0ba9c911
url: https://github.com/z-song/laravel-admin
- id: TAsJk78V
sha: 7962a19469a709c00f481a50a6d1e7ddd1e37cc6
tag: v2.1.1-6-g7962a194
url: https://github.com/sferik/rails_admin
- id: 5gaJj6x5
sha: 97f075aadd405427ba3cb5801feb67bdd1af77ef
tag: v7.0.0-2-g97f075aa
url: https://github.com/sferik/twitter
- id: zrhArtER
sha: d8b549fc1c78427f16de31a75d0f56cbca32536d
tag: v3.1.0-14-gd8b549f
url: https://github.com/sferik/t
- id: djtMDWVa
sha: 0a8af2355562ea961477738d66b3334332447186
tag: v0.0.21
url: https://github.com/aio-libs/aiomysql
- id: 5rSp2Uv3
sha: 977a3c581dc93212f0760dc5a343daa04cc2bd8e
tag: 1.37.1-9-g977a3c58
url: https://github.com/conan-io/conan
- id: 8EFGuqWs
sha: d2d3d77395d1079a2e335080b7f9f79d3f70ad2a
tag: 2.7.2-44-gd2d3d773
url: https://github.com/paramiko/paramiko
- id: ndVGNDdm
sha: c47e1c227a49c563d7962ff11cacf42bcf59ddf3
tag: None
url: https://github.com/JeffLi1993/springboot-learning-example
- id: PCAaI7Rs
sha: cae45e7e805157767141845d35a88c6e76b99192
tag: v2.6.1-30-gcae45e7
url: https://github.com/tweetstream/tweetstream
- id: L7QULwpp
sha: 5ac35302ee80626d0bf50a451472bbfc127cf696
tag: v0.44.4-2-g5ac3530
url: https://github.com/boardgameio/boardgame.io
- id: ic8xdHhG
sha: b6988f8ced123b20e27c845df66a134f67d1ba1b
tag: 3.0.8-208-gb6988f8c
url: https://github.com/phpseclib/phpseclib
- id: RppIAfjN
sha: 6fc7aa13653a35c29217d031d8ab09b2a1124f2d
tag: 0.10.2-715-g6fc7aa13
url: https://github.com/pagekit/pagekit
- id: nMbkahmI
sha: 396167c9d3d25b4ea6b69bf530b6fe1a773e022e
tag: 4.0.0-M1-54-g396167c9
url: https://github.com/scalikejdbc/scalikejdbc
- id: LVdumrad
sha: a735219783127cd0495246ccee89422069da1a1c
tag: None
url: https://github.com/postalhq/postal
- id: xX8oVDxE
sha: 92c579a157968fc160f21f3d7776eb4153e80b1e
tag: questions-204-g92c579a
url: https://github.com/angular-app/angular-app
- id: HR2l5p8f
sha: 6e5d3e37bb1facb315fa9f49b523b7e41496dfa8
tag: v0.3.16
url: https://github.com/aelsabbahy/goss
- id: b54wdiPr
sha: 6ae5c3f5ed37d9ea9895823c467e7d2a5c273709
tag: 0.11.0-131-g6ae5c3f
url: https://github.com/XiaoMi/soar
- id: rqGbPC9c
sha: ff5698f1ae6329bab5729f145c35a74161e82bac
tag: v0.6.8-36-gff5698f
url: https://github.com/askmike/gekko
- id: ET7juONY
sha: 69eb523933cde63ee03ea03807673872c30ea3b7
tag: v1.24.1
url: https://github.com/k1LoW/awspec
- id: D5AszjiQ
sha: c50a30acc0e4553297b0ddb697d55a290ed6d038
tag: 0.44.0-30-gc50a30ac
url: https://github.com/pennersr/django-allauth
- id: HfC77uzp
sha: 4c57f1bfdb4b87183ef4adea30e90dce86fde2fa
tag: None
url: https://github.com/NetEaseGame/git-webhook
- id: kqr7fdV9
sha: bc9e48ae689ceb132a192652f5ff6aeedbb4f56c
tag: v11.8.0-65-gbc9e48a
url: https://github.com/sindresorhus/got
- id: MWzc8UOZ
sha: 7667e7c9e730f6bf9e23682cfbd653674f040a67
tag: [email protected]
url: https://github.com/brianc/node-postgres
- id: 5maDxB63
sha: 8f9140b705011eea9a7344466362662f3106cd69
tag: v12.2.0-alpha2-82-g8f9140b7
url: https://github.com/kataras/iris
- id: 12IO9gl4
sha: 787ad5fdec6fcd365ebff9465b459e238b7ae231
tag: v0.4.5-2-g787ad5f
url: https://github.com/Kononnable/typeorm-model-generator
- id: PgCYe4GY
sha: a54a8d3c21579865baff1c64fed2707f24710164
tag: v4.4.4
url: https://github.com/logaretm/vee-validate
- id: Q0pVZa5H
sha: 4933e3b9bec474511233f5a05819e493060a86e2
tag: legacy-581-g4933e3b9
url: https://github.com/elastic/elasticsearch-js
- id: FOImbMmr
sha: dc66d00dd6b8a8ed38515b2e82701c4be098fcbb
tag: 2.2.0-20-gdc66d00
url: https://github.com/elastic/rally
- id: IMwg0OuK
sha: 849b66d4412b9e65fdd4b1df20de091afed8bceb
tag: v7.0.0-alpha2-15874-g849b66d4412
url: https://github.com/elastic/elasticsearch
- id: IyL7N2Db
sha: edaee9aa26ea0b2fedd961398433b8940b2afef1
tag: v35.3.0-2-gedaee9a
url: https://github.com/google/go-github
- id: kLFJnlfC
sha: 51781910ae2bb1abf8ac51b290272f86f3651235
tag: 1.02-7-g5178191
url: https://github.com/google/google-authenticator
- id: rTDzaCPf
sha: f5caeba1aed8490f033de0d348a75f309a11da23
tag: v0.5.3-4-gf5caeba
url: https://github.com/databricks/click
- id: eltubjbz
sha: e244bae38cc2f0380bbb6b609f28168b9617f4c2
tag: None
url: https://github.com/ubisoft/massgate
- id: GlTOnUMR
sha: 1265747e992ba7d34a469b6b2f527809f8bf7067
tag: v1.55-5-g1265747e
url: https://github.com/PyGithub/PyGithub
- id: 9i6qTrf0
sha: d059b22b4e3b4e2a6e30d7ca3c2921145a367e3f
tag: v2.6.4-4-gd059b22
url: https://github.com/api-platform/api-platform
- id: 8GkkGzrQ
sha: a85408ae014b2a84f76e8ec0bcc7c5ee0a9af2c1
tag: v2.0.1-92-ga85408a
url: https://github.com/jly8866/archer
- id: rRXCjN5N
sha: 82db4a569d472758bb2cac6630b979f5eb1c5bd4
tag: 0.3.6-1575-g82db4a5
url: https://github.com/cnodejs/nodeclub
- id: J2eFVuUI
sha: c50c4a400c543dcd738c88d1d56f52006fb597eb
tag: v0.33.0-110-gc50c4a40
url: https://github.com/Shopify/shipit-engine
- id: vaiUyhHN
sha: 83865800a274db78950b2235991cc79193231f22
tag: v18.0.1-2-g8386580
url: https://github.com/Shopify/shopify_app
- id: zROAIbAZ
sha: 03b4a4f7a346ee383edea231dba53f005ca63a9c
tag: v1.29.0-7-g03b4a4f
url: https://github.com/Shopify/sarama
- id: MudR4tXi
sha: 624e56fcae939b11e4e671e0fbde816a9e17162c
tag: None
url: https://github.com/fossasia/pslab-webapp
- id: XbVkYt1f
sha: f3c91515f2d672c6595521f84a49985a6c9d8c38
tag: None
url: https://github.com/huginn/huginn
- id: wpmfxFl8
sha: af3e1008ad94c64d5a60d1d7b2ddc579bca4ca79
tag: v0.21.0
url: https://github.com/lucas-clemente/quic-go
- id: DjcY1l3l
sha: 431834922da00ea11fa6ddc5ceda8262bf1a73b9
tag: v6.4.0-beta1-1-g4318349
url: https://github.com/99designs/aws-vault
- id: wmKCrbQJ
sha: 6b53d45ce27510335f5f33db510a4ee4e3a29a91
tag: v1.21.1-18-g6b53d45c
url: https://github.com/LonamiWebs/Telethon
- id: gerQbg6p
sha: 44a9ee06748e9b18d611e6c8471b395f864de70a
tag: 3.0.2
url: https://github.com/vueComponent/ant-design-vue-pro
- id: rCrwvzp4
sha: 17b82420c9c3482e17a5a0d95ba4ab66fce9c42c
tag: 3.0.0-170-g17b8242
url: https://github.com/aspnet-contrib/AspNet.Security.OAuth.Providers
- id: IMfyzktF
sha: 614d2578d9495acf53cc02f2dee9c6131cc5e51a
tag: None
url: https://github.com/wuyouzhuguli/SpringAll
- id: WiIRCX6s
sha: 1d7ccb64ab689a5330e9e0940f4057d42342c991
tag: v1.1.5-167-g1d7ccb64
url: https://github.com/predis/predis
- id: 4FlmUIdw
sha: 29056bcd11c9c22b063370acc20876fa4c77cf30
tag: None
url: https://github.com/hussien89aa/KotlinUdemy
- id: RJnogNN9
sha: 825ff12a74a94c54e737e279604c27e6740e8a2c
tag: v2.4.2
url: https://github.com/ZipArchive/ZipArchive
- id: jLXEyFFC
sha: c82e4cf47b02002b2fd7ca31d441cf1043fc634c
tag: v4.8.0-3-gc82e4cf4
url: https://github.com/heartcombo/devise
- id: Zl7Hltiz
sha: e1ccce67acc60ee97732c4e863d1b7fcce94f604
tag: v3.39.1-6-ge1ccce6
url: https://github.com/joemccann/dillinger
- id: KipIlZZl
sha: fdd543a21d650e2ce4c40a13369e46261698420f
tag: None
url: https://github.com/microsoft/TypeScript-Node-Starter
- id: gok5oIgK
sha: 8995a6e3a72870e750d2b5959e6245884c21a95f
tag: v10.1.4.0-5-g8995a6e
url: https://github.com/microsoft/winfile
- id: r7P1vhHU
sha: ad5cea066758bf5e9b52892fef565b6d19c1f773
tag: v1.0.18183.1-2380-gad5cea06
url: https://github.com/microsoft/VFSForGit
- id: HbJ1ktmv
sha: 150556e8aaec20b9892c4ae27f364a819b1d5fdd
tag: 2.0.0-alpha12-123-g150556e8
url: https://github.com/propelorm/Propel2
- id: x2ukf0LE
sha: 186096d9272a8a21614c99eab8e76a87aac5225d
tag: v0.2.0
url: https://github.com/tpolecat/skunk
- id: xkQseA13
sha: 97dbc97b3b1bc4e613b70cb5e0e07d4b2d9372cc
tag: 8.3.1
url: https://github.com/thephpleague/oauth2-server
- id: IPmezQ2a
sha: 10480dbf75544b96ff1fd37e4f7c3baea783361a
tag: v1.0.3
url: https://github.com/sorry-cypress/sorry-cypress
- id: Z0fW8lh9
sha: 4142a0a0c41354b0d74530539feda74a9a2e9b8b
tag: v1.6.0-5-g4142a0a
url: https://github.com/Mastercard/client-encryption-java
- id: 813DZEvl
sha: 8f2f0c70e4459283b72b7183167c5cd4779de936
tag: v1.4.2-9-g8f2f0c7
url: https://github.com/welkinwong/nodercms
- id: Lucb9ozm
sha: d7f0462fdae67b99dc7bc0d6b06cdecc568f721b
tag: v11.9.4
url: https://github.com/python273/vk_api
- id: 92xX1pt4
sha: ff28aad27958ef7763a305982f70caeb611f2448
tag: 0.2.33-2-gff28aad2
url: https://github.com/typeorm/typeorm
- id: BG3SO8QG
sha: eb4215d828c74d0b878f021ba698ee3e0a6a7c05
tag: v1.0-112-geb4215d
url: https://github.com/aqzt/kjyw
- id: GaZzfwtc
sha: ca731dca95de69d41df4900fe9e787910e9ca92c
tag: v2.16.0-28-gca731dca
url: https://github.com/kubernetes-sigs/kubespray
- id: gVW0yRld
sha: 60775d3573df333d1076a68f165d8c9ff4acd8b3
tag: v0.16.0-1-g60775d3
url: https://github.com/grafana/tanka
- id: WKSW9h4b
sha: 147e67637377196e3c59cf93b12ac325aca76fac
tag: v12.0.1-269-g147e676
url: https://github.com/yeojz/otplib
- id: AdaBz0rN
sha: b80de84b2610432a3cc16f4a73ccfe31f03c02de
tag: v7.0.24-3-gb80de84
url: https://github.com/olivere/elastic
- id: 0J1KcpqI
sha: 72c21a8a19a4e6d0329a9be1919ecc15eb9cd3c7
tag: None
url: https://github.com/yinxin630/fiora
- id: diakXO5o
sha: 04790a2ed2ec7a3a6eadb55004b5aa499bc8a75d
tag: None
url: https://github.com/threedr3am/learnjavabug
- id: 1dwik6SS
sha: 9ef059c065d1894c79e7d69c150e588a61eb1cd5
tag: 1.2.0-SNAPSHOT-79-g9ef059c
url: https://github.com/Dreampie/Resty
- id: 5q4EojOr
sha: 7f24bb036d3a6576f80960570f5a50f7cb6b02a4
tag: v2.2.0-9-g7f24bb0
url: https://github.com/JKHeadley/rest-hapi
- id: utmzXr8i
sha: 1b12b112a1e491f51e48e37d5d828e4a390de26b
tag: nightly-71-g1b12b11
url: https://github.com/PostgREST/postgrest
- id: QK5OLuLw
sha: 14c955c0524233639fe76a35edda3d620037a525
tag: v8.16.0-2-g14c955c0
url: https://github.com/spotify/docker-client
- id: EmDBziqj
sha: 45f51bbefb20b970d8b73c06b5ae0818586e0962
tag: 3.0.3-1-g45f51bbe
url: https://github.com/spotify/luigi
- id: uNS93qrg
sha: 1e3d739a5bcdccc1d27fa2b5c52bd64d9c995a1b
tag: v1.4.2-4-g1e3d739
url: https://github.com/XTLS/Xray-core
- id: 7JJAOhQz
sha: 80fdcff6c157741ec78a16333173c3d506f8b985
tag: 2.2.3-19-g80fdcff
url: https://github.com/thx/rap2-delos
- id: rQQg4QoU
sha: 28f372bf41f9e67a9cec5980fd1c365363064ebc
tag: None
url: https://github.com/eddycjy/go-gin-example
- id: hkfKizwg
sha: d7dfe378f2ec5e224e12831e7a61c974c6e8f82b
tag: v1.8.2-43-gd7dfe37
url: https://github.com/mas-cli/mas
- id: eSzRyuy5
sha: 483a4b8dbd09cbe3ea00ceddf036c58635073e1f
tag: 1.6.76-release-2020-11-2-72-g483a4b8d
url: https://github.com/MyCATApache/Mycat-Server
- id: GvX6MSY2
sha: f5e01ae46eb0c2ddf738f29b0d9b6ca6b284ab29
tag: 2.7.0-69-gf5e01ae
url: https://github.com/cloudtools/troposphere
- id: BuSQvENX
sha: 889ab6c227818e92383a286b0dafc95ccb603a85
tag: v2.0.0-7-g889ab6c
url: https://github.com/9seconds/mtg
- id: BFVkHApf
sha: 050a5fb6621a55b391e978243364983ba634ff92
tag: 5.8.2-1-g050a5fb
url: https://github.com/francescomalatesta/laravel-api-boilerplate-jwt
- id: 4zKotML7
sha: d7ebb9e8915d2a4dfc7b0ac8c115a60e12c0d040
tag: None
url: https://github.com/zhoutaoo/SpringCloud
- id: eMFplWu9
sha: f5c7d31ee7d9b5480dbbd82d48f95785ee193378
tag: None
url: https://github.com/wardviaene/kubernetes-course
- id: 3YdxU7b5
sha: 955ff70778c388c807eaf51eb29ae5cfbb75eb60
tag: None
url: https://github.com/judasn/Linux-Tutorial
- id: 7mTYWAvG
sha: d860b58fd44ce01b7af82ee3afd9ca612c8b5c72
tag: 13.12.3
url: https://github.com/sameersbn/docker-gitlab
- id: cV10BFq1
sha: 5951899a9b778121f7c6fde89b00e28102e0e596
tag: 0.9.1
url: https://github.com/zboxfs/zbox
- id: OYbWncoC
sha: 14d3180cc35660e78e0b8162fd027b33d695a6ba
tag: v4.12.3
url: https://github.com/graphile/postgraphile
- id: nEQbrDYY
sha: 75efa273298c68aecc4c858c5671d48cc75b5e49
tag: None
url: https://github.com/benawad/fullstack-graphql-airbnb-clone
- id: 1RL8Vx7r
sha: c8877df933ed4842e4bb8f2c8e9301c5507a42b4
tag: v1.5.8
url: https://github.com/flask-admin/flask-admin
- id: 7RlfD5j1
sha: c1fa8bdd199979a706d0dc7665c415c4859119eb
tag: v2.0.0-28-gc1fa8bd
url: https://github.com/rethinkdb/horizon
- id: 4fgJrjxB
sha: 28d4603d072b8bf345896d33e01317f6a5043184
tag: gitlab-plugin-1.5.21-18-g28d4603
url: https://github.com/jenkinsci/gitlab-plugin
- id: xHz0rl2Q
sha: d27173173bebac29fa89ef3a493febab16594a12
tag: 2.1.6-755-gd271731
url: https://github.com/sullo/nikto
- id: PuW67SZm
sha: 215c479957ee0720fe0b47f4b982d464abcac2be
tag: v5.1.1dev-53-g215c479
url: https://github.com/byt3bl33d3r/CrackMapExec
- id: b8LIQy1P
sha: 7604577ba78d12fc2f39a38f3792d3bfd2ba22f3
tag: v0.7.0-395-g7604577
url: https://github.com/cloudskiff/driftctl
- id: njadHdAH
sha: 66784c9f2619693e5439ad0b22cd544c10e97440
tag: 3.14.4-26-g66784c9f
url: https://github.com/coleifer/peewee
- id: 7P0GyjTg
sha: 9d12a1eb23a536bbc1d164795e98224c6fc5d2d9
tag: v11.4.1-2-g9d12a1e
url: https://github.com/probot/probot
- id: VAq4YQQj
sha: 4c2931891636bc0212dbbf5edad7d76dc4cb1365
tag: v2.3.0
url: https://github.com/dghubble/gologin
- id: UwkzHCFv
sha: 0f8003afdd3e4a7e660f178106ff5137bf3782bd
tag: 2.6.0-28-g0f8003af
url: https://github.com/fabric/fabric
- id: WqBMxbWf
sha: 3d57064466e3232cecc6c47ebdf9ca164b8773c3
tag: v12.1-29-g3d57064
url: https://github.com/laradock/laradock
- id: dUGfX6mm
sha: fd938fd19742e141f95f14ef654d1501bdb63679
tag: 1.8.1-16-gfd938fd
url: https://github.com/YOURLS/YOURLS
- id: nX200XwM
sha: bc2b890a4e9b5c43980d1e7a2a17d0ef77f965dd
tag: None
url: https://github.com/scottslowe/learning-tools
- id: R6ZwAWrn
sha: 4d5b944a7b430a8253d0c5b6165467244fd1b525
tag: 1.0.5-1129-g4d5b944a
url: https://github.com/dromara/shenyu
- id: Qj2BVaxP
sha: 6c5d78ee04f58c6d782c456dfcf0fe63c0b7f89b
tag: 2.0.2-44-g6c5d78ee
url: https://github.com/Meituan-Dianping/mpvue
- id: 55nlYics
sha: 23d8d43b2451d4317e6228ba2ba89656f795f9b1
tag: 1.5.0-371-g23d8d43b
url: https://github.com/drhenner/ror_ecommerce
- id: d8jtutjl
sha: 2c72a2e77e2e87d25ff38feba0cf048d51bd5eca
tag: v2.1.0-3-g2c72a2e
url: https://github.com/rest-client/rest-client
- id: 1sBSo9fS
sha: 50878b1e7f0c7786777e0070e6652ca1c35d7567
tag: v4.29.4-28-g50878b1e
url: https://github.com/authelia/authelia
- id: wJNLpUnY
sha: 439b8a9c0f0ebf4d59dc637edcf8177126c41d1a
tag: v0.4.1-11-g439b8a9
url: https://github.com/kraken-php/framework
- id: tk3DN8JA
sha: 7428167a14466dee785d8bdcf57aae0026a3a16b
tag: v0.8.0-94-g7428167a
url: https://github.com/ent/ent
- id: l87eXEmY
sha: 784c4663f5c72e4c2790fb071489e5ed42c8aaca
tag: None
url: https://github.com/xuwujing/springBoot-study
- id: KpBizFi2
sha: 94a9292bd4cf07062ec6211e8da9077079db0f79
tag: None
url: https://github.com/yahoo/mysql_perf_analyzer
- id: m7cuqzr4
sha: d3139b3bbd3a04b9c95ba9b81a238d09f334c34b
tag: v1.5.0-399-gd3139b3b
url: https://github.com/phoenixframework/phoenix
- id: khWPwSWB
sha: 28e05758d93cb838c68b91d73d8c3f28ceafe42f
tag: None
url: https://github.com/jasontaylordev/NorthwindTraders
- id: oi3JXD3T
sha: 3430c513d6b0ca279fb7c79b210c9301e9315658
tag: v2.18.1-14-g3430c51
url: https://github.com/mysqljs/mysql
- id: vtwoDE3Q
sha: 2695c2e8f6b5f784db753c21cd7a6f2a9799409e
tag: v2.1.9-7-g2695c2e8f
url: https://github.com/swagger-api/swagger-core
- id: L8aXEBxK
sha: 240cf63ba6ad8c07a137d1c01f5034ee90422379
tag: v5.0.0-1673-g240cf63ba6
url: https://github.com/LibertyGlobal/grafana
- id: IRdIDdYu
sha: b9ca6606eeb77e901442b9636f7b8e3993826613
tag: v0.6.0-27-gb9ca660
url: https://github.com/karmada-io/karmada
- id: 9GTR88uK
sha: 829683b4bffc321d5c8940e00dcf545c2d2c04b6
tag: v0.16.1-2-g829683b
url: https://github.com/Sorcery/sorcery
- id: NKxuLXYk
sha: 89c63a4e530e6b6a1992113b022b390fb8d47a79
tag: v3.1.0-51-g89c63a4
url: https://github.com/timdorr/tesla-api
- id: QUD0oqi8
sha: dc6dbb412a23654a18ccef6b61b8f0c1cdf87250
tag: 1.5.6-13-gdc6dbb41
url: https://github.com/ripple/ripple-client
- id: l78dEjee
sha: eb7f8d5f7725123edc87c9d66f4c9ddb7b99f1c1
tag: 1.5.1-89-geb7f8d5
url: https://github.com/vitalets/x-editable
- id: 789xdksU
sha: d98e2ae8f8f6c5b62d8bedec6f2ab0aa49ea6639
tag: v5.0.1-3-gd98e2ae
url: https://github.com/kelektiv/node.bcrypt.js
- id: LbFnRFnB
sha: e223321de9e3ad9214722d044c2212733ed06000
tag: redisson-3.15.6-10-ge223321de
url: https://github.com/redisson/redisson
- id: zM1MjbhH
sha: f9da949926770f6ca35267973ee6d6823e9c199e
tag: v6.11.1-5-gf9da949
url: https://github.com/express-validator/express-validator
- id: ZD1CRYmD
sha: af3d856d5cbaaebf534b853df347373dbd0ee30b
tag: v8.3.0-5-gaf3d856d
url: https://github.com/danger/danger
- id: 48foOdAe
sha: 843628318423364073d8488b0fbc9cec0b1ecc92
tag: v4.1.0-5-g8436283
url: https://github.com/plotly/falcon
- id: 2X4Zt50O
sha: 6f18521a258394bfb79e6b36f7160ad8559a8e16
tag: v3.43.999-10-g6f18521a
url: https://github.com/heroku/legacy-cli
- id: RwozJwFn
sha: c0d9373885e02c16af112dc69336b556e1e20b54
tag: v1.1-171-gc0d9373
url: https://github.com/jcalazan/ansible-django-stack
- id: fOIm69aY
sha: 4ffb6593d569801cf7c4571542c0ff03afcb1a0f
tag: v2.2.0-8-g4ffb659
url: https://github.com/thomseddon/traefik-forward-auth
- id: 3l8H7Oh3
sha: aea3ff83c7aea95b18e18839d5beb6da29b7548c
tag: v2.1.0-24-gaea3ff8
url: https://github.com/elasticdog/transcrypt
- id: FrrM8fq9
sha: 376fa3a82a76523180f3feb0522a64c47da68cc5
tag: 2.14.2-45-g376fa3a
url: https://github.com/gilesknap/gphotos-sync
- id: OoDmBdgr
sha: c0c9fbd18517852f53c5c08a0f75d121eebb63b8
tag: v1.6.2
url: https://github.com/stripe/stripe-cli
- id: vPuhy8n6
sha: edefd69b4a0dadd045c83159edd8fc6bc05c276a
tag: v0.23.0-1-gedefd69
url: https://github.com/MagicStack/asyncpg
- id: RlOYPrHv
sha: e06f3aadea4726fce31c2f6fba94d068b9d4b11a
tag: None
url: https://github.com/NickCarneiro/curlconverter
- id: VCHKYpeS
sha: eb0b3544f8c8ab2dee4643df191da346a941734f
tag: 0.11.16-8-geb0b354
url: https://github.com/arachnys/cabot
- id: mAk9cLq6
sha: 71bd673772fba3e18105041284a7fe42933c1377
tag: None
url: https://github.com/xkcoding/spring-boot-demo
- id: fysWJDyq
sha: e6cf0f81368349392f433c7b5122fb568b9b30b0
tag: 6.1.4-6-ge6cf0f8
url: https://github.com/assaf/zombie
- id: 3czmw8tm
sha: 6911e599aeab4d0f7b3003a81ad01d0612afdb17
tag: v0.3.0-19-g6911e59
url: https://github.com/argoproj/gitops-engine
- id: zujJCS5b
sha: 22aa4f9b4689f65a8f16affc5ff2dc886e10f4a5
tag: v0.16.23
url: https://github.com/gobuffalo/buffalo
- id: ZZuRKUkJ
sha: 8ff7dbb18f07ecf3fc0075725014279c45402208
tag: v3.25.0-10-g8ff7dbb
url: https://github.com/nextauthjs/next-auth
- id: yZ1pP1Lf
sha: 064d7e97d8d73d02be3952e438d8bdf809cdbcf4
tag: v0.3.6-SNAPSHOT-64-g064d7e9
url: https://github.com/replikativ/datahike
- id: tFdtgkSv
sha: 14af98f4360677e6127253bcf0cd8cdaef30eee7
tag: javalin-parent-4.0.0.ALPHA2-21-g14af98f4
url: https://github.com/tipsy/javalin
- id: 4S5aod4C
sha: 9339394b699fb1790eea3623d6ad5acf7334297a
tag: v0.2.0-1039-g9339394
url: https://github.com/osresearch/heads
- id: 89fe4KfS
sha: 0a3e2f7e932d1d56578c8dbef0cc349cf997f8f3
tag: v0.3-28-g0a3e2f7
url: https://github.com/open-falcon/falcon-plus
- id: YSQqEqDl
sha: 00a487dd088c6ca2528d025f3273c0a796efe210
tag: optional-3-g00a487d
url: https://github.com/SerpentAI/SerpentAI
- id: ItmmbrAh
sha: c042ee4a37e865c08addc680af26428de7e8ed89
tag: "\u8BFE\u5916\u5F55\u5236\u7248\u672C-8-gc042ee4"
url: https://github.com/MarkerHub/vueblog
- id: ktJuxI2f
sha: 74d5719bd03993fcf71e3b176621f133eb6138c0
tag: v8.5.1-11-g74d5719
url: https://github.com/auth0/node-jsonwebtoken
- id: 8l9XfPu0
sha: 40b58cc9c1b21bb4b67d22b474b2d82ec56591eb
tag: 1.7.0-321-g40b58cc9
url: https://github.com/webdevops/Dockerfile
- id: NI4x3vGy
sha: 60f29bc153d42ed8629cf3f30c1de9334294fdeb
tag: v12.8.0
url: https://github.com/bkimminich/juice-shop
- id: TySTBrN7
sha: 3d02c81ffcb3282039da24a0b6b87a778a54351d
tag: 1.1.0-14-g3d02c81
url: https://github.com/camptocamp/terraboard
- id: bI6oBYTe
sha: 851a6d18a08dc5700ddd761b6e130318d34e6708
tag: 3.1.0-30-g851a6d1
url: https://github.com/OAI/OpenAPI-Specification
- id: ld4FqR3j
sha: 46f886ccb74652fc9c850ece960edcf2bce765a5
tag: v1.3.0-14-g46f886c
url: https://github.com/requests/requests-oauthlib