-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
datree.yaml
1451 lines (1451 loc) · 88.8 KB
/
datree.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
name: datree
description: a CLI tool that supports Kubernetes admins in their roles, by preventing developers from making errors in Kubernetes configurations that can cause clusters to fail in production.
homepage: https://github.com/datreeio/datree
repository: https://github.com/datreeio/datree
releases:
0.11.0:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.11.0/datree-cli_0.11.0_Linux_x86_64.zip
sha256: 6d2d1657d91fc5e800f73329c54048555018587b092bf4ec701d4c4ddf9f3de9
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.11.0/datree-cli_0.11.0_Darwin_x86_64.zip
sha256: bf5bde4a1a550d5278eafae28bfeef597b8b477b81004a17461733476d2aa79e
0.12.0:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.12.0/datree-cli_0.12.0_Linux_x86_64.zip
sha256: 28da60210aa6817a35ba436ab2b57c1d3c0e468a7844ce8b8b3dc673b940d59a
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.12.0/datree-cli_0.12.0_Darwin_x86_64.zip
sha256: 265390084b3f4ff2c8d564e259cafae5d65ae678e334557fb5589cdcc346f664
0.12.1:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.12.1/datree-cli_0.12.1_Linux_x86_64.zip
sha256: f645da2ee88a366c87aac7fdb7520cc663c5b108459e0d7be8b42be3a02b899d
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.12.1/datree-cli_0.12.1_Darwin_x86_64.zip
sha256: e8322b25508705abb7016cd1d09e390e14dd3ddc0a6eb98a828f1d32f0fe314a
0.13.0:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.13.0/datree-cli_0.13.0_Linux_x86_64.zip
sha256: 63fc652676c6bd137471d6d7ef26d6c16611c47b444b513faee1cecb5358ef56
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.13.0/datree-cli_0.13.0_Darwin_x86_64.zip
sha256: 2d2a220bfd8aac15a988d72399739607203723597e2d1f4c997129af3abaae09
0.13.2:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.13.2/datree-cli_0.13.2_Linux_x86_64.zip
sha256: 19c5d78d3924dbdeaf32cd22705a14de5adba091518628c18cafcf7c114054c3
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.13.2/datree-cli_0.13.2_Darwin_x86_64.zip
sha256: 74fd03df3cdf74abc22765cce8bf9873d8e346c1f6d03391ac6d180495bac433
0.13.4:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.13.4/datree-cli_0.13.4_Linux_x86_64.zip
sha256: 872e8b9ce015f41d24925d42dc262f4cbdf1f1b2bc28590b9032d3ec340c2956
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.13.4/datree-cli_0.13.4_Darwin_x86_64.zip
sha256: a924b30a01c731a14b480ec2acf09464fc679b3ae945d5ce8b270b1010d004a7
0.13.7:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.13.7/datree-cli_0.13.7_Linux_x86_64.zip
sha256: 9f76fe8630c22b5e3fd3bfaac6d0cd451053be56972bd5fd9d42bd03f9b6513d
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.13.7/datree-cli_0.13.7_Darwin_x86_64.zip
sha256: 740ebe8561b67a801d8b406dedaac907262f3366cb312ae699bcb13506c4ba0f
0.14.17:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.17/datree-cli_0.14.17_Linux_x86_64.zip
sha256: b7ff8892617197ccec8f913057b5d30827bffd272e225c4553eb700a008a9e09
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.17/datree-cli_0.14.17_Darwin_x86_64.zip
sha256: a30c4aa6b004ccbb995ad020bd119ad1396489f0a8e1b2a724f721f2d424520c
0.14.2:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.2/datree-cli_0.14.2_Linux_x86_64.zip
sha256: 146bce738e61a2d10d8cefee3151c86382aa6349b00bdf7807900831c15624e1
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.2/datree-cli_0.14.2_Darwin_x86_64.zip
sha256: 9c3b20102ad45f0cb1ca68f4e8f8085e03615281d3d422ae888909f3c11b60b0
0.14.20:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.20/datree-cli_0.14.20_Linux_x86_64.zip
sha256: 4cb63456b23801b839fdd95ed099c898ba4effe8626594490151e58880efe31d
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.20/datree-cli_0.14.20_Darwin_x86_64.zip
sha256: 8d94afb9d217e6a5acaca86febb68465b3a8f9a00f1619cc796e8e558fca7d82
0.14.26:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.26/datree-cli_0.14.26_Linux_x86_64.zip
sha256: 73be6942ca2b9f30e681960899918fedff55d71172150e5ec5fff089ce2b9426
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.26/datree-cli_0.14.26_Darwin_x86_64.zip
sha256: aa13e381d1fa8201411c264b94af98daa33c3aa8a2c3114d7c3308eccef8af1a
0.14.29:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.29/datree-cli_0.14.29_Linux_x86_64.zip
sha256: a4b4bef081b3f3ea5d84f457c5e74cbf8262548452456e8d660f3ffbb1cb7730
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.29/datree-cli_0.14.29_Darwin_x86_64.zip
sha256: bc57b2bd037bbcf5063f1c6d8677d6270a7c39473ca1f065877e32c1b198accf
0.14.33:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.33/datree-cli_0.14.33_Linux_x86_64.zip
sha256: 7fc5346aeb467d0fa0d2f5cd2eb750b07a07b07d083f296950da1f4792213739
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.33/datree-cli_0.14.33_Darwin_x86_64.zip
sha256: f7448ab6de131c74465bd3818c98929bddb189341d6b3c101627caccca86131a
0.14.36:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.36/datree-cli_0.14.36_Linux_x86_64.zip
sha256: 5e8bfc599f77f9e965078b6a5e05b9b3fd0aee582705f268290cf07c2282f9ed
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.36/datree-cli_0.14.36_Darwin_x86_64.zip
sha256: 3cc3d071a3ed77965a12e796097c722123d478f1ba6f6137ae20c48ef35b0d0b
0.14.4:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.4/datree-cli_0.14.4_Linux_x86_64.zip
sha256: 765ed3f2077bf511d076452c1542942c35d8c13ac7a32057f389ec18fcad2e8d
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.4/datree-cli_0.14.4_Darwin_x86_64.zip
sha256: 94b538d6ee1e650a447d8d4e270deae9edfcca6e85aceef9a4b023aae59d556b
0.14.46:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.46/datree-cli_0.14.46_Linux_x86_64.zip
sha256: 501f688e131bb425966dead4235aab1a1c12f3123c869bbf2a633894d038106c
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.46/datree-cli_0.14.46_Darwin_x86_64.zip
sha256: 3b0b41d2c308f589d02b4552dd48265ccd8b83d1d2e34f4c5a64df95780e6c6c
0.14.49:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.49/datree-cli_0.14.49_Linux_x86_64.zip
sha256: ea1c62f44b2dbbfa9fc66dd6577851717bc95561e9b2c5795a36245278bcd04b
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.49/datree-cli_0.14.49_Darwin_x86_64.zip
sha256: 04555a6fc9071622dda636b1c6577d751000e658b5d8e69abdae6c91bcd2f44e
0.14.6:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.6/datree-cli_0.14.6_Linux_x86_64.zip
sha256: c51d5ec9e7277f8f49686b9d24fb82fb1476aea1ba16b85ab4c8bf5f71be051b
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.6/datree-cli_0.14.6_Darwin_x86_64.zip
sha256: bbc374e74333e982c5c1de9afe26725242059aa99aed481e86e4a182fcc86877
0.14.85:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.85/datree-cli_0.14.85_Linux_x86_64.zip
sha256: dd3b5069adce0141d174e9c23c891dd6729a531203cccc1e9b42d1108fec8983
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.85/datree-cli_0.14.85_Darwin_x86_64.zip
sha256: 151bd9cf68c4e3546c09215fce9ea0c30d9621105eb5c930edadd655286bcfad
0.14.87:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.87/datree-cli_0.14.87_Linux_x86_64.zip
sha256: d590f1287ce5eae441261cf8d0d2924898ee95c4a29f2738ac06ad7a286fcc7c
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.87/datree-cli_0.14.87_Darwin_x86_64.zip
sha256: b477203f9c4736605ce7d2000831c64c55aa458ab36bdf0a3c54def691fffb01
0.14.93:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.93/datree-cli_0.14.93_Linux_x86_64.zip
sha256: c232f8eccce9b22b56377f217f4d47c12316fbc92c5cf52683ae5199da6e4310
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.93/datree-cli_0.14.93_Darwin_x86_64.zip
sha256: cac8f578d0967f6da08b5708f2f57b98562dfc2c9bde3062a2753b9f13a0752f
0.14.95:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.14.95/datree-cli_0.14.95_Linux_x86_64.zip
sha256: 7f91f785d7592aa8a6a3ea00172c8d5acd701ec79e3768d936cf6318bf278f6d
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.14.95/datree-cli_0.14.95_Darwin_x86_64.zip
sha256: bcab1118e6c4d677faeea53d087fa374ca90e688dd0dd1bfea3e42d9c18d4448
0.15.0:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.15.0/datree-cli_0.15.0_Linux_x86_64.zip
sha256: 91e26fd9d423f2554462305d3e6049065ee2d0f392d6be776c672799496e4b47
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.15.0/datree-cli_0.15.0_Darwin_x86_64.zip
sha256: b03bf2092267d58b2831dba81b2e641fd23453e62e1f5646e7e06c04aa774cda
0.15.16:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.15.16/datree-cli_0.15.16_Linux_x86_64.zip
sha256: 6f64c9509d1dcb416d93113dae083151edd914e7cb6fa1de33965301fbe678ac
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.15.16/datree-cli_0.15.16_Darwin_x86_64.zip
sha256: e1caa5a4a723e457315ddbbd455844f85698fdc162bf3381c2f3135e844d9268
0.15.19:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.15.19/datree-cli_0.15.19_Linux_x86_64.zip
sha256: 7ea301c21b93bbb5147c625ea46c71469a8505d02ecc7cd10c6f1fb92cafcfa7
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.15.19/datree-cli_0.15.19_Darwin_x86_64.zip
sha256: 7c38ba00f1d8fc91764109168bab020417b5450be8d197337fec8426103c88df
0.15.21:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.15.21/datree-cli_0.15.21_Linux_x86_64.zip
sha256: ceaa1b6e9d06ae41589bdbac3c8886e3118165dca2d531a06e8768f3e81aceed
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.15.21/datree-cli_0.15.21_Darwin_x86_64.zip
sha256: e691db55cb87f8d239841c5edacc6630a93ed43100b085cbeaf99e9092b89a28
0.15.22:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.15.22/datree-cli_0.15.22_Linux_x86_64.zip
sha256: 3fbc8b76c3cbcaede1bacaba4c0387b4277a20fcdca274afac1421d4916c1fc1
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.15.22/datree-cli_0.15.22_Darwin_x86_64.zip
sha256: b37b1530b385199b31ca67ced03592579c88bb2122da8e5692c80bb4ef2f43ea
0.15.5:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.15.5/datree-cli_0.15.5_Linux_x86_64.zip
sha256: 710ae45d03c9345e21dd9bdf843f4efba09bf2711e7cff8477fb70ab92c0dcd7
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.15.5/datree-cli_0.15.5_Darwin_x86_64.zip
sha256: 6ee0c39bb2f0a0b49befff5a614fa28732cc0c82bb76ad950cd06d71d90690bc
0.15.52:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.15.52/datree-cli_0.15.52_Linux_x86_64.zip
sha256: b2cee63e5396eeb55d788a6c2407cd00eed1db80ceab79b70c1346993703e67b
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.15.52/datree-cli_0.15.52_Darwin_x86_64.zip
sha256: 75a1273f8ab49d88c9c1ed6ddf2cf34abb0372d1ae8e8d2899d3552aa1d5e8d9
0.2.1:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.2.1/datree-cli_0.2.1_Linux_x86_64.zip
sha256: 472b44e591c4e67e24179d939a6a46bb81f54614df6423b379498f0f98e15fe9
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.2.1/datree-cli_0.2.1_Darwin_x86_64.zip
sha256: 55a77d5abfd1969e793c123c7677a5c7589438513d98d660a760eeb4b13d02d6
0.2.2:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.2.2/datree-cli_0.2.2_Linux_x86_64.zip
sha256: bdfd1fcaa574137ac56fe00ccd414b58bde42c252ca9d6cbb13454881bd3487e
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.2.2/datree-cli_0.2.2_Darwin_x86_64.zip
sha256: 5ce9ae14eade92fe52e7de8bdd1d33078e9760ab0a713f41ecf0db6da591d544
0.4.0:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.4.0/datree-cli_0.4.0_Linux_x86_64.zip
sha256: 54515c9e73bfb43821cf4106c8a1a7025ea3af113fc394f82de41fda42dfd5d1
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.4.0/datree-cli_0.4.0_Darwin_x86_64.zip
sha256: 713425c6a94aaf4fa88fe7420c07c3df23256e139362d2876857aa1947eae03d
0.5.0:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.5.0/datree-cli_0.5.0_Linux_x86_64.zip
sha256: ec4292cb44e37ab2cde3433edf1313e017647c4fc376bf840702c2d39935dd65
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.5.0/datree-cli_0.5.0_Darwin_x86_64.zip
sha256: 0667c3e64b34782f1d045cf050b2f53e3848aa3b4a921bca733faa929276c98d
0.7.1:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.7.1/datree-cli_0.7.1_Linux_x86_64.zip
sha256: 82e67404265ee08ab2d181b3f40cce33d20d8753c4ed633817db07570d0743e0
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.7.1/datree-cli_0.7.1_Darwin_x86_64.zip
sha256: db15b3a9139b3ac11b89aa871cdeba678545d3334cf2102d39932f20aead683d
0.8.0:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.8.0/datree-cli_0.8.0_Linux_x86_64.zip
sha256: 9e8c8fa8b25027e56d2debc5d84178374722e81edaa9f582f8046c76d8362d23
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.8.0/datree-cli_0.8.0_Darwin_x86_64.zip
sha256: 72a3184cb1ece2b1450d038f906395ce93390f3e6a14de72f8ff1919cdc44fd6
0.9.0:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/0.9.0/datree-cli_0.9.0_Linux_x86_64.zip
sha256: 34a519b149a3a819d8519dd7db897b74e0c52a3549792a84de173c63b02ba874
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/0.9.0/datree-cli_0.9.0_Darwin_x86_64.zip
sha256: 742a46a52d3dac429e761b49e8355d14337dbc95f449aa6ecd6a6aebf8b53b43
1.0.1:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.0.1/datree-cli_1.0.1_Linux_x86_64.zip
sha256: f35a912be92541b7abee5d7e5ecd9194fa4f213c46b20e8a0051aa2e4529fb6e
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.0.1/datree-cli_1.0.1_Darwin_x86_64.zip
sha256: 66ff53c07bfc362e1ae1cd9be441cd799c21f3fdc4332147db0bd39be6503b66
1.0.15:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.0.15/datree-cli_1.0.15_Linux_x86_64.zip
sha256: 53e5a042848b9f603cf43bc94154fd8230b4332d0b73ddba6e00ac67985e02d0
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.0.15/datree-cli_1.0.15_Darwin_x86_64.zip
sha256: b81778dfc1fd66850118765366f8545640d3894667886491966bf2a5b1ce0689
1.0.6:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.0.6/datree-cli_1.0.6_Linux_x86_64.zip
sha256: 1b3a4f97ab1daa15a1e773a85856f3c98db80c433c4a2b3b1c8d51431a38070a
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.0.6/datree-cli_1.0.6_Darwin_x86_64.zip
sha256: c9da2630bd04282370b9d427ab26cea6a447f3ec99c4196bfa33d24987a81711
1.1.10:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.1.10/datree-cli_1.1.10_Linux_x86_64.zip
sha256: 88239a1f8ec984eca7cd62ae1723a5a3539fe8d89c506a18d3ba806aebcafae3
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.1.10/datree-cli_1.1.10_Darwin_x86_64.zip
sha256: 84c4e9ffafab55641a7868b1ea9f2bbefe8096cc160d1c9cd6cbc699c37b39b4
1.1.20:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.1.20/datree-cli_1.1.20_Linux_x86_64.zip
sha256: 6bb544b5d9c0dc4c4e20e2f2908e6f57a2d83ec3bbabe59a6c8c1bd28c652860
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.1.20/datree-cli_1.1.20_Darwin_x86_64.zip
sha256: 06f1dd0d9a5a766b1e008ff50d2b560c208e1ba7ca133254eab90f632a1e33a5
1.1.22:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.1.22/datree-cli_1.1.22_Linux_x86_64.zip
sha256: 8ee16e6165966dff41993d7b0dcd51c997c1fb7ff36ff1548ede8401d8ceec40
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.1.22/datree-cli_1.1.22_Darwin_x86_64.zip
sha256: f1bbde16ad58c7c6d2a45892370e4c717560083691b72a45127c098878b26831
1.1.6:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.1.6/datree-cli_1.1.6_Linux_x86_64.zip
sha256: 77d79edf5186ff3a248951105c0f5d0e7164db297d10cb0f89611274aa4311d1
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.1.6/datree-cli_1.1.6_Darwin_x86_64.zip
sha256: 477faf3a2690a0ff3dbb598eb9270744a37af9a6c6597d81fbe235bce87af6ec
1.2.0:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.2.0/datree-cli_1.2.0_Linux_x86_64.zip
sha256: a3c78da1ca4269742b7b026c98bdc2f06ea4a2d8f23bfc62bb4e9df68d370f58
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.2.0/datree-cli_1.2.0_Darwin_x86_64.zip
sha256: 27c68d65adb712008e9e69fe6b622c78e93c0d32db95993da12e6c4b3033ac80
1.2.10:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.2.10/datree-cli_1.2.10_Linux_x86_64.zip
sha256: 2583b396e485482de0e53438bfd0a7b905ecb1398952434f668b142e345a0030
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.2.10/datree-cli_1.2.10_Darwin_x86_64.zip
sha256: c2016cb324e607798277df35291dfa6995a7b6c6884242dd1543297746cdd144
1.2.2:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.2.2/datree-cli_1.2.2_Linux_x86_64.zip
sha256: b848d89beeebf34ad2bb81ad9e864edb4cd1f7bba80661baca4a8052223907ef
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.2.2/datree-cli_1.2.2_Darwin_x86_64.zip
sha256: 1a4295f8d5cb202246f9d395bbfa4d1f2ccae40fde989f7f25e43885c2b02a40
1.2.9:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.2.9/datree-cli_1.2.9_Linux_x86_64.zip
sha256: b9e493f12762d5ea9249f2ee3b9531390d0a520ddeb1f60affb7796d2e88b202
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.2.9/datree-cli_1.2.9_Darwin_x86_64.zip
sha256: 344fde3e3484d91a57bcf17d196e279506f8d7b90e5e95086829280f844e247f
1.3.0:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.3.0/datree-cli_1.3.0_Linux_x86_64.zip
sha256: fb61e87f5dc36bb07de893600c620cb1cc4da2797eaf124f4e711451e6e77445
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.3.0/datree-cli_1.3.0_Darwin_x86_64.zip
sha256: c286982e5a2e07aa96820d9ee2fb6f8383b17263491956b8d83e9fa83b35a4e4
1.3.2:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.3.2/datree-cli_1.3.2_Linux_x86_64.zip
sha256: cad0a145d339d8a301b27b1a405fd15a0d88eddade3d3d62dfb765af2c2f791f
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.3.2/datree-cli_1.3.2_Darwin_x86_64.zip
sha256: e8ceda8d38a04eccebc4ac57ff39fefda6cc13bb932bfbe437c747fb8c78b7cc
1.3.5:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.3.5/datree-cli_1.3.5_Linux_x86_64.zip
sha256: cb6e4b206506db353a1be284e47f20cf933f4decb55a9613f6c7576ccecdf954
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.3.5/datree-cli_1.3.5_Darwin_x86_64.zip
sha256: ec347837cc2ea3f53177195a88174ecabf7d02426f2501884dd2370c6e793469
1.4.10:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.10/datree-cli_1.4.10_Linux_x86_64.zip
sha256: 3074f777fc02a25d6a54784b404ea77a9548fc4f8cc9949138bb767238a14431
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.10/datree-cli_1.4.10_Darwin_x86_64.zip
sha256: bc6b6d82aa66d96dcf857b2930782cbe7735468336f26db82743c19e365a0a86
1.4.13:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.13/datree-cli_1.4.13_Linux_x86_64.zip
sha256: b5137007e6af7bd491a6104628ed907fea57bb9e8dff3b5c1daaab278e80d48f
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.13/datree-cli_1.4.13_Darwin_x86_64.zip
sha256: 3e21c40ffdae68e7463b47abb89c367f33c464383055c7e54d87b8486acb8831
1.4.17:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.17/datree-cli_1.4.17_Linux_x86_64.zip
sha256: 3c79dfbaf7af020e54b6bae2c4b4b8932df41390647d721243f73a000bd4208d
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.17/datree-cli_1.4.17_Darwin_x86_64.zip
sha256: a5e2871064d4701e17ed546823725f96740cb6735698f56f653d0e1dcfbb886b
1.4.22:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.22/datree-cli_1.4.22_Linux_x86_64.zip
sha256: 718daeeea101eeaba4e1a380947f36d29d63b883c5d59aa1c81685dea6cb003c
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.22/datree-cli_1.4.22_Darwin_x86_64.zip
sha256: 252fd4d24504f521b1a8317a9f0d1e11b49350f566791e4f534f451be5c14c66
1.4.26:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.26/datree-cli_1.4.26_Linux_x86_64.zip
sha256: 1b7d2e29c82443ea4814c9e06385eec204e6b36653403138b8fb67ff05dc7a7d
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.26/datree-cli_1.4.26_Darwin_x86_64.zip
sha256: ad7f641155156b8090401afa9e3bc0e65043bcb94b9704ee603f6495aaa42141
1.4.28:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.28/datree-cli_1.4.28_Linux_x86_64.zip
sha256: 5c2adf66fa4d0f1264db77e2111e922a827de5430774e701e421cc693baaf580
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.28/datree-cli_1.4.28_Darwin_x86_64.zip
sha256: de7d7fa2d44d6bd1117feb37b9d1586d1c0520ec31a1f394bbea14893647eefe
1.4.3:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.3/datree-cli_1.4.3_Linux_x86_64.zip
sha256: 78b676d9a5190844c5de9a5eb902124ea0bff6bc376c9f9778ae7b16cffebe57
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.3/datree-cli_1.4.3_Darwin_x86_64.zip
sha256: 15f900cc06fb0825112b3e4dc63c4118778589da912dafcba4cd0749b1898a57
1.4.30:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.30/datree-cli_1.4.30_Linux_x86_64.zip
sha256: 5e0760d975f650015065d6103902c87b591c3b2a1b63d022aed6830ea0b49bb6
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.30/datree-cli_1.4.30_Darwin_x86_64.zip
sha256: edd1a63f314d678ea054785a3777f23b9ab44d00bc8d4efb3a31dbd061468596
1.4.32:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.32/datree-cli_1.4.32_Linux_x86_64.zip
sha256: 63afdea970dc165f588ee16a757799a98fa4a8658828c7e98b8eb5a4936b38f8
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.32/datree-cli_1.4.32_Darwin_x86_64.zip
sha256: 77314862354bcc894ac490f3e312063752ffb275faa32668fd114c28211a8e92
1.4.37:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.37/datree-cli_1.4.37_Linux_x86_64.zip
sha256: 993307ff458d82faa5ed803e493cec0bb7b3930910002fe23de0b1c9d191f930
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.37/datree-cli_1.4.37_Darwin_x86_64.zip
sha256: 16eba8d8c24c8bccf3145e8bd2247dadb7112ffe7cc5a0846e2d91917a092b13
1.4.4:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.4.4/datree-cli_1.4.4_Linux_x86_64.zip
sha256: 97efdbc6e3394e604f0ea4a2fd4c9c476e9a264ce00426aa1964356bbfa10cfd
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.4.4/datree-cli_1.4.4_Darwin_x86_64.zip
sha256: 855c9e8edaa56bcb66811963017830ac0d66a3aeb16570d5c6cde93aff2ea4f6
1.5.15:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.5.15/datree-cli_1.5.15_Linux_x86_64.zip
sha256: bc5c5e5223b903dfda5faaaa152264f4f3c0aadb45d84036265577c81419f36b
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.5.15/datree-cli_1.5.15_Darwin_x86_64.zip
sha256: 806ab16c38ade7055a0073c30a0aaf40f036497ce4977619fde9c5a82bf335a7
1.5.16:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.5.16/datree-cli_1.5.16_Linux_x86_64.zip
sha256: b801b4891a2ab5847f1b89df5ee08b2c8eae9b619d23d50445e5c01ffaf955ed
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.5.16/datree-cli_1.5.16_Darwin_x86_64.zip
sha256: b3ed690319fbbdc130f84be294fc6b6f78e10c98188b2c2bba1303b86eb2093e
1.5.17:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.5.17/datree-cli_1.5.17_Linux_x86_64.zip
sha256: 2a6505c6f88afbe6a3cf9a8e63e7df6b7db7ca63164403b213bae51aeded6c69
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.5.17/datree-cli_1.5.17_Darwin_x86_64.zip
sha256: 1ccc6e310e8ca05ca63842cb623bb070601e12474aad19204509a31700ec2d5e
1.5.19:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.5.19/datree-cli_1.5.19_Linux_x86_64.zip
sha256: 1ec23ebbe5a697c33de40d2f9ae5755d4e15def93af1a68668b9049e9221c247
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.5.19/datree-cli_1.5.19_Darwin_x86_64.zip
sha256: cc4a0cbdf2e9d2a3a3ab4e6a5940aff3df0f9509b0175fa24f7c9e74789a744f
1.5.2:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.5.2/datree-cli_1.5.2_Linux_x86_64.zip
sha256: 15e8389fb7bd4b37dcca7de1fc6557b54fb0d28bb3a3611e531aab655d8c138b
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.5.2/datree-cli_1.5.2_Darwin_x86_64.zip
sha256: 72779dc51b1b6223a8ed7ead01939aa507e28b93c9721205c94a7d8f75596ef7
1.5.20:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.5.20/datree-cli_1.5.20_Linux_x86_64.zip
sha256: 9e0a0fe195d9613cd3f2eb976c7e1ea9270907a65c27ab7ab132ea8847f7bb9b
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.5.20/datree-cli_1.5.20_Darwin_x86_64.zip
sha256: 960d3acbb3ff49d1e5fb4479fb7b6c61c3f9fa762b5175960dd4609e4b9df9e1
1.5.3:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.5.3/datree-cli_1.5.3_Linux_x86_64.zip
sha256: 4d948580aa7b3b9c999ad76fe3f86fe3cb61f4c6d1b4311adaa4635bcfe4475a
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.5.3/datree-cli_1.5.3_Darwin_x86_64.zip
sha256: 3dd80e2c70ee3e24d3b380fcd4e5c0eac5be6c5205fa632a291ebdbbf64a2827
1.5.7:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.5.7/datree-cli_1.5.7_Linux_x86_64.zip
sha256: 9f7e47dfffbaa08f23a3b38429f85f8118d89872508ac9ca019d5a05310a65fc
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.5.7/datree-cli_1.5.7_Darwin_x86_64.zip
sha256: ec6eaf25548a6d8ba8cfb0b6cbe3c4fcb3707a3cabd071b97e2895693ad6ac21
1.5.9:
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.5.9/datree-cli_1.5.9_Linux_x86_64.zip
sha256: 8a5f913648779b0fda2ea9b21bf2da4dc2af59d9fb5d11de9c939ab504753155
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.5.9/datree-cli_1.5.9_Darwin_x86_64.zip
sha256: 1ed190af8fa5a8452eab80717f72b32b080d55de0116cf6c6ee43428ab89f966
1.6.0:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.0/datree-cli_1.6.0_Linux_arm64.zip
sha256: faa12bc201a9612b656d2818c69135ea9937acb91befa0be8443d7f4ef5b7574
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.0/datree-cli_1.6.0_Darwin_arm64.zip
sha256: fcb3c97f9deafec8d51a9b6ecd7f1aac4ccf82b75aaf1b7ae8d4a9df0d9c0e98
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.0/datree-cli_1.6.0_Linux_386.zip
sha256: 7985cfc9c9e7185574edb91a0e2f15006270b173c33189dbce2a074a7bf31aa8
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.0/datree-cli_1.6.0_windows_386.zip
sha256: 2c3b5a1023f64e154c22c4440a2bc384d2c4111460b04482b1180118dbb65560
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.0/datree-cli_1.6.0_Linux_x86_64.zip
sha256: 491ad4244d9b2fe99d3d58ee4024eb5904e1b7c9efb012178651c584f28a9929
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.0/datree-cli_1.6.0_Darwin_x86_64.zip
sha256: 5ef3a219fc8024287f1f94c77e9de175923a76c80efb2198a4ca1a692e89de9a
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.0/datree-cli_1.6.0_windows_x86_64.zip
sha256: 2430e26a487409f6ebb4b740b184686f4d19300ca6cd8e3a3b0738ada9c80332
1.6.12:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.12/datree-cli_1.6.12_Linux_arm64.zip
sha256: df77d10c4b25e4eb9f4dd09f0693af87b45e1b5acade6765c8f5ac412846c92e
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.12/datree-cli_1.6.12_Darwin_arm64.zip
sha256: 36b693322d3c0161a53b06ae3c725bbaa87f0b7a3ad600aa4e17f57a241632c3
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.12/datree-cli_1.6.12_Linux_386.zip
sha256: f04025cc21782843f71872a6e29a059fd07683d530510b07ff87fba8af1b8b7c
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.12/datree-cli_1.6.12_windows_386.zip
sha256: 6b4746068d50c23bf2b0fed1b283f358ccadbf754a8131c271e9fa2672d5121e
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.12/datree-cli_1.6.12_Linux_x86_64.zip
sha256: 6b0eeb2ca18bdfdd4a754de8812c2a2a4fd602cc4b7df4f150e007619fec33cd
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.12/datree-cli_1.6.12_Darwin_x86_64.zip
sha256: 4830f3e2ac56c150b36cf6998f066f4ee1ba684da8239cb26965494fc91859ff
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.12/datree-cli_1.6.12_windows_x86_64.zip
sha256: 8177c813e3f53b169d007464cd92221d4c5ee61793c8221dcbea558e531e44f2
1.6.13:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.13/datree-cli_1.6.13_Linux_arm64.zip
sha256: 607f228e7e4588221bc7f8ed73eb96187adf1302fe2916bfbc67c415609b3545
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.13/datree-cli_1.6.13_Darwin_arm64.zip
sha256: d8f02d07e41f65a3e48338466cd41070d26e4ec6b7d631ab49534b053290ce16
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.13/datree-cli_1.6.13_Linux_386.zip
sha256: 002fb2314cfa30e96b7ab4e853df424fd4f558f2ef66cb71174ab42c6a1562d8
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.13/datree-cli_1.6.13_windows_386.zip
sha256: aff17286b1a8333ee7e7c9a7b5140f7cd1b72746d697fd03745f0416135f6928
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.13/datree-cli_1.6.13_Linux_x86_64.zip
sha256: 1605a22bdb975690a313560dfe23efa5e8003a3821f6a08fe0cf478c940fcb44
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.13/datree-cli_1.6.13_Darwin_x86_64.zip
sha256: c66981c5a8fb15ade2de67f27062c7ae362d65ffdaa3f7d8b73e1ba2c23e8ea4
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.13/datree-cli_1.6.13_windows_x86_64.zip
sha256: 2cdc80294a481815b329556f2895376196424836379c0c714ef73d81d2cbedc8
1.6.16:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.16/datree-cli_1.6.16_Linux_arm64.zip
sha256: 73b39e7e3fad8201e903ae98d5371c05b4e53681081455ebe44e4927c8b7494e
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.16/datree-cli_1.6.16_Darwin_arm64.zip
sha256: bbff53adba929bd3b4e172000caf210a6d4d50d46a88f139073b1e1ec1ee25bf
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.16/datree-cli_1.6.16_Linux_386.zip
sha256: 3b0d2b639f0ede6417931d065553bfd49c8a7e4fe3c1d4d971bbfabe52fc9702
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.16/datree-cli_1.6.16_windows_386.zip
sha256: 5d7a4438362aca4974edbc33f741130da91bb608618b631270ba3bfb8f721230
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.16/datree-cli_1.6.16_Linux_x86_64.zip
sha256: 5b48c852f04afff5b67da771d3aa420215818d23fbc57f33052cf2f2cb8a3698
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.16/datree-cli_1.6.16_Darwin_x86_64.zip
sha256: 9da027203ff198a33efb60084538473a911bdb93b4e0c0490d656f2cc7d8fa3a
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.16/datree-cli_1.6.16_windows_x86_64.zip
sha256: df77d59d90b0b0ea3e15b1ffa999c1cfdd546fae7522268af8084f82f947634c
1.6.18:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.18/datree-cli_1.6.18_Linux_arm64.zip
sha256: 3ed718b0f3276bc1533dd5a48b74ee92a61f4487978830f6abad933d823fcf74
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.18/datree-cli_1.6.18_Darwin_arm64.zip
sha256: 48c921cfb533e050ac4e0c86edd3dd0e5b97c4860a7abcba0570d6b88d321783
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.18/datree-cli_1.6.18_Linux_386.zip
sha256: f1449292bf7a082fb82ada5836fb8ab4736c90063a49a4f2842e54ee31e010d0
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.18/datree-cli_1.6.18_windows_386.zip
sha256: d9f77d065742e1dd68400efae40eeec36d7d11063424b414b2a18a9e8dbfebe5
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.18/datree-cli_1.6.18_Linux_x86_64.zip
sha256: e266e8767d38f93c6fd3e20899c25d9f1562a664ebcf4702c6bedf89cfa213f7
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.18/datree-cli_1.6.18_Darwin_x86_64.zip
sha256: 7be0781353eafaab8ce79790470cc36072afa5ef06536169ceb4c5a870d215a8
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.18/datree-cli_1.6.18_windows_x86_64.zip
sha256: 422f1e8c29cde3155afc1e3bd05de3192dc38143c3bf36e187fe28ea34d01a86
1.6.28:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.28/datree-cli_1.6.28_Linux_arm64.zip
sha256: 6a1a29cbb67f8e5cd62914f129abacb694f638e91e7ffa32de6a042c57bbd427
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.28/datree-cli_1.6.28_Darwin_arm64.zip
sha256: 4b0669ca61a71bdbe0107999d874dfbf3fa7f98384c39776844e36b8b45456ab
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.28/datree-cli_1.6.28_Linux_386.zip
sha256: f05708eac299b41cf58956fc88dffd89a53e87a5c97db82e186b69bc83117f62
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.28/datree-cli_1.6.28_windows_386.zip
sha256: 59f4cf6ba1103c23246f0c8b15452fa93313f0f45a1e6bcffb5150fde6c14794
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.28/datree-cli_1.6.28_Linux_x86_64.zip
sha256: fcaba0b45d78a0a18846c7ae9814a90e07c42e0f171acec826cf17bbdcc63a19
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.28/datree-cli_1.6.28_Darwin_x86_64.zip
sha256: 81d8d48fc72dd7aea1ae4ea850de06b9a80b05b917ac23d3ad0e581f9077cc4e
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.28/datree-cli_1.6.28_windows_x86_64.zip
sha256: f7fe39a2853ec2e2a19651d4789cc918212c0c12561828480fd6a590ce191e7d
1.6.33:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.33/datree-cli_1.6.33_Linux_arm64.zip
sha256: 9328dd9ece4f1132e8c62a32e756045d0e30cba3af2e4990bd40ee5c42d12b7c
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.33/datree-cli_1.6.33_Darwin_arm64.zip
sha256: ef8c5e7532c63829d143bde69b2f596a14e87eee1214a8d6cca51b0150de5c43
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.33/datree-cli_1.6.33_Linux_386.zip
sha256: 7f8505b8d2b4180db0c8a328eff49d99d3c11ee56f9bca0da22b655e50f0bfac
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.33/datree-cli_1.6.33_windows_386.zip
sha256: c25d49198a153e97a4401fbfb9239ec71ccc9fa02a4a80d696234e328e1ae5ec
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.33/datree-cli_1.6.33_Linux_x86_64.zip
sha256: a4b97975624c62b585446389842aeb90110f854d156df1b669e9de293031ecd0
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.33/datree-cli_1.6.33_Darwin_x86_64.zip
sha256: f9ecb87b4ce49036d89f585adc6f583a2e2bc313948e3e5c2124d02e07d2cbd1
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.33/datree-cli_1.6.33_windows_x86_64.zip
sha256: ae1bc00ab4d6dad698edc934a64c5672411d80ee1740e1ea45a9f8d6ca068277
1.6.36:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.36/datree-cli_1.6.36_Linux_arm64.zip
sha256: ddbbcfd05db8b62354e73f10b3d24ec38986cd760c472ed8828255bd4eeebb8b
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.36/datree-cli_1.6.36_Darwin_arm64.zip
sha256: 5187597d1f3aa9fc752049686ee149d9ae0f87fa4527761a8cc9b34224b3dacd
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.36/datree-cli_1.6.36_Linux_386.zip
sha256: bfd233a0b117aaeaa2a4c8c39eceae176ade489602c830e655ab1ccacb767f2d
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.36/datree-cli_1.6.36_windows_386.zip
sha256: f64ff07b0b330caa9a5d63035fd36284cdc140aabe4f9d01d7b155c9b87cbf20
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.36/datree-cli_1.6.36_Linux_x86_64.zip
sha256: b6d208bc0c75a68080a24a96896271c76671de2a16320974ae749a6f6e4250f3
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.36/datree-cli_1.6.36_Darwin_x86_64.zip
sha256: 6ca735f5be5cd2c190290c1abcaa66f0a20ccee42e0e4538340206968ef2756d
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.36/datree-cli_1.6.36_windows_x86_64.zip
sha256: b03fe90c8a514f8a4075210d663436629ff02d9e0680d02942ff2f967bb2e541
1.6.37:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.37/datree-cli_1.6.37_Linux_arm64.zip
sha256: a92bf60b1b7ca37e60bf31b055e0ee709695fd7f63ec0fcdb67c6408573b92e0
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.37/datree-cli_1.6.37_Darwin_arm64.zip
sha256: c9ee28bd7f89656ee8c9fba9b02a6502e1a19c0065f1f32ca21d81904af7df69
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.37/datree-cli_1.6.37_Linux_386.zip
sha256: 781470c770f7f47082249af4d2e1bdec71cc4ade4df4fb8f85ebc479c3867310
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.37/datree-cli_1.6.37_windows_386.zip
sha256: a28957cf5b92598f2b1037b4ab94f8181535d4e9f7c0fb2d2ab0c765bf3cf9bc
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.37/datree-cli_1.6.37_Linux_x86_64.zip
sha256: b5feb118be666c91fb15e9e5a564f2208f6d32821523548f1ee5039d5e2525e6
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.37/datree-cli_1.6.37_Darwin_x86_64.zip
sha256: 889c4c78b056fe47ed9aab80e6ab255a916a296b2147b479cd2c34ca9c8be521
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.37/datree-cli_1.6.37_windows_x86_64.zip
sha256: eea499665406b7fa435bfcf7c40110d1407ab0c935bad70c414cc998aaa4d92e
1.6.42:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.42/datree-cli_1.6.42_Linux_arm64.zip
sha256: 47c24bb539e9880012af5640afe7037acfeff51e6b4f4a777be4ad388cbba4b7
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.42/datree-cli_1.6.42_Darwin_arm64.zip
sha256: 6a81eeafb01852ecb71730a5d7dbb2eb31a6b9386821ca69afd1de5a21718f05
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.42/datree-cli_1.6.42_Linux_386.zip
sha256: e48631833d85a28c5b625c487c35717abc9e1afd6e04f22fd7c1266fe6a4220e
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.42/datree-cli_1.6.42_windows_386.zip
sha256: 357132f673d9e05f41eb5d9e9df2df121c0b80d87f247f3ba2fc3dfa371b430d
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.42/datree-cli_1.6.42_Linux_x86_64.zip
sha256: ab094e63b60632e3c729e1edab482dfd3307ffe256c3f81c25cd114c9694dab2
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.42/datree-cli_1.6.42_Darwin_x86_64.zip
sha256: 572e07f30b3c0e7b25c8cc746153b369b170f61e395ada9cbfb12ca2a5505051
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.42/datree-cli_1.6.42_windows_x86_64.zip
sha256: e2eee0d67dc8f3384d63a6ca63d9106901c695d31c428acc1df14780e0503a1d
1.6.48:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.48/datree-cli_1.6.48_Linux_arm64.zip
sha256: 456286eddcdef9fe69bd424eea5205f27d2fdf287d1beedf6fb86da86e228821
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.48/datree-cli_1.6.48_Darwin_arm64.zip
sha256: 9f5ee9cd2023898e21809fec696c5e227105110029072ae3cb9f96cc719674d2
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.48/datree-cli_1.6.48_Linux_386.zip
sha256: 286e32be1734840964c1b7c180e25af3b0bc876817c1a63cc8daa1eda05be315
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.48/datree-cli_1.6.48_windows_386.zip
sha256: 3c6c9332e0d5e739f89c526771905850be9626d9757be71a4a6ba2dea05e5552
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.48/datree-cli_1.6.48_Linux_x86_64.zip
sha256: 1d8124399e548d4da8f990ed0283b4c90dcaba32cc4bb7cac707b642e3419e26
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.48/datree-cli_1.6.48_Darwin_x86_64.zip
sha256: 1ef4fdc9588e24f03be274ccb0231fd157ea75963232343ebc0cfe6b8d5a265c
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.48/datree-cli_1.6.48_windows_x86_64.zip
sha256: fa76886e606fb08fe17ad7ba9e2dbeeca0c6ef6be9780c0fd745f18571273617
1.6.6:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.6/datree-cli_1.6.6_Linux_arm64.zip
sha256: e7cd0c483250fd487b1d71e92994c4a8330793551c22f805f1360fea0c978c95
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.6/datree-cli_1.6.6_Darwin_arm64.zip
sha256: 6ab635a055e084a14bffd7d86c589813657518d831631385ea2bbf158660d16f
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.6/datree-cli_1.6.6_Linux_386.zip
sha256: 7e5731fad7f17be64433f21446ecbde3eb8ba96c118f4c8f2894ba85deca51dd
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.6/datree-cli_1.6.6_windows_386.zip
sha256: 0235a8a01251faab34f3703f85d97b275dc37bccf0c397a0bbd58b0679b52c9f
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.6.6/datree-cli_1.6.6_Linux_x86_64.zip
sha256: 93bcab1824b1e64eda54544dec84b0d2246e05cacbf9c164b4e9386d68ecee33
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.6.6/datree-cli_1.6.6_Darwin_x86_64.zip
sha256: ceb36aa7b75f4eb3a3711637e19a1a202f07e2378b49f3bfb206daeadfb5b0fc
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.6.6/datree-cli_1.6.6_windows_x86_64.zip
sha256: 0a608376d9365e553e536a5d7a6296a95217c73bce98c8219e77535c3a29ae1c
1.7.1:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.7.1/datree-cli_1.7.1_Linux_arm64.zip
sha256: de2fb6b9e2a7d3eca92f5da28437607a6fee3524621fa5470d26adb5e6811ca8
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.7.1/datree-cli_1.7.1_Darwin_arm64.zip
sha256: 22e1c8f967da51f756295187dafa5e18f1e05c240e0f5b2dc58b71e1e82e645c
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.7.1/datree-cli_1.7.1_Linux_386.zip
sha256: 9f5d1ca177cb839fab1c687f6a0b1d76d41b5155ab709d4eb7b3ec43cad7c9dc
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.7.1/datree-cli_1.7.1_windows_386.zip
sha256: 93dc5b2dd1699f521b2aad3067acb5cf9101f168cbd6b4be9097d95901e6d5fa
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.7.1/datree-cli_1.7.1_Linux_x86_64.zip
sha256: 3ac870db888393d75de0f566ac22114be8ea41ee22499c64cc6da05ee37d87e1
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.7.1/datree-cli_1.7.1_Darwin_x86_64.zip
sha256: 4765baf15b858fbcf315b3a229d0675de87a008b12265494b7f6975c0de782f4
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.7.1/datree-cli_1.7.1_windows_x86_64.zip
sha256: a1c82a3650923185631bdfa57e2de91b333c80071118e0443fc4ab5dd5659c12
1.7.3:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.7.3/datree-cli_1.7.3_Linux_arm64.zip
sha256: b32b387a6da8b8cce850ef76c8b1e8e81dd0aab0c8c2bdf2f43b9634e8194954
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.7.3/datree-cli_1.7.3_Darwin_arm64.zip
sha256: a8ca2bf062bda589c489edbffb51589717d3b5a70f9f4a522e3434d060d16295
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.7.3/datree-cli_1.7.3_Linux_386.zip
sha256: a342866699d418b7ab5e1da3a3d3efa5ddbd16c3a859efcd4e2135a018166834
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.7.3/datree-cli_1.7.3_windows_386.zip
sha256: 73e542b33a7fbec4671a390c1c2d64f2607ba9932521ae49ecfaadd78923777e
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.7.3/datree-cli_1.7.3_Linux_x86_64.zip
sha256: 0d9b4fc2d123ae46b64c85ba7170dbeafe8b4be88c1a727975adf6e06e6acaff
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.7.3/datree-cli_1.7.3_Darwin_x86_64.zip
sha256: 3993fd72697d7fa4ec01230014db5d42f755adb62eaf6b368f7f98358ff7f866
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.7.3/datree-cli_1.7.3_windows_x86_64.zip
sha256: 17c8c4fab46f2fc5212ad8036095993332aa9cde48e64b80a5edc4b191ef039c
1.8.1:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.1/datree-cli_1.8.1_Linux_arm64.zip
sha256: 9fe49178088c4c5069d253e9b8dca1e41165e488848c99e5e10b4f6c3bb023f2
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.1/datree-cli_1.8.1_Darwin_arm64.zip
sha256: a8c1f16468c6cfa4e57d3a66ea1caf5d0c76289f4b9b370e87da569adba517de
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.1/datree-cli_1.8.1_Linux_386.zip
sha256: 497bdab3d68f55e1ac1dd2aa68f3260f2d09ab32bc25ad1c89fa2f3a931afdcb
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.1/datree-cli_1.8.1_windows_386.zip
sha256: cfc1b113bc934c808567179499d430054efe179ffec8c4cc5ae6c01793e2cd5f
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.1/datree-cli_1.8.1_Linux_x86_64.zip
sha256: 7c9dd8621a31838eff696ab5c30363e2b4654a8174d0252ad8ca4aa434e7a9d0
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.1/datree-cli_1.8.1_Darwin_x86_64.zip
sha256: d0af39d04dec2ccb53f77e6301ce4e64edfc4854692bba2f2243b20ecf551448
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.1/datree-cli_1.8.1_windows_x86_64.zip
sha256: 25c2d5a17cd1bc7781da7e5976ccb541e217ecd2f8029fcf7438a9368562f32e
1.8.12:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.12/datree-cli_1.8.12_Linux_arm64.zip
sha256: ff2092e2b98278f5bbae4cbdf3f0ef8d54ceab2572f5c0f84e55bd45c2efb852
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.12/datree-cli_1.8.12_Darwin_arm64.zip
sha256: 76e8ecaf63c2cee7dea0b32fb8f947f3d8cb532ca2e7912250f6de367bf5810d
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.12/datree-cli_1.8.12_Linux_386.zip
sha256: d5315810024b2512be329244ebd70dfe9d747ad6886a9ca62a5221e6f07dd7b6
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.12/datree-cli_1.8.12_windows_386.zip
sha256: 1c7305a815eb6e6221d13ab0b85c4e980eba8fe1fe918fcc95cba65266ade187
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.12/datree-cli_1.8.12_Linux_x86_64.zip
sha256: 20b3e96d7c9fa999d04400ed474984c395556626510dce092dd6d17be63494b2
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.12/datree-cli_1.8.12_Darwin_x86_64.zip
sha256: bb9c6bd84c77eeff22176f7ffa55dad74bcd815dee01cf041fc65ee2863cc483
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.12/datree-cli_1.8.12_windows_x86_64.zip
sha256: 530044db09d12f8ea9116129fb4303a47f2de31c8b2a1c8cf85c9af520cae32c
1.8.14:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.14/datree-cli_1.8.14_Linux_arm64.zip
sha256: 98c6af8113eeb654ded74940b70df65ca2c11183f3d52a934ffcb0ba3b18a9f4
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.14/datree-cli_1.8.14_Darwin_arm64.zip
sha256: 7dd3e715edac52a0e38639920ecb9e17177d1e9c20ced746f094a4b39d178627
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.14/datree-cli_1.8.14_Linux_386.zip
sha256: deb7d7b1ebbb6d575c7078ec7ec44a0b32384cdb82bb26f443302291272a1f61
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.14/datree-cli_1.8.14_windows_386.zip
sha256: 69257044178d98d5c8ac5bdcbc9cd7f9123232a8f6e7a49536f5439791009b71
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.14/datree-cli_1.8.14_Linux_x86_64.zip
sha256: ad177bc3c7f5732eb33d819741dea44243315a712bb2d53ff6a6842a7683dff1
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.14/datree-cli_1.8.14_Darwin_x86_64.zip
sha256: 400b880cdaba5c33ee5915a950df18c6210086074b765a13239fe486e2cddbb5
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.14/datree-cli_1.8.14_windows_x86_64.zip
sha256: 859508f8028d1a03807de876c5233a82142136ce6cf5ffde2cb8f52e7362e4ab
1.8.20:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.20/datree-cli_1.8.20_Linux_arm64.zip
sha256: b8987ae4333741aa93b6691fd9d0ca91ad8a331880aa174cc745306d0f560beb
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.20/datree-cli_1.8.20_Darwin_arm64.zip
sha256: 8514c633dd73565e9c7d31116bc04df6ed704ee843b30fdc9a0810114cb3948d
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.20/datree-cli_1.8.20_Linux_386.zip
sha256: 07db04d0c60feabed5a1ddff3ebd6c6184ac351f29b2b61ef24f2b34a5ff4efc
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.20/datree-cli_1.8.20_windows_386.zip
sha256: 5d84d78a42886eec4dbd4df532069d6846cc7c9ee28d56ae860c93c317c74bbb
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.20/datree-cli_1.8.20_Linux_x86_64.zip
sha256: c5aec00bc2590bf577f7ebd17983b5f2936febd8344ab3acdd6e85319298c33f
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.20/datree-cli_1.8.20_Darwin_x86_64.zip
sha256: 57567a6587ad12f85eb53bb4615b1b4cc648a8bf5de0e156a552cd6a01aafd5d
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.20/datree-cli_1.8.20_windows_x86_64.zip
sha256: f7c78dab4d6e15a17f01ae2cdbf28b32fbb1f1f7c0c260c06e4d04be63087b33
1.8.21:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.21/datree-cli_1.8.21_Linux_arm64.zip
sha256: ea5bde426051a767d34c8bcfc2159679b4b187fba99b41d6da160e897b3a0d95
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.21/datree-cli_1.8.21_Darwin_arm64.zip
sha256: a6ec15ba4ccf1bd55eccb56c899f5243c0a50b711dd42f43cf3c4b2d3a5cda43
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.21/datree-cli_1.8.21_Linux_386.zip
sha256: b621720bc2e0dddc7432ddd9406a44e682094d6297633d07dbdcf4a4dac05079
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.21/datree-cli_1.8.21_windows_386.zip
sha256: efb27ba53bc2dfc5ccf8c5f2f71fa67b7d0fd2824f32f3fa075ae9cf47575fbc
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.21/datree-cli_1.8.21_Linux_x86_64.zip
sha256: da153be605f74778dc9efaa0b517b3f6042271aa6414234492adcc8ce58ea8ad
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.21/datree-cli_1.8.21_Darwin_x86_64.zip
sha256: 0d81ba4c510b8f631f27da58693e6b533bb322a5204419c24e5609728cfc1f76
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.21/datree-cli_1.8.21_windows_x86_64.zip
sha256: f2d697dcd8846173d79cb85ef80bacbbf90fb2ad855612ec9522924cc2c00fbc
1.8.24:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.24/datree-cli_1.8.24_Linux_arm64.zip
sha256: 2bab07d65c623e8107986e39e5d1467946be882be2d5ef5c8d47e02a9035d563
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.24/datree-cli_1.8.24_Darwin_arm64.zip
sha256: 80196bdd5176722381b80eaed87e36e922857d6023f1bb1666d14b61c9710ea5
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.24/datree-cli_1.8.24_Linux_386.zip
sha256: 316a6b2b16210f6d9c041ce1b7cc68ce0c643e76f55e912814c791ad6af7a992
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.24/datree-cli_1.8.24_windows_386.zip
sha256: 582d7608c4215cbb7422859226b26627264ea6ac0352c2af28d40dd58ce98ddb
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.24/datree-cli_1.8.24_Linux_x86_64.zip
sha256: a78056746f3b10bbb882ab11c411c609d44bf2f40e54ed3437f0a4eb46a5fcc8
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.24/datree-cli_1.8.24_Darwin_x86_64.zip
sha256: 78b95156e4038959150429c9df8be95304fe8fb7278110100d2a98eac8c0dfc9
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.24/datree-cli_1.8.24_windows_x86_64.zip
sha256: fa8f0a89c078411736906a62d048c704facd8d10351f293e60be5b85e0047c2f
1.8.27:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.27/datree-cli_1.8.27_Linux_arm64.zip
sha256: c3db5619c529c7bb5c3a5642db9ec0a2806d07e643995c6f8d9c853b9b2d17db
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.27/datree-cli_1.8.27_Darwin_arm64.zip
sha256: c57d198cb301c102cd12a5becd50e401436ae606b8ff0deea5b5202d7edddfe5
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.27/datree-cli_1.8.27_Linux_386.zip
sha256: 670dfeec23d0c440892bc93dab1757fd9b1636f1992e32749208bff8802b452b
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.27/datree-cli_1.8.27_windows_386.zip
sha256: 8cd33cc5fc747446e0b5abc5fcb3c7fed73f8051c0555129b3e7168e46fed9b1
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.27/datree-cli_1.8.27_Linux_x86_64.zip
sha256: b49c2a1e1a5b61a6ae25c9a9092efe97a5c6e620b7044762c690076f5e28cd96
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.27/datree-cli_1.8.27_Darwin_x86_64.zip
sha256: 661ba7f56e76c251020aaf5739646de81f590a77b6a86ba6cd187b7e8e0464d1
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.27/datree-cli_1.8.27_windows_x86_64.zip
sha256: be1edbfbfff5c5f63cd86bbc5ab78f2fd0c1aa2174f003072d941647d7b89bd6
1.8.33:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.33/datree-cli_1.8.33_Linux_arm64.zip
sha256: 4da7aad25e3586461e3e127e83cb973ff37aa266c1b94fb21126a51bda311151
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.33/datree-cli_1.8.33_Darwin_arm64.zip
sha256: d455e24f552d7c53fb79a644557cd04bd4f66dcbe7186c758364ccfabe00f196
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.33/datree-cli_1.8.33_Linux_386.zip
sha256: 3a841d697fafc05ff67e4692c3293993fb073b2ef164b0334f4f53c66824153e
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.33/datree-cli_1.8.33_windows_386.zip
sha256: 49e681319a2b7b825948da960bbf5c9c62e69490ddc066fffb0ef9d25bf3c132
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.33/datree-cli_1.8.33_Linux_x86_64.zip
sha256: 72032fdd4be783e103ebc0bf03e61bc9d495afcd225a786e5b061a336d34563c
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.33/datree-cli_1.8.33_Darwin_x86_64.zip
sha256: a2b041da498f21d7b481a511ae242831c147612223d8e7f1436e50374aefb833
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.33/datree-cli_1.8.33_windows_x86_64.zip
sha256: c438d745a2b32d217a4af4ee521ed44744143b6f558145c2f1e0881277ff0472
1.8.37:
aarch64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.37/datree-cli_1.8.37_Linux_arm64.zip
sha256: 3dc79ab2ae9a760ae630c6e3967e4410b8ffafaae04f15b7a93c30f6ca1e97a6
aarch64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.37/datree-cli_1.8.37_Darwin_arm64.zip
sha256: 1e1a1b3fea1678dfc63fed696b00c9d95cf71e604a5c14f59aa0783dbaebb930
x86-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.37/datree-cli_1.8.37_Linux_386.zip
sha256: 4c1efc2cf64c7fbcc89d42f2cb32d4b473f4668e3045bbebe5a205c90e5987f4
x86-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.37/datree-cli_1.8.37_windows_386.zip
sha256: 2275d43c471c600d00ac83a429cd07a1681c647e3c57ecc2ce3e592c68419d8e
x86_64-linux:
url: https://github.com/datreeio/datree/releases/download/1.8.37/datree-cli_1.8.37_Linux_x86_64.zip
sha256: edac60f448bcda24d478e675e4f202a6ff7fb28e3c055b38b66b06dfbf5d8914
x86_64-macos:
url: https://github.com/datreeio/datree/releases/download/1.8.37/datree-cli_1.8.37_Darwin_x86_64.zip
sha256: 6c0749f7d54b0f54597079f53baa152cab7ea1cf26886b7a3242b84bec517500
x86_64-windows:
url: https://github.com/datreeio/datree/releases/download/1.8.37/datree-cli_1.8.37_windows_x86_64.zip