-
Notifications
You must be signed in to change notification settings - Fork 90
/
CHANGELOG
3223 lines (2193 loc) · 93.8 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
v2.4.34 Nov 07, 2024
=====================
* Upgrade Sealights version to 1.5.0
* Add dotnet-sdk 6.0.427, remove dotnet-sdk 6.0.425
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 8.0.403, remove dotnet-sdk 8.0.401
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 8.0.10, remove dotnet-aspnetcore 8.0.8
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.35, remove dotnet-aspnetcore 6.0.33
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.35, remove dotnet-runtime 6.0.33
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 8.0.10, remove dotnet-runtime 8.0.8
for stack(s) cflinuxfs4, cflinuxfs3
v2.4.33 Sep 18, 2024
=====================
* tests: avoid using chrome-driver
chrome-driver was removed from the CI image in
https://github.com/cloudfoundry/buildpacks-ci/pull/413.
v2.4.32 Aug 23, 2024
=====================
* Update dotnet-sdk to 6.0.425, remove dotnet-sdk 6.0.424
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.33, remove dotnet-aspnetcore 6.0.32
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 8.0.8, remove dotnet-aspnetcore 8.0.7
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 8.0.8, remove dotnet-runtime 8.0.7
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.33, remove dotnet-runtime 6.0.32
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 8.0.401, remove dotnet-sdk 8.0.303
for stack(s) cflinuxfs4, cflinuxfs3
* Add node 20.16.0, remove node 20.15.1
for stack(s) cflinuxfs3, cflinuxfs4
v2.4.31 Jul 18, 2024
=====================
* Add node 20.15.1, remove node 20.15.0
for stack(s) cflinuxfs3, cflinuxfs4
* Add dotnet-sdk 6.0.424, remove dotnet-sdk 6.0.423
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.32, remove dotnet-aspnetcore 6.0.31
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.32, remove dotnet-runtime 6.0.31
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 8.0.7, remove dotnet-runtime 8.0.6
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 8.0.303, remove dotnet-sdk 8.0.302
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 8.0.7, remove dotnet-aspnetcore 8.0.6
for stack(s) cflinuxfs4, cflinuxfs3
v2.4.30 Jun 26, 2024
=====================
* Add dotnet-sdk 8.0.302, remove dotnet-sdk 8.0.301
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/187774625)
* Add node 20.15.0, remove node 20.14.0
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/187832044)
v2.4.29 May 30, 2024
=====================
* Remove .NET 7
* Rebuild node 20.14.0 (#994)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 8.0.301, remove dotnet-sdk 8.0.300
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.31, remove dotnet-runtime 6.0.30
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 8.0.6, remove dotnet-aspnetcore 8.0.5
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.423, remove dotnet-sdk 6.0.422
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.31, remove dotnet-aspnetcore 6.0.30
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 8.0.6, remove dotnet-runtime 8.0.5
for stack(s) cflinuxfs4, cflinuxfs3
* Add node 20.14.0, remove node 20.13.1
for stack(s) cflinuxfs4, cflinuxfs3
* Add node 20.13.1, remove node 20.12.2 (#984)
for stack(s) cflinuxfs4, cflinuxfs3
v2.4.28 May 17, 2024
=====================
* Add dotnet-runtime 6.0.30, remove dotnet-runtime 6.0.29
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 8.0.5, remove dotnet-runtime 8.0.4
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.422, remove dotnet-sdk 6.0.421
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 8.0.300, remove dotnet-sdk 8.0.204
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 7.0.409, remove dotnet-sdk 7.0.408
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.30, remove dotnet-aspnetcore 6.0.29
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.19, remove dotnet-aspnetcore 7.0.18
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.19, remove dotnet-runtime 7.0.18
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 8.0.5, remove dotnet-aspnetcore 8.0.4 (#972)
for stack(s) cflinuxfs4, cflinuxfs3
v2.4.27 Apr 12, 2024
=====================
* Update default .NET Core version in buildpack from 6.0.x to 8.0.x
* Add dotnet-runtime 6.0.29, remove dotnet-runtime 6.0.28 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.18, remove dotnet-runtime 7.0.17 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 8.0.4, remove dotnet-runtime 8.0.3 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.421, remove dotnet-sdk 6.0.420 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 7.0.408, remove dotnet-sdk 7.0.407 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 8.0.204, remove dotnet-sdk 8.0.203 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.29, remove dotnet-aspnetcore 6.0.28 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.18, remove dotnet-aspnetcore 7.0.17 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 8.0.4, remove dotnet-aspnetcore 8.0.3 for stack(s) cflinuxfs4, cflinuxfs3
* Add node 20.12.2, remove node 20.11.1 for stack(s) cflinuxfs3, cflinuxfs4
v2.4.26 Mar 15, 2024
=====================
* Add dotnet-sdk 8.0.203, remove dotnet-sdk 8.0.202 (#947)
* Add dotnet-aspnetcore 6.0.28, remove dotnet-aspnetcore 6.0.27
* Add dotnet-runtime 6.0.28, remove dotnet-runtime 6.0.27 (#940)
* Add dotnet-sdk 6.0.420, remove dotnet-sdk 6.0.419 (#939)
* Add dotnet-aspnetcore 7.0.17, remove dotnet-aspnetcore 7.0.16 (#942)
* Add dotnet-runtime 7.0.17, remove dotnet-runtime 7.0.16 (#945)
* Add dotnet-sdk 7.0.407, remove dotnet-sdk 7.0.406 (#941)
* Add dotnet-aspnetcore 8.0.3, remove dotnet-aspnetcore 8.0.2 (#937)
* Add dotnet-runtime 8.0.3, remove dotnet-runtime 8.0.2 (#943)
* Add dotnet-sdk 8.0.202, remove dotnet-sdk 8.0.201 (#938)
v2.4.25 Mar 04, 2024
=====================
* Add libunwind 1.8.1, remove libunwind 1.8.0 for stack(s) cflinuxfs3, cflinuxfs4 (#925)
v2.4.24 Feb 16, 2024
=====================
* Add node 20.11.1, remove node 20.11.0
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 8.0.201, remove dotnet-sdk 8.0.200
for stack(s) cflinuxfs4, cflinuxfs3
* Add support for BP_OPENSSL_ACTIVATE_LEGACY_PROVIDER (#921)
Enables the new environment variable will load and active the legacy openssl provider
* Remove `use_legacy_openssl` buildpack.yml setting in favour of the environment variable
v2.4.23 Feb 14, 2024
=====================
* Add dotnet-aspnetcore 6.0.27, remove dotnet-aspnetcore 6.0.26 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.27, remove dotnet-runtime 6.0.26 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.419, remove dotnet-sdk 6.0.418 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.16, remove dotnet-aspnetcore 7.0.15 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.16, remove dotnet-runtime 7.0.15 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 7.0.406, remove dotnet-sdk 7.0.405 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 8.0.2, remove dotnet-aspnetcore 8.0.1 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 8.0.2, remove dotnet-runtime 8.0.1 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 8.0.200, remove dotnet-sdk 8.0.101 for stack(s) cflinuxfs4, cflinuxfs3
v2.4.22 Feb 06, 2024
=====================
* Add libunwind 1.8.0, remove libunwind 1.7.2 for stack(s) cflinuxfs3, cflinuxfs4
* Use a procfile
* Load legacy openssl provider when buildpack.yml config is set (only for cflinuxfs4)
v2.4.21 Jan 22, 2024
=====================
* Add dotnet-aspnetcore 6.0.26, remove dotnet-aspnetcore 6.0.25 (#896)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/186813026)
* Add dotnet-runtime 6.0.26, remove dotnet-runtime 6.0.25 (#893)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/186812683)
* Add dotnet-sdk 6.0.418, remove dotnet-sdk 6.0.417 (#901)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/186821238)
* Add dotnet-aspnetcore 7.0.15, remove dotnet-aspnetcore 7.0.14 (#894)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/186812737)
* Add dotnet-runtime 7.0.15, remove dotnet-runtime 7.0.14 (#895)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/186812950)
* Add dotnet-sdk 7.0.405, remove dotnet-sdk 7.0.404 (#900)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/186813133)
* Add dotnet-aspnetcore 8.0.1, remove dotnet-aspnetcore 8.0.0 (#899)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/186813130)
* Add dotnet-runtime 8.0.1, remove dotnet-runtime 8.0.0 (#897)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/186813078)
* Add dotnet-sdk 8.0.101, remove dotnet-sdk 8.0.100 (#898)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/186813081)
* Add node 20.11.0, remove node 20.10.0 (#902)
for stack(s) cflinuxfs3, cflinuxfs4
(https://www.pivotaltracker.com/story/show/186817667)
v2.4.20 Jan 09, 2024
=====================
* Bump github.com/Sealights/libbuildpack-sealights from 1.3.0 to 1.4.0 (#890)
v2.4.19 Dec 13, 2023
=====================
* Update gomod deps
* Update libbuildpack
v2.4.18 Nov 29, 2023
=====================
* Add node 20.10.0, remove node 18.18.0 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 8.0.100 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 8.0.0 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 8.0.0 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 7.0.404, remove dotnet-sdk 7.0.401 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.14, remove dotnet-runtime 7.0.11 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.14, remove dotnet-aspnetcore 7.0.11 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.417, remove dotnet-sdk 6.0.414 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.25, remove dotnet-runtime 6.0.22 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.25, remove dotnet-aspnetcore 6.0.22 for stack(s) cflinuxfs4, cflinuxfs3
v2.4.17 Oct 09, 2023
=====================
* Add dotnet-aspnetcore 6.0.22, remove dotnet-aspnetcore 6.0.21 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.11, remove dotnet-aspnetcore 7.0.10 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.22, remove dotnet-runtime 6.0.21 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.11, remove dotnet-runtime 7.0.10 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.414, remove dotnet-sdk 6.0.413 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 7.0.401, remove dotnet-sdk 7.0.400 for stack(s) cflinuxfs4, cflinuxfs3
* Add node 18.18.0, remove node 18.17.1 for stack(s) cflinuxfs3, cflinuxfs4
v2.4.16 Aug 17, 2023
=====================
* Add dotnet-runtime 6.0.21, remove dotnet-runtime 6.0.20 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.413, remove dotnet-sdk 6.0.412 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.21, remove dotnet-aspnetcore 6.0.20 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.10, remove dotnet-runtime 7.0.9 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 7.0.400, remove dotnet-sdk 7.0.306 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.10, remove dotnet-aspnetcore 7.0.9 for stack(s) cflinuxfs4, cflinuxfs3
* Add libunwind 1.7.2, remove libunwind 1.7.0 for stack(s) cflinuxfs3, cflinuxfs4
* Add node 18.17.1, remove node 18.17.0 for stack(s) cflinuxfs4, cflinuxfs3
* Bump github.com/Sealights/libbuildpack-sealights from 1.2.0 to 1.3.0
v2.4.15 Jul 19, 2023
=====================
* Add dotnet-aspnetcore 6.0.20, remove dotnet-aspnetcore 6.0.19 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.9, remove dotnet-aspnetcore 7.0.8 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.20, remove dotnet-runtime 6.0.19 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.9, remove dotnet-runtime 7.0.8 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.412, remove dotnet-sdk 6.0.411 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 7.0.306, remove dotnet-sdk 7.0.305 for stack(s) cflinuxfs4, cflinuxfs3
* Add node 18.17.0, remove node 18.16.1 for stack(s) cflinuxfs4, cflinuxfs3
v2.4.14 Jun 23, 2023
=====================
* Add dotnet-aspnetcore 7.0.8, remove dotnet-aspnetcore 7.0.5 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 7.0.305, remove dotnet-sdk 7.0.302 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.8, remove dotnet-runtime 7.0.5 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.19, remove dotnet-aspnetcore 6.0.16 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.411, remove dotnet-sdk 6.0.408 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.19, remove dotnet-runtime 6.0.16 for stack(s) cflinuxfs4, cflinuxfs3
* Add node 18.16.1, remove node 18.16.0 for stack(s) cflinuxfs3, cflinuxfs4
v2.4.13 Jun 07, 2023
=====================
* Add libunwind 1.7.0, remove libunwind 1.6.2
for stack(s) cflinuxfs3, cflinuxfs4
* Add dotnet-sdk 7.0.302, remove dotnet-sdk 7.0.203 (#781)
for stack(s) cflinuxfs4, cflinuxfs3
v2.4.12 May 04, 2023
=====================
* Add node 18.16.0, remove node 18.15.0 (#777)
for stack(s) cflinuxfs3, cflinuxfs4
* Does not override APSNETCORE_URLS if set by user
v2.4.11 Apr 19, 2023
=====================
* Add dotnet-sdk 7.0.203, remove dotnet-sdk 7.0.202 (#772)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.5, remove dotnet-aspnetcore 7.0.4 (#774)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.5, remove dotnet-runtime 7.0.4 (#775)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.16, remove dotnet-runtime 6.0.15 (#771)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.16, remove dotnet-aspnetcore 6.0.15 (#770)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.408, remove dotnet-sdk 6.0.407 (#773)
for stack(s) cflinuxfs4, cflinuxfs3
v2.4.10 Apr 10, 2023
=====================
* Update libbuildpack
* Bump github.com/onsi/gomega from 1.27.2 to 1.27.6
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.27.2 to 1.27.6.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.27.2...v1.27.6)
v2.4.9 Mar 20, 2023
====================
* Add node 18.15.0, remove node 18.14.2 (#755)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.15, remove dotnet-aspnetcore 6.0.14 (#763)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.15, remove dotnet-runtime 6.0.14 (#762)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.407, remove dotnet-sdk 6.0.406 (#761)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 7.0.202, remove dotnet-sdk 7.0.200 (#760) (#750)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.4, remove dotnet-aspnetcore 7.0.3 (#759)
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.4, remove dotnet-runtime 7.0.3 (#758)
for stack(s) cflinuxfs4, cflinuxfs3
v2.4.8 Feb 21, 2023
====================
* Add dotnet-runtime 6.0.14, remove dotnet-runtime 6.0.13 (#748)
* Add dotnet-aspnetcore 6.0.14, remove dotnet-aspnetcore 6.0.13 (#747)
* Add dotnet-runtime 7.0.3, remove dotnet-runtime 7.0.2 (#746)
* Add dotnet-aspnetcore 7.0.3, remove dotnet-aspnetcore 7.0.2 (#745)
* Add dotnet-sdk 7.0.200, remove dotnet-sdk 7.0.102 (#744)
* Add dotnet-sdk 6.0.406, remove dotnet-sdk 6.0.405 (#742)
* Add node 18.14.2, remove node 18.14.0 (#743)
for stack(s) cflinuxfs3, cflinuxfs4
(https://www.pivotaltracker.com/story/show/184532347)
* update libbuildpack-dynatrace (#691)
* Removes compatibility table that only exists for brats tests and replaces it with simpler logic
v2.4.7 Feb 08, 2023
====================
* Add node 18.14.0, remove node 18.13.0
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/184393261)
v2.4.6 Jan 13, 2023
====================
* Add dotnet-sdk 7.0.102, remove dotnet-sdk 7.0.101 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.405, remove dotnet-sdk 6.0.404 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.13, remove dotnet-aspnetcore 6.0.12 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.13, remove dotnet-runtime 6.0.12 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.2, remove dotnet-runtime 7.0.1 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.2, remove dotnet-aspnetcore 7.0.1 for stack(s) cflinuxfs4, cflinuxfs3
v2.4.5 Dec 16, 2022
====================
* Deprecate .Net (aspnetcore, runtime and sdk) 3.x
* Add dotnet-aspnetcore 6.0.12, remove dotnet-aspnetcore 6.0.11 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.12, remove dotnet-runtime 6.0.11 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 6.0.404, remove dotnet-sdk 6.0.403 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 7.0.1, remove dotnet-aspnetcore 7.0.0 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 7.0.1, remove dotnet-runtime 7.0.0 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-sdk 7.0.101, remove dotnet-sdk 7.0.100 for stack(s) cflinuxfs4, cflinuxfs3
v2.4.4 Dec 01, 2022
====================
* Add dotnet-sdk 7.0.100
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/183841988)
* Add dotnet-aspnetcore 7.0.0
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/183841985)
* Add dotnet-runtime 7.0.0
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/183841983)
v2.4.3 Nov 14, 2022
====================
* Add dotnet-aspnetcore 3.1.31, remove dotnet-aspnetcore 3.1.30
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/183751987)
* Add dotnet-runtime 3.1.31, remove dotnet-runtime 3.1.30
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/183751988)
* Add dotnet-sdk 6.0.403, remove dotnet-sdk 6.0.402
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/183751455)
* Add dotnet-aspnetcore 6.0.11, remove dotnet-aspnetcore 6.0.10
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/183751561)
* Add dotnet-runtime 6.0.11, remove dotnet-runtime 6.0.10
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/183751459)
* Set node to version 18 (current LTS)
* Add node 18.12.1, remove node 16.18.0
for stack(s) cflinuxfs3, cflinuxfs4
v2.4.2 Oct 14, 2022
====================
* Add node 16.18.0, remove node 16.17.0 for stack(s) cflinuxfs3, cflinuxfs4
* Add dotnet-sdk 3.1.424, remove dotnet-sdk 3.1.423 for stack(s) cflinuxfs3
* Add dotnet-runtime 3.1.30, remove dotnet-runtime 3.1.29 for stack(s) cflinuxfs3
* Add dotnet-aspnetcore 3.1.30, remove dotnet-aspnetcore 3.1.29 for stack(s) cflinuxfs3
* Add dotnet-sdk 6.0.402, remove dotnet-sdk 6.0.401 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 6.0.10, remove dotnet-runtime 6.0.9 for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 6.0.10, remove dotnet-aspnetcore 6.0.9 for stack(s) cflinuxfs4, cflinuxfs3
v2.4.1 Sep 14, 2022
====================
* Bug Fix: Fix logic in rolling the version forward
(https://github.com/cloudfoundry/dotnet-core-buildpack/pull/646)
* Add dotnet-sdk 3.1.423, remove dotnet-sdk 3.1.421
for stack(s) cflinuxfs3
* Add dotnet-sdk 6.0.401, remove dotnet-sdk 6.0.302
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-runtime 3.1.29, remove dotnet-runtime 3.1.27
for stack(s) cflinuxfs3
* Add dotnet-runtime 6.0.9, remove dotnet-runtime 6.0.7
for stack(s) cflinuxfs4, cflinuxfs3
* Add dotnet-aspnetcore 3.1.29, remove dotnet-aspnetcore 3.1.27
for stack(s) cflinuxfs3
* Add dotnet-aspnetcore 6.0.9, remove dotnet-aspnetcore 6.0.7
for stack(s) cflinuxfs4, cflinuxfs3
* Add node 16.17.0, remove node 16.16.0
for stack(s) cflinuxfs4, cflinuxfs3
v2.4.0 Aug 05, 2022
=====================
* Introduce cflinuxfs4 stack support.
cflinuxfs4 is not supported for the .NET 3.1 version line
Use .NET 6.0 for cflinuxfs4 stack.
* Bump github.com/Sealights/libbuildpack-sealights from 1.1.0 to 1.2.0
- [Release notes](https://github.com/Sealights/libbuildpack-sealights/releases)
- [Changelog](https://github.com/Sealights/libbuildpack-sealights/blob/master/release_info.go)
* Add dotnet-sdk 3.1.421, remove 6.0.420
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/182703553)
* Add dotnet-sdk 6.0.302, remove 6.0.301
(https://www.pivotaltracker.com/story/show/182703234)
* Add dotnet-runtime 3.1.27, remove 3.1.26
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/182703221)
* Add dotnet-runtime 6.0.7, remove 6.0.6
(https://www.pivotaltracker.com/story/show/182703013)
* Add dotnet-aspnetcore 3.1.27, remove 3.1.26
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/182703050)
* Add dotnet-aspnetcore 6.0.7, remove 6.0.6
(https://www.pivotaltracker.com/story/show/182703012)
v2.3.44 Jul 08, 2022
=====================
* Add dotnet-aspnetcore 3.1.26, remove dotnet-aspnetcore 3.1.25 for stack(s) cflinuxfs3
* Add dotnet-aspnetcore 6.0.6, remove dotnet-aspnetcore 6.0.5 for stack(s) cflinuxfs3
* Add dotnet-runtime 3.1.26, remove dotnet-runtime 3.1.25 for stack(s) cflinuxfs3
* Add dotnet-runtime 6.0.6, remove dotnet-runtime 6.0.5 for stack(s) cflinuxfs3
* Add dotnet-sdk 3.1.420, remove dotnet-sdk 3.1.419 for stack(s) cflinuxfs3
* Add dotnet-sdk 6.0.301, remove dotnet-sdk 6.0.300 for stack(s) cflinuxfs3
* Add node 16.16.0, remove node 16.15.1 for stack(s) cflinuxfs3
* Updated sealights integration version
v2.3.43 Jun 09, 2022
=====================
* Update default .NET SDK, ASPNetCore and Runtime default version in buildpack from 3.1.x to 6.0.x
* Add node 16.15.1, remove node 16.15.0 for stack(s) cflinuxfs3
v2.3.42 May 12, 2022
=====================
* Deprecate dotnet-aspnetcore, dotnet-runtime, and dotnet-sdk 5.x
* Add dotnet-aspnetcore 3.1.25, remove dotnet-aspnetcore 3.1.23 for stack(s) cflinuxfs3
* Add dotnet-aspnetcore 6.0.5, remove dotnet-aspnetcore 6.0.3 for stack(s) cflinuxfs3
* Add dotnet-runtime 3.1.25, remove dotnet-runtime 3.1.23 for stack(s) cflinuxfs3
* Add dotnet-runtime 6.0.5, remove dotnet-runtime 6.0.3 for stack(s) cflinuxfs3
* Add dotnet-sdk 3.1.419, remove dotnet-sdk 3.1.417 for stack(s) cflinuxfs3
* Add dotnet-sdk 6.0.300, remove dotnet-sdk 6.0.201 for stack(s) cflinuxfs3
* Add node 16.15.0, remove node 16.14.2 for stack(s) cflinuxfs3
* Add Sealights integration
v2.3.41 Apr 07, 2022
=====================
* Add node 16.14.2, remove node 16.14.0 for stack(s) cflinuxfs3
v2.3.40 Mar 16, 2022
=====================
* Add dotnet-sdk 3.1.417
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181502406)
* Add dotnet-sdk 5.0.406
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181502344)
* Add dotnet-sdk 6.0.201
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181502206)
* Add dotnet-runtime 3.1.23
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181502532)
* Add dotnet-runtime 5.0.15
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181502142)
* Add dotnet-runtime 6.0.3
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181502294)
* Add dotnet-aspnetcore 3.1.23
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181502296)
* Add dotnet-aspnetcore 5.0.15
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181502248)
* Add dotnet-aspnetcore 6.0.3
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181502289)
* Add bower 1.8.14, remove bower 1.8.13
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181559845)
* Update .NET Buildpack dependencies lines to only keep 1 of each patch version (latest)
* remove tests expecting multiple patch versions
Multiple patches for the same line were removed in
https://github.com/cloudfoundry/dotnet-core-buildpack/issues/518
v2.3.39 Feb 10, 2022
=====================
* Add dotnet-sdk 5.0.405
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181193612)
* Add dotnet-aspnetcore 6.0.2
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181193501)
* Add dotnet-sdk 6.0.102
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181193435)
* Add dotnet-aspnetcore 5.0.14
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181193442)
* Add dotnet-runtime 6.0.2
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181193440)
* Add dotnet-runtime 5.0.14
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181193325)
* Remove old .NET runtimes and SDKs
- dotnet-sdk 3.1.412, 3.1.413, 3.1.414
- dotnet-sdk 5.0.400, 5.0.401, 5.0.402
- dotnet-runtime 3.1.18, 3.1.19, 3.1.20
- dotnet-runtime 5.0.9, 5.0.10, 5.0.11
- dotnet-aspnetcore 3.1.18, 3.1.19, 3.1.20
- dotnet-aspnetcore 5.0.9, 5.0.10, 5.0.11
* Remove node 14.x.x
* Add node 16.14.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181194351)
(https://www.pivotaltracker.com/story/show/180864698)
v2.3.38 Jan 12, 2022
=====================
* Add .NET Core 6 support
* Add dotnet-sdk 6.0.101
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180800075)
* Add dotnet-aspnetcore 6.0.1
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180800076)
* Add dotnet-runtime 6.0.1
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180800077)
* Add dotnet-sdk 5.0.404
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180639060)
* Add dotnet-runtime 3.1.22
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180638976)
* Add dotnet-aspnetcore 3.1.22
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180639063)
* Add dotnet-sdk 3.1.416
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180639016)
* Add dotnet-runtime 5.0.13
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180639058)
* Add dotnet-aspnetcore 5.0.13
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180639022)
* Add node 14.18.3, remove node 14.18.2
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180864574)
v2.3.37 Dec 10, 2021
=====================
* Bump github.com/Dynatrace/libbuildpack-dynatrace from 1.4.1 to 1.4.2
Bumps [github.com/Dynatrace/libbuildpack-dynatrace](https://github.com/Dynatrace/libbuildpack-dynatrace) from 1.4.1 to 1.4.2.
- [Release notes](https://github.com/Dynatrace/libbuildpack-dynatrace/releases)
- [Commits](https://github.com/Dynatrace/libbuildpack-dynatrace/compare/v1.4.1...v1.4.2)
---
updated-dependencies:
- dependency-name: github.com/Dynatrace/libbuildpack-dynatrace
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Bump github.com/onsi/gomega from 1.14.0 to 1.17.0
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.14.0 to 1.17.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.14.0...v1.17.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
* Bump github.com/go-ini/ini from 1.42.0 to 1.66.2
Bumps [github.com/go-ini/ini](https://github.com/go-ini/ini) from 1.42.0 to 1.66.2.
- [Release notes](https://github.com/go-ini/ini/releases)
- [Commits](https://github.com/go-ini/ini/compare/v1.42.0...v1.66.2)
---
updated-dependencies:
- dependency-name: github.com/go-ini/ini
dependency-type: direct:production
update-type: version-update:semver-minor
...
* Add dotnet-sdk 3.1.415
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180234283)
* Add dotnet-sdk 5.0.403
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180234297)
* Add dotnet-runtime 5.0.12
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180234291)
* Add dotnet-runtime 3.1.21
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180234287)
* Add dotnet-aspnetcore 3.1.21
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180234307)
* Add dotnet-aspnetcore 5.0.12
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180234295)
* Add libunwind 1.6.2, remove libunwind 1.5
for stack(s) cflinuxfs3
* Add libgdiplus 6.1, remove libgdiplus 6.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180186271)
* Add node 14.18.2, remove node 14.18.1
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180480654)
* Add bower 1.8.13, remove bower 1.8.12
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180314436)
* Update libbuildpack
* Readme: Update packager install instructions
* Fix default bower version
v2.3.36 Oct 19, 2021
=====================
* Add dotnet-runtime 5.0.11
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/179911594)
* Add dotnet-runtime 3.1.20
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/179911278)
* Add dotnet-sdk 5.0.402
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/179911143)
* Add dotnet-aspnetcore 3.1.20
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/179911158)
* Add dotnet-aspnetcore 5.0.11
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/179911083)
* Add dotnet-sdk 3.1.414
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/179910730)
* Add node 14.18.1, remove node 14.18.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/179907722)
* Propagates errors from global.json SDK install
Instead of ignoring the error and installing the default SDK, returns the error and stops staging. If the global.json is present, but
does not contain an SDK version, the existing behavior is maintained (uses default SDK).
v2.3.35 Sep 30, 2021