-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathreleases.json
2486 lines (2486 loc) · 124 KB
/
releases.json
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
{
"channel-version": "1.0",
"latest-release": "1.0.16",
"latest-release-date": "2019-05-14",
"latest-runtime": "1.0.16",
"latest-sdk": "1.1.14",
"release-type": "lts",
"support-phase": "eol",
"eol-date": "2019-06-27",
"lifecycle-policy": "https://dotnet.microsoft.com/platform/support/policy/",
"releases": [
{
"release-date": "2019-05-14",
"release-version": "1.0.16",
"security": true,
"cve-list": [
{
"cve-id": "CVE-2019-0820",
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0820"
},
{
"cve-id": "CVE-2019-0980",
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0980"
},
{
"cve-id": "CVE-2019-0981",
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0981"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.16/1.0.16.md",
"runtime": {
"version": "1.0.16",
"version-display": "1.0.16",
"vs-version": "15.0",
"files": [
{
"name": "dotnet-centos-x64.tar.gz",
"rid": "centos-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.16/dotnet-centos-x64.1.0.16.tar.gz",
"hash": "7B10D3194BBD1B390079D82DEC3117D0F0BFBA409257561CE0B10649C8153D70E0512B5A1982A459A2D0194B57056F139D5B839595EBAB7EDE873E69943151CE"
},
{
"name": "dotnet-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.16/dotnet-osx-x64.1.0.16.pkg",
"hash": "9A8122AA3841567F33F7B779006FE20BA5F55FAD9FE1783255EC478B924FA51461A7E9B4A75617B598889676A0A7A8AEF4693366C3194AC609BADA0206231CFC"
},
{
"name": "dotnet-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.16/dotnet-osx-x64.1.0.16.tar.gz",
"hash": "D20FA12F57049857F238BCA72A934F0BF016A8C09ABE4B7180F3FC832AFF5FB37FEE3D6556F279701AFCC2A81B855A5B52B1A1F2B9B711CEE3A3C5FC88B780A2"
},
{
"name": "dotnet-rhel-x64.tar.gz",
"rid": "rhel-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.16/dotnet-rhel-x64.1.0.16.tar.gz",
"hash": "5881EC7AA1C330DF97A30F9529E328AA1D1469D9CA100C57A8AF4CF921D19FA1067DF8D01DF1C6A194883E3F2C558A09D39AEF8553C5053CEB6BF7413BE72C0E"
},
{
"name": "dotnet-ubuntu-x64.tar.gz",
"rid": "ubuntu-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.16/dotnet-ubuntu-x64.1.0.16.tar.gz",
"hash": "366E08B5CBC6A3B4EE692244F23C3240A5FFF1B8CA9F560F2FAED0B0720DDD14002D29796D12FBD7E6059880DFA602DC268F97968206837A5A233C85C308F408"
},
{
"name": "dotnet-ubuntu.16.04-x64.tar.gz",
"rid": "ubuntu.16.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.16/dotnet-ubuntu.16.04-x64.1.0.16.tar.gz",
"hash": "35C2692009B44E66CBE45160303F42E6EF99C847A8509224E2FF3831562919C4FCAFEF812482CED119DBFBCA2714239D182F49349607EB15B0A0DAB2CDF8D0BE"
},
{
"name": "dotnet-win-x64.exe",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.16/dotnet-win-x64.1.0.16.exe",
"hash": "52ED2BEE70861566E1D088D477578E0A0E00AD891D18B0480266D8C07BA9CFEFCDE3971FE5921047F0A788410B5AC33AE98CD345459C2ABD1A02BB49CE8D0D78"
},
{
"name": "dotnet-win-x64.zip",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.16/dotnet-win-x64.1.0.16.zip",
"hash": "41A3B13835DA8847C68B5FC6F4A66048E21DD89C62CDF0570F3B71B2FDC823C6CC49AAF44F0877063AF536A5D9FFE3B8DCC68B355F28BBEB0989A9EE12D69A31"
},
{
"name": "dotnet-win-x86.exe",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.16/dotnet-win-x86.1.0.16.exe",
"hash": "BF3BDDAB42470A09C577BB2C789648F6CFF7EBC6A6D2CC9DA1C4C799A00CA58F9FCD2817AE46978191DC7CB399D313F9F82DC056AC3F0A5C344283B1E8023DDE"
},
{
"name": "dotnet-win-x86.zip",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.16/dotnet-win-x86.1.0.16.zip",
"hash": "79FE2F0FA166B4B53EAB4A108099A7EBC25A62546B5F698FA6BD5BAF126804B2E2E5FD4A6EBDE7C9589D489381C8F38CB7AEAE0E8835B4ADD58BCC2C07FD222E"
}
]
},
"sdk": {
"version": "1.1.14",
"version-display": "1.1.14",
"runtime-version": "1.0.16",
"vs-version": "15.0",
"vs-support": null,
"csharp-version": null,
"fsharp-version": null,
"vb-version": null,
"files": [
{
"name": "dotnet-dev-centos-x64.tar.gz",
"rid": "centos-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-centos-x64.1.1.14.tar.gz",
"hash": "B78EF84B282BC9CF1F66745943A3B9D45C4E0DA84259FEDE386A1991343B9BE7B1B5BD2A4FB1018C84AE1A2037F21A0BA0FDDF6E5AFFF9F02CC0AE179557FEEC"
},
{
"name": "dotnet-dev-debian.9-x64.tar.gz",
"rid": "debian.9-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-debian.9-x64.1.1.14.tar.gz",
"hash": "E36AA4B278B936E1E2989B5E556F4EC3AEF2CB1EBB5ABD1BD6011D511873FC3E72101D035CF4DAF1563C7A3C43C193863D38CBF24288D375DD143AB42AFAE524"
},
{
"name": "dotnet-dev-fedora.27-x64.tar.gz",
"rid": "fedora.27-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-fedora.27-x64.1.1.14.tar.gz",
"hash": "D97E6B90613739D35A7BF65E24131EACE18E128A39086BAC8B584A7A136666E7B438BE8B0DDD3E556E03493ACD7C30C767FB266D5D0DE6ADAB47DC3F72BA39EC"
},
{
"name": "dotnet-dev-fedora.28-x64.tar.gz",
"rid": "fedora.28-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-fedora.28-x64.1.1.14.tar.gz",
"hash": "A21D21DEC80E6466E5759D2F99F980819D080C14D0D3689A30120BC4B1A1B7742F501BCEBEAE4BBF37F3FB8ED106E7EC432C266E12151624F5308D8E01DEE7EB"
},
{
"name": "dotnet-dev-opensuse.42.3-x64.tar.gz",
"rid": "opensuse.42.3-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-opensuse.42.3-x64.1.1.14.tar.gz",
"hash": "AD14E5F34558E2D115D04A34DBC40993235B1AE2B12CD9920699E7A2C99E055E8C1034FC59C61F854F854E1E9E9FD8C34D607F83950D958E64DA7598B6E63304"
},
{
"name": "dotnet-dev-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-osx-x64.1.1.14.pkg",
"hash": "E480147757671032D0BDA34C749B98173818C90CA9DA5E2CA7078F5DD9F28194518C7E7209FB1144EF934E3B18BEAD31A3E16830FB70BE9DE4FB292F81842BE0"
},
{
"name": "dotnet-dev-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-osx-x64.1.1.14.tar.gz",
"hash": "460D8188CD4C5825904A0B3EAC5E326C115E43829D9912A118102D02708712E3F83820E9BEA9FFEA997FD7680A40DA570894729F0D3828723FF054043047878B"
},
{
"name": "dotnet-dev-rhel-x64.tar.gz",
"rid": "rhel-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-rhel-x64.1.1.14.tar.gz",
"hash": "9CC8A8020DCEFB5270CC1A69C340CAB70D7699489BCB87DE27A917A391C6EAFFB2DF27BE827E028EB8F980022643969E0839789F5C8DDF404F37E951264E95CD"
},
{
"name": "dotnet-dev-ubuntu-x64.tar.gz",
"rid": "ubuntu-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-ubuntu-x64.1.1.14.tar.gz",
"hash": "49A5C90AFE895C2929078E9D57E1ECDFB66629EA59555B44804AC4FE4130672EDDF776395FA6039BFB9D6B009CA625A5A695496C569EFBF441EBFC9B422F1CA4"
},
{
"name": "dotnet-dev-ubuntu.16.04-x64.tar.gz",
"rid": "ubuntu.16.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-ubuntu.16.04-x64.1.1.14.tar.gz",
"hash": "9B993DD05952C2DE38420293C4376C9A2D8430D5DEB37283344E3B0B807DA588C45AC48FC6AC3A0A8110DCD175CD5344C696644B94CABBCC55849E553887F170"
},
{
"name": "dotnet-dev-ubuntu.18.04-x64.tar.gz",
"rid": "ubuntu.18.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-ubuntu.18.04-x64.1.1.14.tar.gz",
"hash": "70A6B710366079C654CE0B82BEF93743D0271D4739D0B1547D110BA079A3F2E2FBDDBB6EC5345DF593F6B1E6485F1D5A6CFA3064BF312245B67507434E8D5D0B"
},
{
"name": "dotnet-dev-win-x64.exe",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-win-x64.1.1.14.exe",
"hash": "1E98A41FA12E511F8AE0A6AD7712203E985836F9C3A835F9508616EEBD8F87BE21667543010761F64B4B81A68B55B63A6449EB855BF1053C4821997EF801BFE4"
},
{
"name": "dotnet-dev-win-x64.zip",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-win-x64.1.1.14.zip",
"hash": "5578EA5C81C678D703309192423AF4824EBF896D781E0B6295327C9234ED1AD482EAE1C586EDE8924EA67C86B6E701E7F94FED51ED4C79E28E0FE5D43E8C4CE7"
},
{
"name": "dotnet-dev-win-x86.exe",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-win-x86.1.1.14.exe",
"hash": "65907FBA96322EF1091DA6C4FEC5541E1BF4709499B87EC4DA9489EDB9D1FFC463EC43D7551879D3FF0B2D98CE8959EC4C018CF06B91D465F9A5A10D2CEF5F0B"
},
{
"name": "dotnet-dev-win-x86.zip",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.14/dotnet-dev-win-x86.1.1.14.zip",
"hash": "BBD9506FF8361C82DB64955DFD21E206C02C46966F89D7232B25818E1961EE6FC3696F76945523CB243AB175D1CBF6EA82986CDBFD88D86A0D495396CD231449"
}
]
},
"aspnetcore-runtime": {
"version": "1.0.16",
"version-display": "1.0.16",
"version-aspnetcoremodule": null,
"vs-version": "15.0",
"files": [
{
"name": "DotNetCore_1.1.13-WindowsHosting.exe",
"rid": "win-x86_x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/aa5a90a5-4fc3-4198-8bcf-881c6d7e500d/c0d3855628d650f67ad1131c2e43fa9f/dotnetcore.1.0.16_1.1.13-windowshosting.exe",
"hash": "65D4C438D99419B5661D759536645EF7F81AB5F21820658DD13E201CB74F12044DC888C0AC5B90A5BB7D1C8A9AB6AD7D13A5DB210D6AC7D18C53BDB3D7C05E5E"
}
]
},
"symbols": {
"version": "1.0.16",
"files": [
{
"name": "core-setup-symbols.zip",
"rid": null,
"url": "https://download.visualstudio.microsoft.com/download/pr/de24857a-e53c-403b-891d-66ab513496e9/dc7a06c174966c71ab93c2595fa84890/core-setup-1.0.16-symbols.zip",
"hash": "0D61A32845715BCF13A9CF55794DC055E28B1D198A6ED55F1297B25BEEB44EE5C342E3C00A518DDBC3ED26A29A9B68CE9BABC0549CC2745E0BD61671B0C13EBB"
},
{
"name": "coreclr-symbols.zip",
"rid": null,
"url": "https://download.visualstudio.microsoft.com/download/pr/d01ea2b6-2b9a-42d8-9eb9-4659e6849d53/d832ab4eb94a6c2f596c44d4c1e78a6d/coreclr-1.0.16-symbols.zip",
"hash": "4B56FFCB3AB5933AB61BCE4FDF491EF432683CFAFF8EA58043D8CE14AC3A90B86F41E8CA9D2B3F1090D56BD649BBD8BAECD16DFCE47B9F9BBE88B36334C27400"
},
{
"name": "corefx-symbols.zip",
"rid": null,
"url": "https://download.visualstudio.microsoft.com/download/pr/79a3d837-f7dd-467f-a745-338ba0eaf5da/5e22bd1609af3e37f59ccd41d324260c/corefx-1.0.16-symbols.zip",
"hash": "429364AD1A93AAEE1A647DFA9CDE3352D8670361B7615FEB57137D55F656E7DDEACB9FF9B9988A0FBB8891052ABB2A5FB7BAA70D5E455BB2FBEF83CBAB5A2BC8"
}
]
}
},
{
"release-date": "2019-03-12",
"release-version": "1.0.15",
"security": true,
"cve-list": [
{
"cve-id": " CVE-2019-0757",
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0757"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.15/1.0.15.md",
"runtime": {
"version": "1.0.15",
"version-display": "1.0.15",
"vs-version": "15.0.22",
"files": [
{
"name": "dotnet-centos-x64.tar.gz",
"rid": "centos-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.15/dotnet-centos-x64.1.0.15.tar.gz",
"hash": "0A00EC0016DEF34B66183A55D6000A2639703A3493B34CFE230AA922278E648657E62C4FBC3851A43A9662A720A57E5BD43C2A19FE103B5A58083AE8FB4025CA"
},
{
"name": "dotnet-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.15/dotnet-osx-x64.1.0.15.pkg",
"hash": "4C8BDD17074EF3896482A2466F6471DBCF40BD268B6EACD2F22DD33C0C888FCEA217EAEA575B7DD3CEFE8B3550E034DAD9AA34928E2CB56BA4089E5244E472A9"
},
{
"name": "dotnet-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.15/dotnet-osx-x64.1.0.15.tar.gz",
"hash": "9D5B8E4D3AE7D51D38C99777548463677B5C7B1D0DD37405822EE0F868584FD0B8AA1E2FD1AC6AAF68238B123DFFB2FFDD4987995A4EABCBFEE743996A905485"
},
{
"name": "dotnet-rhel-x64.tar.gz",
"rid": "rhel-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.15/dotnet-rhel-x64.1.0.15.tar.gz",
"hash": "1165DB441F1A0F272246DFCE92147543C106454C274C91BEF5C961FB80488E14405AE6D23E925876316867001E821A17B38C298D35FD206537E4E1DB14CA0C37"
},
{
"name": "dotnet-ubuntu-x64.tar.gz",
"rid": "ubuntu-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.15/dotnet-ubuntu-x64.1.0.15.tar.gz",
"hash": "561F4B47EE509BA4E2A2483E33F0A765846DC5982062D81608B2D6756F99E8401157A276EDD610DA746183AF819D7321C1B1C1ECC8189284F542703EED82EB53"
},
{
"name": "dotnet-ubuntu.16.04-x64.tar.gz",
"rid": "ubuntu.16.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.15/dotnet-ubuntu.16.04-x64.1.0.15.tar.gz",
"hash": "0E0675C30FE0C4A5D9AB4291EB8508C6A9F887E1E21EEC35E3A78730B98F4B237E08A8319D464CA456241B514FF9D0CC30DB096178973910976F4DA6892B6E99"
},
{
"name": "dotnet-win-x64.exe",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.15/dotnet-win-x64.1.0.15.exe",
"hash": "214A9912B1BA267315714DA9DB2C88E622907E72CEE8557AA9388FE43E2744B96B31ECB98088100F029EF12C2AF3D867CECDE08CFB84F555AFAA84334DCDAFDC"
},
{
"name": "dotnet-win-x64.zip",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.15/dotnet-win-x64.1.0.15.zip",
"hash": "A523635F2DDCDE559ADB9096A28EF5723E8B61C83EFC28883D290CA0F188A8870EE2255CFFF8EEAD1A4E9DC9DEF0BC8A90100C3B8DA926E5AAEF7A8BA3BEF678"
},
{
"name": "dotnet-win-x86.exe",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.15/dotnet-win-x86.1.0.15.exe",
"hash": "4ABC485EF5623524036D1F42504804BA89A2C5E7A3CD2CCCB134B4956971F23BDAAD5C0C2156420E171B273195E290FAB300B3D89C43B2137EA121D0AF6619FA"
},
{
"name": "dotnet-win-x86.zip",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.15/dotnet-win-x86.1.0.15.zip",
"hash": "39E278BE3724463E76DB7919168B9A6E991EA8D3C6D37276E656625A1EE08658658B9C5447D274D53A04D8D48ADAE457CEF784738A3D57D6C2902DC9707332B4"
}
]
},
"sdk": {
"version": "1.1.13",
"version-display": "1.1.13",
"runtime-version": "1.0.15",
"vs-version": "15.0.22",
"csharp-version": null,
"fsharp-version": null,
"vb-version": null,
"files": [
{
"name": "dotnet-dev-centos-x64.tar.gz",
"rid": "centos-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-centos-x64.1.1.13.tar.gz",
"hash": "222B86C1A162EBF400042A36D6F7D72B934FD61170A8FB1D20016D5B9252CAD6FA0A97F5036060A5A5CDB6138F043239753904D2A8BB395AA94A4A9430EE45B0"
},
{
"name": "dotnet-dev-fedora.27-x64.tar.gz",
"rid": "fedora.27-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-fedora.27-x64.1.1.13.tar.gz",
"hash": "83A6E71F446C22B5A1238A1F45C51E95AC746079F5B933F2A12891470733D9DE9298D001186705902D3A6C13FA8AD6497E372CDCF8F7A927F693977E25E721CF"
},
{
"name": "dotnet-dev-fedora.28-x64.tar.gz",
"rid": "fedora.28-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-fedora.28-x64.1.1.13.tar.gz",
"hash": "083008FD1828CFFC32CE47F0D0310F06C8A0B2564B4C4C28CF01A2AC3BE98E874E33F5E337A2DFCD0460D991F7F99F7D5173DB612B909F0D3F364D2B69BC09BB"
},
{
"name": "dotnet-dev-opensuse.42.3-x64.tar.gz",
"rid": "opensuse.42.3-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-opensuse.42.3-x64.1.1.13.tar.gz",
"hash": "659095919C5013D8491CDEBC6704F5851EC4276E9C6FE90CB657F1C212546D8B93F25DC012660B0FC46C3C82C28CFD60C1FBA53E4F9A5DFA68663F66D820D1E8"
},
{
"name": "dotnet-dev-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-osx-x64.1.1.13.pkg",
"hash": "7C66AA51D95195D1095259EA66A568D1D318B44E850120A8F0883795790DBFF1ED8A621B3262019697FF55779F8897590034A968956885ABB5224A04C7561326"
},
{
"name": "dotnet-dev-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-osx-x64.1.1.13.tar.gz",
"hash": "5D0564E3B6E98C0FB394F6C0D1792B73F2E18C47ECFBB8E799DBBB18693695F763772A197447B41934627E909D4C3ABBEFA7C6DEB0E7BEE2BFE43BA6AFBB852A"
},
{
"name": "dotnet-dev-rhel-x64.tar.gz",
"rid": "rhel-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-rhel-x64.1.1.13.tar.gz",
"hash": "9FE0323C059621BB98678031B4E49AB439A7B220EAF31D13C1B67ADAD195A597A4283BF0A08AA60231AAC16C44A9A6918350969E427FBAEBAA5C31526FF218A2"
},
{
"name": "dotnet-dev-ubuntu-x64.tar.gz",
"rid": "ubuntu-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-ubuntu-x64.1.1.13.tar.gz",
"hash": "FD1B77682713298299CF7EADF400FA315AB0E3DEE297E94DB942377D44275681B1906CA3D87651E76D15B6ADDC176E9CAD8C023A627F366EFF06265D5BEE8A2D"
},
{
"name": "dotnet-dev-ubuntu.16.04-x64.tar.gz",
"rid": "ubuntu.16.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-ubuntu.16.04-x64.1.1.13.tar.gz",
"hash": "E7A44F4A328289ADFB171F3F3CE47914661669023D86865FC0BA41FF707644C5504CB378D4E5E758CF89134404A56359FB06DD5C966CBF0EBCE50FB41D950099"
},
{
"name": "dotnet-dev-ubuntu.18.04-x64.tar.gz",
"rid": "ubuntu.18.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-ubuntu.18.04-x64.1.1.13.tar.gz",
"hash": "DD6548EA7E6E390B264EA3DF17BB201CEF4CAC53A5E24B20823DC20B775CEE3EE642153B482FEBE8F8B33CDEF3F53B52AC19B58208E343D1F8912ADB00031A5D"
},
{
"name": "dotnet-dev-win-x64.exe",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-win-x64.1.1.13.exe",
"hash": "130A2DC3815696CD94542EBB4EBE2504EA9DBF6E03AF0416E8855B7C436396ED25E630C6FA8E2B688397A6203BF883E8AF5215E0200445C6D8346E6313397357"
},
{
"name": "dotnet-dev-win-x64.zip",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-win-x64.1.1.13.zip",
"hash": "360887A17C657C21F93D65FECAC6E19C6294C285C8199A29BAC1DE1C22AD42427B0B557FA19E175B2E5289F8C0AFC7A68A0771ADADBE9EDE6F941B093B056458"
},
{
"name": "dotnet-dev-win-x86.exe",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-win-x86.1.1.13.exe",
"hash": "163367B5B3289ABF63A99C549509FAA016C10DEDF2F3DB4FB6534879B4489BB8041BDDDD6CABE6FEF04C7D424A4F83149639C0602B4A0DC93008C5CE60B1D92B"
},
{
"name": "dotnet-dev-win-x86.zip",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.13/dotnet-dev-win-x86.1.1.13.zip",
"hash": "C51BE9D28965BD7BFC3125F35AB84BB7653807327A1ECBA522C9967ABC8CFE8126B7DCF60C59D8FA5951752411F2346EA9DF6D855ACF19D1ABD037C37E7A36C0"
}
]
},
"aspnetcore-runtime": {
"version": "1.0.15",
"version-display": "1.0.15",
"version-aspnetcoremodule": null,
"vs-version": "15.0",
"files": [
{
"name": "DotNetCore_1.1.12-WindowsHosting.exe",
"rid": "win-x86_x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/b3978c43-8056-41f9-b567-4c8a450c71d7/d8f94aab409f0ae6f9d2a6519fe14343/dotnetcore.1.0.15_1.1.12-windowshosting.exe",
"hash": "8E8353B4BA51F62AF7866D166E6A1BD1C3B99B0FE71EEC79B4F10CC3EFFC1B78EB0341F431CE4D5A9F0BD87DD9A94EAEFFC0BDD8D78C700473A7FC111C12013B"
}
]
},
"symbols": {
"version": "1.0.15",
"files": [
{
"name": "core-setup-symbols.zip",
"rid": null,
"url": "https://download.visualstudio.microsoft.com/download/pr/04de3bc1-f47a-44fd-a169-9fad4800a953/b450e3b38fbbbbd81baf90bc4cce1653/core-setup-1.0.15-symbols.zip",
"hash": "08FD2CEC569749EB468636EEE240A69B3FFB7D8FAA69683E79B0F7B42638E31E3D6BCF346A2968EB42D66DDE9617DD057F5D4CD3E7ABCDD5E3A205851CA7E60A"
},
{
"name": "coreclr-symbols.zip",
"rid": null,
"url": "https://download.visualstudio.microsoft.com/download/pr/b9586cd9-3158-4451-948c-1ab7388eacc4/5ce90f836e672be5afe27544c767ee48/coreclr-1.0.15-symbols.zip",
"hash": "CEDFABC6C8BBB23ABC843E9CA12F6DD25D43721BCF6BE28C91C87CCD0A4F5923100F2902E07242C89DD8999BAE7C347B5A3BDE428F1ECFEA0532AE8066FDD4E3"
},
{
"name": "corefx-symbols.zip",
"rid": null,
"url": "https://download.visualstudio.microsoft.com/download/pr/4e2a655f-b467-4c7b-8357-81efba877c99/3c9175fff6edf9d6e6c0334bcd42fee2/corefx-1.0.15-symbols.zip",
"hash": "D9CC1D25B6E35A020A9B95A0282C2829368CB7BF686ED978C76503014B1422A02C3CB11BC5A15C803011FA0395517AAAC93A2DDDF3C6552EC7CD6C3AFA6F9C99"
}
]
}
},
{
"release-date": "2019-02-12",
"release-version": "1.0.14",
"security": true,
"cve-list": [
{
"cve-id": " CVE-2019-0657",
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0657"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.14/1.0.14.md",
"runtime": {
"version": "1.0.14",
"version-display": "1.0.14",
"vs-version": "15.0",
"files": [
{
"name": "dotnet-centos-x64.tar.gz",
"rid": "centos-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-centos-x64.1.0.14.tar.gz",
"hash": "74D3CFE9087358648C542E9F3E187803AF49864BC976B372550417B7B491430C3E1FDF3373D1EF916E786473E75B3083462B6ED31BA0918B85EBEC7A848649D2"
},
{
"name": "dotnet-debian-x64.tar.gz",
"rid": "debian-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-debian-x64.1.0.14.tar.gz",
"hash": "697853421EA93FFCF497FDA649FDFC1C1BA82F657FDB84D5A17AE66E92CD5DABFF3C0B2B17FD411B829F8B4138418CD1E49836C0E07E2A9CAE7641AB86F60B4F"
},
{
"name": "dotnet-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-osx-x64.1.0.14.pkg",
"hash": "F1E36183D5BF963D32265D43440E7A0EA8DF5431F7C66AE1E05C1F08A0C50101C4AB8AC0B1038E8A92CB3F2BF375091F1BD6CA516099F3B61473A79A7F2437C5"
},
{
"name": "dotnet-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-osx-x64.1.0.14.tar.gz",
"hash": "9FA7DD826320C77A7B1CA115BCE11EAA82B41F2A7AF0148B0C882C4F239577F142A4C3BB6CA1153E48146BFF4A6921008F47F764E52DDB0CD0C9288A773E6952"
},
{
"name": "dotnet-rhel-x64.tar.gz",
"rid": "rhel-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-rhel-x64.1.0.14.tar.gz",
"hash": "9F4D43C665632873D92255C2845E3BFC70B5B27511004ED9741A47DA3DBD8BD650E155E5AF3C5380A6CCCC8A565698770F1075B5513CB1D58C2E66BEF87C900C"
},
{
"name": "dotnet-ubuntu-x64.tar.gz",
"rid": "ubuntu-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-ubuntu-x64.1.0.14.tar.gz",
"hash": "35BFF3E8C545F61B8C62E77853CEB8458AB70DFECE033DCE9AB7488887A6DD3A68F2DDE05A0EC9EBFE87C165AE2C630D3708D6DE068C2DD828F5014E8BD70EE9"
},
{
"name": "dotnet-ubuntu.16.04-x64.tar.gz",
"rid": "ubuntu.16.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-ubuntu.16.04-x64.1.0.14.tar.gz",
"hash": "0F237D495B500C230FF79F9E950AA5CFE88A00C8B0722F78A7BB710AC149EBA9D2B60214C2DCD7CF583AAEBE3104FFF06BB1CD60F8AD8F99BC2685EBA4108BCE"
},
{
"name": "dotnet-win-x64.exe",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-win-x64.1.0.14.exe",
"hash": "AC5E91500FE119213CA7998821B925C55232A8F435AF3A44B05C681BCF95D3E782CB1D79F931065E5FD0B3E82273353A13FFE2BEEFA6AE871DC7DF7CDD832063"
},
{
"name": "dotnet-win-x64.zip",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-win-x64.1.0.14.zip",
"hash": "481D89B3BC26205F18D8797950474D72AD9841E4D7E2595277500A32943F58A7E18D839B20294091B7F0F7C5824CB850514626D67647F94A25D173FB49759EE0"
},
{
"name": "dotnet-win-x86.exe",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-win-x86.1.0.14.exe",
"hash": "5F00CB1FE2D2CC04CAFADE6975819D9C4B572B7549DFBAE1745FDE86DA061656B3430FEB786DCEDE0E02600E963793A669D2847A004FD408F011CDE2A45315D4"
},
{
"name": "dotnet-win-x86.zip",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.14/dotnet-win-x86.1.0.14.zip",
"hash": "77F09E9D5232E4D36D5B2A416E2477A853AAF2A0236C45C3274BEA885189D1862D95E5F3F759E9738F03BBECE65D8C6B82D1DB889FE87FC30E544E29470112DA"
}
]
},
"sdk": {
"version": "1.1.12",
"version-display": "1.1.12",
"runtime-version": "1.0.14",
"vs-version": "15.0",
"csharp-version": null,
"fsharp-version": null,
"vb-version": "15.0",
"files": [
{
"name": "dotnet-dev-centos-x64.tar.gz",
"rid": "centos-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-centos-x64.1.1.12.tar.gz",
"hash": "3D390AF23218B8FA2B8487BDDF7C0BF8C2F89E110BA09B44B05A31EA269FEB2B56AA17686B3367134F85CFB453CBB9B053741CADB88AB65BFE0BA52A51DD596F"
},
{
"name": "dotnet-dev-debian-x64.tar.gz",
"rid": "debian-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-debian-x64.1.1.12.tar.gz",
"hash": "C74A4DE40F6B5CFFF5D30E4348C08CDCAAAF5D374804C20BC8572070F362755A030E79029A7B034AA795486220AA76BE6BA7F46BE4B4973ED54D62E9F01DCB41"
},
{
"name": "dotnet-dev-fedora.27-x64.tar.gz",
"rid": "fedora.27-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-fedora.27-x64.1.1.12.tar.gz",
"hash": "4372FBEB8382F3C28B743A9D663095CF794B1E6914825D4089C8862C2CC754E254BB509E46BF8AC8F73792D4282BBBC8FA187F53A2FFEC6C2B1BA2012AA3AAAC"
},
{
"name": "dotnet-dev-fedora.28-x64.tar.gz",
"rid": "fedora.28-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-fedora.28-x64.1.1.12.tar.gz",
"hash": "F2DF863F70B6B1D0A4450BED01C21378A37D0EC26569960801412E2C5B610C1E64F08C504E2574C1F8E295A83310F342CB818D1166555A3FAF655F83E89A8751"
},
{
"name": "dotnet-dev-opensuse.42.3-x64.tar.gz",
"rid": "opensuse.42.3-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-opensuse.42.3-x64.1.1.12.tar.gz",
"hash": "C63DB877056455AC8429B7BBE0B33C98883EFDFF874F883B4ECAC17BA5AAEF2602D008A44DA7DAA54F0E6B33E152B9F9C7A51CB6D082F7F6A7CFEB41652DA149"
},
{
"name": "dotnet-dev-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-osx-x64.1.1.12.pkg",
"hash": "49461341BDAED7BA64566D6A7293CA41E6443AF23DF47A0C5AEE529A79DEB1D0F8332B24E3AF01905AC2011DFC739B572CDFC2DA077FA8CE39A6CC9FAC3BBEA3"
},
{
"name": "dotnet-dev-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-osx-x64.1.1.12.tar.gz",
"hash": "108940FB4DF12334F0DC834D5D2D81C9871825A72462547073C0B87BB402E6DD30112B6CCF2BB6D4444B9FC58B848244C69542A923D8F5B0F9C1C00603B98D09"
},
{
"name": "dotnet-dev-rhel-x64.tar.gz",
"rid": "rhel-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-rhel-x64.1.1.12.tar.gz",
"hash": "7632F688B3C7AA807E4342881A1CF9425852CED6159EF9F7FF4B1FB284150D1EB4AC8E28439F557BEFA48E9DFCA8BB090204590F4C7F171D3AAB756EF2879918"
},
{
"name": "dotnet-dev-ubuntu-x64.tar.gz",
"rid": "ubuntu-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-ubuntu-x64.1.1.12.tar.gz",
"hash": "A8F9988E405B7C3479A278B0B61A0BBD9091089591642B986B323709DCB7F4ED94EF0F547CB5EEF6344715A534E1E2A94088655EE8C29AB4762D2541F652F58B"
},
{
"name": "dotnet-dev-ubuntu.16.04-x64.tar.gz",
"rid": "ubuntu.16.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-ubuntu.16.04-x64.1.1.12.tar.gz",
"hash": "43FF269A3E44B6E418FC691358AADC2E633E949767F10BE247EB0976AC1398E1698C81A667784EB37951ABB53FB02802651BE008CA7CBDBA9FDDF8731ED427F7"
},
{
"name": "dotnet-dev-ubuntu.18.04-x64.tar.gz",
"rid": "ubuntu.18.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-ubuntu.18.04-x64.1.1.12.tar.gz",
"hash": "2B83CA327A023E93B5D58B83369AF8BBCD088F5DBB9A75354E93E0E18DD3CB849C0DD90EC74BFFC07CFBA52F1A96BC3B9F154F4B7F472CAACB7E2F3E76F3F74F"
},
{
"name": "dotnet-dev-win-x64.exe",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-win-x64.1.1.12.exe",
"hash": "654DA8D87058D45EEDC0B44789181BD761A272F3FDFDC8F39E3E0A79946B4B5DC9B6A8F30ED4B127243C216EAA44E1C70174E2111405BA5135AEB19B986B1AF3"
},
{
"name": "dotnet-dev-win-x64.zip",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-win-x64.1.1.12.zip",
"hash": "C7C864655014A8E10F8C466C035E766E19E929EFB9F08E95DEA95AB8D995D012687DFE760681F945985CE6B1FB5AF4407E6A122990AE1595DAFF25EED30486AC"
},
{
"name": "dotnet-dev-win-x86.exe",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-win-x86.1.1.12.exe",
"hash": "C01B481AE6CC5D681429AA472DD37B2D2F799BF60F84922437806DCE4CDEDBB7DCA7C61063B08B0205DDA893CA1FF141CBD43A5BF753B15124ECC051F73260E0"
},
{
"name": "dotnet-dev-win-x86.zip",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.12/dotnet-dev-win-x86.1.1.12.zip",
"hash": "0C8504EF64ACB64F8F24D825228B66EA566D2C98F86E66D3EF60314C1FA34DD1DFF21B4780AA6648CF43C012A15340E64144146A47B583328F7B1F605A21A80D"
}
]
},
"aspnetcore-runtime": {
"version": "1.0.14",
"version-display": "1.0.14",
"version-aspnetcoremodule": null,
"vs-version": "15.0",
"files": [
{
"name": "DotNetCore-WindowsHosting.exe",
"rid": "win-x86_x64",
"url": "https://download.visualstudio.microsoft.com/download/pr/0cb4f123-a55d-4263-afe2-e54e5fdc1f0e/b9df261ef59d400872dd54107478f2b0/dotnetcore.1.0.14_1.1.11-windowshosting.exe",
"hash": "5E031624CB5B33200F07E2656FAC62DE8B2A398D2ED9B52B23EAEE663C84A9014E2F7DD32955CE044DF03271E6BA593B96EE4721F3F1C89291149A1A3B5774E8"
}
]
},
"symbols": {
"version": "1.0.14",
"files": [
{
"name": "core-setup-symbols.zip",
"rid": null,
"url": "https://download.visualstudio.microsoft.com/download/pr/2d88de27-d102-41d7-aa7f-fb69bb6a078a/b91dfcdac292fb8104e454ca4e378699/core-setup-1.0.14-symbols.zip",
"hash": "6DF845CFC44F40F6F8C219028C1780D798DB81C1C9A0ABBB16C209FFE7188A8A942C8E6E2074F1B10DAD5E7B5062C13A278ABCB9CBB060F81F5F15660DB25648"
},
{
"name": "coreclr-symbols.zip",
"rid": null,
"url": "https://download.visualstudio.microsoft.com/download/pr/00d621df-0419-492c-bdf1-93942c76e756/d67f977b90c4ae4963f58b2feeee77c6/coreclr-1.0.14-symbols.zip",
"hash": "A3BD4419F895C196378855BB599349475C13B2C7B01E88810F9192AA3F6F52A8277CBDB1D42AD1E6ED36D2EC357E76CED9D97982B508BEA9DA08B449EB8F3CE4"
},
{
"name": "corefx-symbols.zip",
"rid": null,
"url": "https://download.visualstudio.microsoft.com/download/pr/0f67d331-cfa9-4422-8a2a-a0ae18a521e4/ae9bdb6e9a0c8248d8aa2cae2269972c/corefx-1.0.14-symbols.zip",
"hash": "BE31CA7D41F49541A2BD812BBA689E77B2B4697B2AF5CD07583D9E970E3B6B417E01B8F87BAC1CF805E75D303A5A90DCC0082D988C2E06F9928D1C0D7A066894"
}
]
}
},
{
"release-date": "2018-10-09",
"release-version": "1.0.13",
"security": true,
"cve-list": [
{
"cve-id": "CVE-2018-8292",
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8292"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.13.md",
"runtime": {
"version": "1.0.13",
"version-display": null,
"vs-version": null,
"files": [
{
"name": "dotnet-win-x86.zip",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-win-x86.1.0.13.zip",
"hash": "8def96db00781c198a15302ac7bb3d81808f79c0656f24ecb40408989735aee1579e9761a4969011f554faa42180d85fd609b132e8a7bf9293bc2b5c833988d3"
},
{
"name": "dotnet-win-x86.exe",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-win-x86.1.0.13.exe",
"hash": "0b9b3819f42605d6a4d8f6125456b8c14a861af242d4fce93675731adff0df7487875247558b6aa12df89f3907b8855434ee964976f70766df86bf1eeff9e4d3"
},
{
"name": "dotnet-win-x64.zip",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-win-x64.1.0.13.zip",
"hash": "2959a7fd9e5a3d043721eade277e3d7172782776e7988323d1b3e072cbb2283f3b0c75c2971d13c5139e3b90d0c5de06aa1e3f48aeb325f3eabab8568d14d5dc"
},
{
"name": "dotnet-win-x64.exe",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-win-x64.1.0.13.exe",
"hash": "ec36957a4c2b9b5afad5a47c8d8e2c49091515f40e79f74b9dd63e9933943256f4d4af773e00e6d69a6dcd5a9512941867b0bb93c854595237f7fd9f58e29a31"
},
{
"name": "dotnet-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-osx-x64.1.0.13.tar.gz",
"hash": "aa3d13c821ae29488cd528cdeec8e4758c1213c9cf412305b3d78c2a884aa25f1bf831f99a431f68a5b6127845f6195c9379bc2198bbabbfe053ff2c011ca4f0"
},
{
"name": "dotnet-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-osx-x64.1.0.13.pkg",
"hash": "f8a44b733740b6fd041f3fbfd96e47b9aa164c0a5b6cf3e02d9bdbaa1624669a7f4a7a0c50aab32cb6c3c001c368e968b7df0f68977e7766f47a5cb5f2ffcbf0"
},
{
"name": "dotnet-centos-x64.tar.gz",
"rid": "centos-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-centos-x64.1.0.13.tar.gz",
"hash": "3a04df57beda49ab7da450a59658f43d7289edcb4810c041e9b1d5f366b7fe7b499a259452d59b42180cde005ad4caa7e039aaa997bf098cbaca2035288a91f8"
},
{
"name": "dotnet-debian-x64.tar.gz",
"rid": "debian-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-debian-x64.1.0.13.tar.gz",
"hash": "2e1b823f9e4af9d3da1741ab21cc9f5eaf5b9267690d63528a1fde53a2d841490dc8c83ade0ac365acb3383b1ef435d2c7213d0e320a461d77596fb9858722b5"
},
{
"name": "dotnet-ubuntu-x64.tar.gz",
"rid": "ubuntu-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-ubuntu-x64.1.0.13.tar.gz",
"hash": "e4df72a4e8a3d78a12cae60e1cec37c52f18640276e720bb6da83b44931f172066c0b9716cb2871b3d1a29537b635e9348b8c2f0601a38f532f071626af2d01b"
},
{
"name": "dotnet-ubuntu.16.04-x64.tar.gz",
"rid": "ubuntu.16.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-ubuntu.16.04-x64.1.0.13.tar.gz",
"hash": "28415fb271d62dc5a889884149e9a03ed845644b1b7f4fcaf264d3bc53b790821dbff861de3df02bd1160a7969a8321b62816ddc4987efd3e014b1012e545199"
},
{
"name": "dotnet-rhel-x64.tar.gz",
"rid": "rhel-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.13/dotnet-rhel-x64.1.0.13.tar.gz",
"hash": "1e39bfc22254ec7660dae50fdcf0cd1eaf9be58797732107b5ce4fa3c035a8fa66d55f3acf0af27193176480bd94829c152621eccbb906672a6fd1397376b269"
},
{
"name": "core-setup-symbols.zip",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/8b10e003-60e0-43de-80c8-1a1c93b0c9f8/fd1f4c730b2b2a808521686a470cd17b/core-setup-1.0.13-symbols.zip",
"hash": "aadb261a541b0994079c571ae776819197fb18a9518d61fc0b891cdc7e40e0592a2e3a72efc4944a2f70b4cfd7e281852a53dc4ea254346c2cee29c17f3ec25f"
},
{
"name": "corefx-symbols.zip",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/c8437415-67ab-4a52-b9e2-cb2d873818cb/756c1aec8815d1d23852ee91a769739e/corefx-1.0.13-symbols.zip",
"hash": "5227344287216e0c86e2b8d18a6fabef049abc831e52664a653ea5a55e6ab9717d53c43f6e400b869b8a6557356937d85f443c09adb7ab371a2789f3242ca58e"
},
{
"name": "coreclr-symbols.zip",
"rid": "",
"url": "https://download.visualstudio.microsoft.com/download/pr/94463197-e5ce-4780-a3e3-824b593984a4/6c8ccf14c6d7c48f2abe97f35e3349a4/coreclr-1.0.13-symbols.zip",
"hash": "30eb24a28de0a5bf28983570eb52568728ec432405a3b73ca4e7f968068336f81ec24d717587c6ecc4a2195b949f4e212d5a84913388beb55c28ccf59260042d"
}
]
},
"sdk": {
"version": "1.1.11",
"version-display": "1.1.11",
"runtime-version": "1.0.13",
"vs-version": null,
"csharp-version": null,
"fsharp-version": null,
"vb-version": null,
"files": [
{
"name": "dotnet-dev-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-osx-x64.1.1.11.tar.gz",
"hash": "b827b192398af01bf917a5fc0255616a82f04a95dac8154e681398e7e3ef549d701376bb1c9018dea37269e0406f065fb8e2958e652dfabaf86d5e0bb68b0840"
},
{
"name": "dotnet-dev-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-osx-x64.1.1.11.pkg",
"hash": "1b8ba4f003fda6725c6c27787f6b750064fa7522d0adb0bbbb1717286b2083550da68a242b840dc9505ca68775785935b0428933eb8b0e89f31e698e41618989"
},
{
"name": "dotnet-dev-win-x86.zip",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-win-x86.1.1.11.zip",
"hash": "29a97f3e5e2e8465e4b0c7628a9a02baa0148bfe1a960f58dcdb08b3ad65702cf5367c3f776f47b4df5ce2487955831ed5ab330d4eeabea28ab4f25edb051be8"
},
{
"name": "dotnet-dev-win-x86.exe",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-win-x86.1.1.11.exe",
"hash": "88778c12aa4e3bdb696da31d5ae1a03441fc6d0d1860bada75bc604692e3f8c240941a10b8a99eaace2b5a6957bcdafa158f2cfb533d122bffcb2c55b25f351d"
},
{
"name": "dotnet-dev-win-x64.zip",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-win-x64.1.1.11.zip",
"hash": "cbf96efd9f6119cad96041e3c55099b98f82252a60a93bbba5f93289bf600c5146402046c3ac79c6e927291e40cb5222171c3ee8cfbc086e635968dfed6e269e"
},
{
"name": "dotnet-dev-win-x64.exe",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-win-x64.1.1.11.exe",
"hash": "6e15fa8c9d5b10cc3edb353c5e1ece01a29f7d00ff853cc12f84e33a776df8062c07febbd9659ca46c2adeb005036c231fd7a7592591b6e28c643bdc45084778"
},
{
"name": "dotnet-dev-centos-x64.tar.gz",
"rid": "centos-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-centos-x64.1.1.11.tar.gz",
"hash": "8665733eba5af02f8af5420bc858ffc4ef73281fb518c0736458f9f1f666f65e57c6a8e2efac5d3e6aca56ac8942a25d1d805ce392fd6f751fb3f0ce821b20c4"
},
{
"name": "dotnet-dev-debian-x64.tar.gz",
"rid": "debian-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-debian-x64.1.1.11.tar.gz",
"hash": "14f48469ebbc171d111369ea0dbe88ee9aeb74193aabd6e123c97e54ad81fd6352e86c446f8fe68e2db93793de86fbf89a9c682dd7d1d226169e788cd1f3f6a2"
},
{
"name": "dotnet-dev-debian.9-x64.tar.gz",
"rid": "debian.9-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-debian.9-x64.1.1.11.tar.gz",
"hash": "23e1d3d1863ae8f6bfd450ff238ad7d5929722df6a0492597089c992aa1b223af294386718a711040a4e5f77bd3af97e7924d344e1535d4bc36c640dc6b73869"
},
{
"name": "dotnet-dev-fedora.27-x64.tar.gz",
"rid": "fedora.27-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-fedora.27-x64.1.1.11.tar.gz",
"hash": "ed2cad6ef471dd787086a249b932569840cabc7d48aa6920ce2d85e2d364a880f1d4c63e1014016a0fd19f8e8f1f93526fa2d710a587fcb27616bfd27844dc57"
},
{
"name": "dotnet-dev-fedora.28-x64.tar.gz",
"rid": "fedora.28-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-fedora.28-x64.1.1.11.tar.gz",
"hash": "50ba2fa6a319de00857f847c6dbaf49bb4b93a0e7f73824ff47bdabc6862b45f0349c9c95b11dd2caec6fd4ef5ba3e89ad1c5a44e6a66cf600bc906327805a7f"
},
{
"name": "dotnet-dev-opensuse.42.3-x64.tar.gz",
"rid": "opensuse.42.3-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-opensuse.42.3-x64.1.1.11.tar.gz",
"hash": "13163a1573c1f95ed45a5b445488080cd619693ac7ce8705e13ccfb605ae89d959a82bf42d633a6e65d5242eb508840e9f521bcfb6f30623a6575bfa701e6532"
},
{
"name": "dotnet-dev-ubuntu-x64.tar.gz",
"rid": "ubuntu-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-ubuntu-x64.1.1.11.tar.gz",
"hash": "a7743d00fad50ec1c9f27ac5b09d1b9d787ac9d4d600179d1d4a5ebb636438dda45ecc85b1a246fd2eed6455dfdcf764165428af38f83a524b4ea0aee82a3366"
},
{
"name": "dotnet-dev-ubuntu.16.04-x64.tar.gz",
"rid": "ubuntu.16.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-ubuntu.16.04-x64.1.1.11.tar.gz",
"hash": "60906a50e01420c0603127041b5fc628cb064169ed03b6c9727857695021d2713d92cdec322d97340d9e525a1f2f3c727b7125ca07c0d04057196e0e7cf791b2"
},
{
"name": "dotnet-dev-ubuntu.18.04-x64.tar.gz",
"rid": "ubuntu.18.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-ubuntu.18.04-x64.1.1.11.tar.gz",
"hash": "d96adb429e00052e331215438d0f1f244c830f633f9bd0dcf817f02a2211028ee4ac02e585be440863bdc6afc54fabe3539188c6f5f7086d8a0ced624fb05697"
},
{
"name": "dotnet-dev-rhel-x64.tar.gz",
"rid": "rhel-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.11/dotnet-dev-rhel-x64.1.1.11.tar.gz",
"hash": "c79e40710dbf5e0f22d54ebeef4e08ce459a83dd58a9d7a2e56ebb480c780e912d4c8ee643df7f7717bb8544955bb154ca9aa88ec610eccd0d2f712b74668be3"
}
]
},
"aspnetcore-runtime": null,
"symbols": null
},
{
"release-date": "2018-07-10",
"release-version": "1.0.12",
"security": true,
"cve-list": [
{
"cve-id": "CVE-2018-8171",
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8171"
},
{
"cve-id": "CVE-2018-8356",
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8356"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.12.md",
"runtime": {
"version": "1.0.12",
"version-display": null,
"vs-version": null,
"files": [
{
"name": "dotnet-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.12/dotnet-osx-x64.1.0.12.tar.gz",
"hash": "6d69022219c117f2db307884daf225fc01c09b9e8f0b2a4f72c10a4ee6fedf54060643f0221857279687a0c417507a53b142b64f691d425cd94576852513be91"
},
{
"name": "dotnet-win-x86.zip",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.12/dotnet-win-x86.1.0.12.zip",
"hash": "26debb4b4a75be877e55ebde22badec0e6acd8aa83800056132c83d3492bf92f0e5fcac98e947a685a744aef1b3ef843f4109404b97061b532cc411c19dd2f3d"
},
{
"name": "dotnet-win-x86.exe",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.12/dotnet-win-x86.1.0.12.exe",
"hash": "b2a55df7716677c5b9ac33b33686b07617fa9a97f0629b23e9869cb2db4ff9004b472aff09857921290853d56672e4c6da4eda7c4dcfe55c734ba5de3fe22ab3"
},
{
"name": "dotnet-win-x64.zip",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.12/dotnet-win-x64.1.0.12.zip",
"hash": "43c22c1273c1055cda580e7bcec4274c8f40a40bacab07107899679afb12ddb6cdbaa544d778c65c593e3e65395d50c42a2f1d71dc10a60436437c709a126ef3"
},
{
"name": "dotnet-win-x64.exe",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.12/dotnet-win-x64.1.0.12.exe",
"hash": "0eedfca647ef551b19243eaec5417393562f5b1c9bbc920d91db8cc0a192543c59237980f0b2c5d388ffc89c4cb121b2acd75c1e21c2bdf9daafeeb9780b28f4"
},
{
"name": "dotnet-centos-x64.tar.gz",
"rid": "centos-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.12/dotnet-centos-x64.1.0.12.tar.gz",
"hash": "3758c4a1b3e853864ef955ad9cee5f852e484f896d7a05c3994bb6f9b2b487c248577c3fd30c35eed674de649c1c8d0de709e432b0b2a7ccda9b81ed1f1c4f22"
},
{
"name": "dotnet-debian-x64.tar.gz",
"rid": "debian-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.12/dotnet-debian-x64.1.0.12.tar.gz",
"hash": "a69bfa909454b5de50cb177f00528a7f05641f823e1aa30569fc9357d50cc3cc22a2dae6ca806fb8300345765cb4873b9884fd42807d922a4a2476f1b8cc72ea"
},
{
"name": "dotnet-ubuntu-x64.tar.gz",
"rid": "ubuntu-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.12/dotnet-ubuntu-x64.1.0.12.tar.gz",
"hash": "338c1dbd127205d6e10dccf51ca4ac00685a3062aaf2297bac6b78771a0dad37bd7da0d9991e14c09ca90ff6066c00584d90848eeaf816ab6cb5a871956410e9"
},
{
"name": "dotnet-ubuntu.16.04-x64.tar.gz",
"rid": "ubuntu.16.04-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/1.0.12/dotnet-ubuntu.16.04-x64.1.0.12.tar.gz",
"hash": "e0122f97adfde7a30ce1c251e7ec62700e7e02083ac94b445d5708b924bec99304f280068c345f9352f0ed20ceb83f77fee05553264e2768d669dc63c6872b76"
}
]
},
"sdk": {
"version": "1.1.10",
"version-display": "1.1.10",
"runtime-version": "1.0.12",
"vs-version": null,
"csharp-version": null,
"fsharp-version": null,
"vb-version": null,
"files": [
{
"name": "dotnet-dev-osx-x64.tar.gz",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.10/dotnet-dev-osx-x64.1.1.10.tar.gz",
"hash": "bf3bf5f22c70c944a9459565626ef935cd15465a189ef9dd65d18560f7e71e44e2ac93552999774eb9a6672530a99baa30347bf3ea1cc7f4ac4d583e1f0e60b9"
},
{
"name": "dotnet-dev-osx-x64.pkg",
"rid": "osx-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.10/dotnet-dev-osx-x64.1.1.10.pkg",
"hash": "990d54a53702f5314ad06aab3fa7b6ad0944f2d8863d5ba99f9e86a660fc542378e0fa2cf9aebbd44bdee71bdd37d287409ded40f98d4a43f77e613a3d84fee3"
},
{
"name": "dotnet-dev-win-x86.zip",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.10/dotnet-dev-win-x86.1.1.10.zip",
"hash": "f46778149a785c0ffed4611966c07668061bd07dcf0c4ebb42e68461aa9dc5a8fe5bcd0d99f1ebb279a7f8269d84dd7f34e34b6c953d63ce1acbc85c4c88b743"
},
{
"name": "dotnet-dev-win-x86.exe",
"rid": "win-x86",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.10/dotnet-dev-win-x86.1.1.10.exe",
"hash": "871baf6e9e7ca12a222ad0c9eb6060b933448c58f289defe1723934c66c07b2da6bd6f3495878afb280f188e64fd6200ed18b59ea5659e62be538956cb502a5a"
},
{
"name": "dotnet-dev-win-x64.zip",
"rid": "win-x64",
"url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/1.1.10/dotnet-dev-win-x64.1.1.10.zip",
"hash": "d0b01871251265b9a07c24e94e2e33f4a5d96ec6165ec0f60b032ce5c35895985e37cc01f73134fc8802a442eeb243b1d1403ebe898d6455907095e5b6b854c1"
},
{
"name": "dotnet-dev-win-x64.exe",