-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1448 lines (997 loc) · 43.1 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
v1.7.40 Jun 05, 2019
=====================
* Add node 10.16.0, remove node 10.15.3
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/166317034)
v1.7.39 May 15, 2019
=====================
* Update the openjdk dependency to 1.8.0_212
(https://www.pivotaltracker.com/story/show/165405673)
* Add yarn 1.16.0, remove yarn 1.15.2
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165924485)
* Remove logic that was added to support both Node 6.x and 10x, and set default version of node to 10.x
(https://www.pivotaltracker.com/story/show/164990934)
* update install_go.sh script to use go 1.12.4
v1.7.38 Apr 23, 2019
=====================
* Add ruby 2.6.3, remove ruby 2.6.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165546727)
v1.7.37 Apr 23, 2019
=====================
* Add node 10.15.3
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/164408746)
* Enable multiple node dependencies
- Defaults to version 6
- Parses version from package.json
(https://www.pivotaltracker.com/story/show/165216936)
* Add jruby 9.2.7.0, remove jruby 9.2.6.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165224918)
v1.7.36 Apr 08, 2019
=====================
* Update README with correct packager installation
(https://www.pivotaltracker.com/story/show/164889000)
* Add node 6.17.1, remove node 6.17.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165104943)
* Add ruby 2.4.6, remove ruby 2.4.4
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165037294)
v1.7.35 Mar 20, 2019
=====================
* Add ruby 2.5.5, remove ruby 2.5.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164698728)
(https://www.pivotaltracker.com/story/show/164607786)
* Add yarn 1.15.2, remove yarn 1.13.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164657895)
(https://www.pivotaltracker.com/story/show/164518593)
* Bump ruby to 2.6.1
(https://www.pivotaltracker.com/story/show/164607809)
* Add ruby 2.6.2, remove ruby 2.6.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164607809)
* Add rubygems 3.0.3, remove rubygems 3.0.2
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164388659)
v1.7.34 Mar 01, 2019
=====================
* Add node 6.17.0, remove node 6.16.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164301707)
* Add source and source_sha256 to buildpack
(https://www.pivotaltracker.com/story/show/163711928)
v1.7.33 Feb 20, 2019
=====================
* Exit out when an unsupported stack is used
(https://www.pivotaltracker.com/story/show/164076510)
* Add jruby 9.2.6.0, remove jruby 9.2.5.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163887213)
v1.7.32 Feb 08, 2019
=====================
* Add ruby 2.6.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163714607)
* Use built version of go 1.11.5 in online unbuilt/URL buildpack
(https://www.pivotaltracker.com/story/show/163701450)
v1.7.31 Jan 23, 2019
=====================
* Use built version of go 1.11.4 in online unbuilt/URL buildpack
(https://www.pivotaltracker.com/story/show/163089977)
* Fix bundler 2 installation
- Always install bundler 1
- Allow bundler 2 to automatically select bundler version to use assuming ruby version >= 2.3
(https://www.pivotaltracker.com/story/show/163379014)
v1.7.30 Jan 17, 2019
=====================
* Add bundler 2.0.1
(https://www.pivotaltracker.com/story/show/162976046)
* Vendor with Go Modules
- Fix performance regression when the buildpack is executed directly
from github by re-vendoring source code
(https://www.pivotaltracker.com/story/show/162654926)
* Add yarn 1.13.0, remove yarn 1.12.3
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163083614)
* Add ruby 2.6.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163068800)
* Add rubygems 3.0.2, remove rubygems 3.0.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162898690)
v1.7.29 Dec 31, 2018
=====================
* Add bundler 1.17.3, remove bundler 1.17.2
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162854170)
* Add node 6.16.0, remove node 6.15.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162848357)
* Add rubygems 3.0.1, remove rubygems 3.0.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162826519)
* Add rubygems 3.0.0, remove rubygems 2.7.8
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162752226)
* Rebuild bundler 1.17.2
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162575159)
v1.7.28 Dec 11, 2018
=====================
* Add bundler 1.17.2, remove bundler 1.17.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162575159)
* Add jruby 9.2.5.0, remove jruby 9.2.4.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162492685)
* Add node 6.15.1, remove node 6.14.4
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162382561)
* Fix bug for rails >4 apps using webpack in place of sprockets
(https://www.pivotaltracker.com/story/show/162246741)
v1.7.27 Nov 15, 2018
=====================
* Add jruby 9.2.4.0, remove jruby 9.2.0.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161937451)
* Add yarn 1.12.3, remove yarn 1.12.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161784171)
* Set buildpack when pushing twice
- Pushing with --no-start fails on the second push when no buildpack
is specified in PCF 1.12, our new lts version
* Add rubygems 2.7.8, remove rubygems 2.7.7
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161672493)
v1.7.26 Oct 31, 2018
=====================
* Can supply and finalize with custom-named Gemfile and Gemfile.lock
(https://www.pivotaltracker.com/story/show/161122636)
* Add ruby 2.4.5, remove ruby 2.4.3
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161601057)
* Add ruby 2.3.8, remove ruby 2.3.6
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161601009)
* Add ruby 2.5.3, remove ruby 2.5.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161601099)
* Add yarn 1.12.1, remove yarn 1.10.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161522145)
v1.7.25 Oct 26, 2018
=====================
* Add openjdk-1.8.0_192, remove openjdk-1.8.0_181
(https://www.pivotaltracker.com/story/show/161306633)
* Rebuild jruby 9.2.0.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/159273964)
* Rebuild jruby 9.1.17.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/159273965)
* Add bundler 1.17.1, remove bundler 1.16.6
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161494417)
v1.7.24 Oct 11, 2018
=====================
* Add bundler 1.16.6, remove bundler 1.16.4
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161009633)
* Add yarn 1.10.1, remove yarn 1.9.4
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/160793556)
v1.7.23 Sep 10, 2018
=====================
* Add yarn 1.9.4, remove yarn 1.9.2
(https://www.pivotaltracker.com/story/show/159534896)
* Add openjdk-1.8.0_181, remove openjdk-1.8.0_172
(https://www.pivotaltracker.com/story/show/159293112)
* Add bundler 1.16.4, remove bundler 1.16.3
(https://www.pivotaltracker.com/story/show/159888816)
* Remove node 6.14.3
(https://www.pivotaltracker.com/story/show/159814060)
v1.7.22 Jul 27, 2018
=====================
* Rebuild ruby 2.2.10, 2.3.7, 2.4.4, 2.5.1
for stacks cflinuxfs3
(https://www.pivotaltracker.com/story/show/144938923)
* Rebuild node 6.14.3
for stacks cflinuxfs3
* Add yarn 1.9.2, remove yarn 1.7.0
for stacks cflinuxfs2, cflinuxfs3
* Add rubygems 2.7.7
for stacks cflinuxfs3
* Add bundler 6.14.3
for stacks cflinuxfs3
* Remove node 4.X.X version line
- This version line is deprecated
(https://www.pivotaltracker.com/story/show/157362046)
v1.7.21 Jun 25, 2018
=====================
* Add jruby 9.2.0.0 (implements ruby 2.5.0)
(https://www.pivotaltracker.com/story/show/157851009)
v1.7.20 Jun 19, 2018
=====================
* Make windows gemfile lock detection depend on line endings and absence of both ruby and jruby.
(https://www.pivotaltracker.com/story/show/157325297)
* Add node 6.14.3, remove node 6.14.2
(https://www.pivotaltracker.com/story/show/158314054)
v1.7.19 Jun 05, 2018
=====================
* Add yarn 1.7.0, remove yarn 1.6.0
(https://www.pivotaltracker.com/story/show/157827921)
* Add rubygems 2.7.7, remove rubygems 2.7.6
(https://www.pivotaltracker.com/story/show/157685124)
* Add bundler 1.16.2, remove bundler 1.16.1
(https://www.pivotaltracker.com/story/show/157645319)
v1.7.18 May 08, 2018
=====================
* Add ruby 2.2.10, remove ruby 2.2.8
(https://www.pivotaltracker.com/story/show/157255054)
* Add ruby 2.3.7, remove ruby 2.3.5
(https://www.pivotaltracker.com/story/show/157255099)
* Add ruby 2.4.4, remove ruby 2.4.2
(https://www.pivotaltracker.com/story/show/157255117)
* Add node 6.14.2, remove node 6.14.1
(https://www.pivotaltracker.com/story/show/157199825)
* Update openjdk to 1.8.0_172
(https://www.pivotaltracker.com/story/show/156971105)
v1.7.17 Apr 25, 2018
=====================
* Update jruby versions
- Remove deprecated versions: 'ruby-1.9.3-jruby-1.7.26' and 'ruby-2.0.0-jruby-1.7.26'
- Remove 'ruby-2.3.3-jruby-9.1.16.0'
- Add 'ruby-2.3.3-jruby-9.1.17.0'
(https://www.pivotaltracker.com/story/show/157006756)
* Add node 10.0.0
(https://www.pivotaltracker.com/story/show/157065173)
* Add yarn 1.6.0, remove yarn 1.5.1
(https://www.pivotaltracker.com/story/show/156786250)
* Fix staging failure when writing a start command fails
(https://www.pivotaltracker.com/story/show/156748474)
* Fix incorrect runtime prefix for app/ld_library_path
(https://www.pivotaltracker.com/story/show/155928706)
v1.7.16 Apr 03, 2018
=====================
* Add node 4.9.1, remove node 4.9.0
(https://www.pivotaltracker.com/story/show/156394483)
* Add node 6.14.1, remove node 6.14.0
(https://www.pivotaltracker.com/story/show/156394483)
* Add ruby 2.5.1
(https://www.pivotaltracker.com/story/show/156373044)
* Add node 4.9.0, remove node 4.8.7
(https://www.pivotaltracker.com/story/show/156350231)
* Add node 6.14.0, remove node 6.13.1
(https://www.pivotaltracker.com/story/show/156350231)
* Update ffi gem to 1.9.23 in rails51 fixtures
(https://www.pivotaltracker.com/story/show/155086373)
v1.7.15 Mar 09, 2018
=====================
* Use manifest cache downloads
(https://www.pivotaltracker.com/story/show/155405429)
* Add node 6.13.1, remove node 6.13.0
(https://www.pivotaltracker.com/story/show/155758175)
* Trim spaces from SecretKeyBase
(https://www.pivotaltracker.com/story/show/155664134)
* Add yarn 1.5.1, remove yarn 1.3.2
(https://www.pivotaltracker.com/story/show/155546203)
v1.7.14 Feb 26, 2018
=====================
* Add jruby 9.1.16.0, remove 9.1.15.0
(https://www.pivotaltracker.com/story/show/155414392)
v1.7.13 Feb 20, 2018
=====================
* Add rubygems 2.7.6, remove rubygems 2.7.4
(https://www.pivotaltracker.com/story/show/155285561)
(https://www.pivotaltracker.com/story/show/154949275)
* Add node 6.13.0, remove node 6.12.3
(https://www.pivotaltracker.com/story/show/155196463)
v1.7.12 Feb 09, 2018
=====================
* Handle puts in Gemfile for version detection
(https://www.pivotaltracker.com/story/show/155047298)
* Enable manifest apply override
(https://www.pivotaltracker.com/story/show/153614649)
* Add Openjdk 1.8.0_162, Remove 1.8.0_152
(https://www.pivotaltracker.com/story/show/154634186)
v1.7.11 Jan 26, 2018
=====================
* Fix bug with rails asset:precompile
- Bug was discovered to exist when using webpacker, or somethinge which used
bundler to call bunder, and thus forced a simpler GEM_PATH than required.
- Rewrite Shebangs on a larger collection of files
(https://www.pivotaltracker.com/story/show/154546718)
v1.7.10 Jan 19, 2018
=====================
* Add rubygems 2.7.4, remove 2.6.13
(https://www.pivotaltracker.com/story/show/154440553)
v1.7.9 Jan 05, 2018
====================
* Set default ruby to 2.4 version line
* Add node 6.12.3, remove node 6.12.2
(https://www.pivotaltracker.com/story/show/154004430)
* Add ruby 2.5.0
(https://www.pivotaltracker.com/story/show/153964335)
* Set SECRET_KEY_BASE during "rake assets:precompile"
(https://www.pivotaltracker.com/story/show/153607818)
* Add bundler 1.16.1, remove bundler 1.16.0
(https://www.pivotaltracker.com/story/show/153858048)
* Add ruby 2.4.3, 2.3.6, 2.2.9, remove 2.4.1, 2.3.4, 2.2.7
(https://www.pivotaltracker.com/story/show/153669326)
* Remove ruby 2.1.x
(https://www.pivotaltracker.com/story/show/152620209)
v1.7.8 Dec 12, 2017
====================
* Add jruby 9.1.15.0, remove jruby 9.1.13.0
(https://www.pivotaltracker.com/story/show/153491050)
(https://www.pivotaltracker.com/story/show/152721520)
* Add node 4.8.7, remove node 4.8.6
(https://www.pivotaltracker.com/story/show/153514063)
* Add node 6.12.2, remove node 6.12.0
(https://www.pivotaltracker.com/story/show/153514063)
(https://www.pivotaltracker.com/story/show/153407348)
* Adds bundler 1.16.0, removes bundler 1.15.4
- Regenerates bundler binstub to account for incompatibility with Rails
generated ones. See:
* https://github.com/rails/rails/issues/31193
* https://github.com/bundler/bundler/issues/6149
- binstubs are no longer modified; BUNDLE_GEMFILE is set instead
(https://www.pivotaltracker.com/story/show/152452239)
v1.7.7 Nov 21, 2017
====================
* Put APP/ld_library_path in LD_LIBRARY_PATH
(https://www.pivotaltracker.com/story/show/152718589)
* Add node 4.8.6, remove node 4.8.5
(https://www.pivotaltracker.com/story/show/152648755)
* Add node 6.12.0, remove node 6.11.5
(https://www.pivotaltracker.com/story/show/152648755)
v1.7.6 Nov 06, 2017
====================
* Add openjdk 1.8.0_152, Remove 1.8.0_144
(https://www.pivotaltracker.com/story/show/152430529)
* Verify dependency downloads using sha256 instead of md5
(https://www.pivotaltracker.com/story/show/151913767)
v1.7.5 Oct 25, 2017
====================
* Add node 4.8.5, remove node 4.8.4
(https://www.pivotaltracker.com/story/show/152260475)
* Add node 6.11.5, remove node 6.11.4
(https://www.pivotaltracker.com/story/show/152260475)
v1.7.4 Oct 12, 2017
====================
* Using ruby buildpack as a supply buildpack does not require a Gemfile
(https://www.pivotaltracker.com/story/show/151542741)
* Add node 6.11.4, remove node 6.11.3
(https://www.pivotaltracker.com/story/show/151659499)
* Add yarn 1.2.1, remove yarn 1.1.0
(https://www.pivotaltracker.com/story/show/151912328)
(https://www.pivotaltracker.com/story/show/151833736)
v1.7.3 Sep 27, 2017
====================
* Write shims in app/bin/ in ruby instead of bash
Preserves functionality when commands are run with ruby/jruby
(https://www.pivotaltracker.com/story/show/151369802)
* Add yarn 1.1.0, remove yarn 1.0.2
(https://www.pivotaltracker.com/story/show/151359400)
v1.7.2 Sep 22, 2017
====================
* Rewrite binstubs to use runtime app location
(https://www.pivotaltracker.com/story/show/151255308)
v1.7.1 Sep 18, 2017
====================
* Rewrite all shebangs - fixes a bug with "gem"
(https://www.pivotaltracker.com/story/show/151139503)
v1.7.0 Sep 14, 2017
=====================
* Rewrite buildpack using libbuildpack
behavioural changes:
* ensure supply does not change build dir
* gems are available when the buildpack is not last in order
(https://www.pivotaltracker.com/story/show/149435225)
* Add ruby 2.4.2, 2.3.5, 2.2.8. Remove 2.4.0, 2.3.3, 2.2.6
(https://www.pivotaltracker.com/story/show/151087653)
* Add yarn 1.0.2, remove yarn 0.27.5
(https://www.pivotaltracker.com/story/show/151059801)
(https://www.pivotaltracker.com/story/show/150886385)
(https://www.pivotaltracker.com/story/show/150856905)
(https://www.pivotaltracker.com/story/show/150856905)
* Update rubygems if older than version in manifest
(https://www.pivotaltracker.com/story/show/150884901)
* Add jruby 9.1.13.0, Remove jruby 9.1.12.0
(https://www.pivotaltracker.com/story/show/150863849)
* Add node 6.11.3, remove node 6.11.2
(https://www.pivotaltracker.com/story/show/150824934)
* Update openjdk from 1.8.0_141 -> 1.8.0_144
(https://www.pivotaltracker.com/story/show/150621073)
* Add bundler 1.15.4, remove bundler 1.15.3
(https://www.pivotaltracker.com/story/show/150383252)
v1.6.47 Aug 07, 2017
=====================
* Add node 6.11.2, remove node 6.11.1
(https://www.pivotaltracker.com/story/show/149837609)
v1.6.46 Jul 31, 2017
=====================
* Update openjdk 1.8.0_131 -> 1.8.0_141
(https://www.pivotaltracker.com/story/show/149546525)
* Log a message if node is already supplied
(https://www.pivotaltracker.com/story/show/147464525)
v1.6.45 Jul 24, 2017
=====================
* Add bundler 1.15.3, remove bundler 1.15.1
(https://www.pivotaltracker.com/story/show/149029147)
(https://www.pivotaltracker.com/story/show/149328823)
* link to dep/*/bin/* using bash script instead of symlinks
(https://www.pivotaltracker.com/story/show/149299715)
* Only emit warnings inline to avoid both duplication and confusion during diagnosis
(https://www.pivotaltracker.com/story/show/148696219)
* Avoid warning developers about having vendor/bundle in their repository when they had not
(https://www.pivotaltracker.com/story/show/148696219)
v1.6.44 Jul 13, 2017
=====================
* Add node 4.8.4, remove node 4.8.3
(https://www.pivotaltracker.com/story/show/148684925)
* Add node 6.11.1, remove node 6.11.0
(https://www.pivotaltracker.com/story/show/148684925)
v1.6.43 Jul 10, 2017
=====================
* Add yarn 0.27.5, remove yarn 0.24.6
(https://www.pivotaltracker.com/story/show/148175165)
(https://www.pivotaltracker.com/story/show/148169407)
(https://www.pivotaltracker.com/story/show/148107277)
(https://www.pivotaltracker.com/story/show/147751911)
* Add jruby 9.1.12.0, remove 9.1.10.0
(https://www.pivotaltracker.com/story/show/147283461)
v1.6.42 Jun 22, 2017
=====================
* Amend license, and fix readme links
(https://www.pivotaltracker.com/story/show/147439591)
(https://www.pivotaltracker.com/story/show/147615323)
* Add node 6.11.0, remove node 6.10.3
(https://www.pivotaltracker.com/story/show/146731549)
v1.6.41 Jun 06, 2017
=====================
* Convert to online-only distribution.
- See: http://cf-dev.70369.x6.nabble.com/cf-dev-Discontinuing-Distribution-of-the-Offline-Buildpacks-td6732.html
(https://www.pivotaltracker.com/story/show/146375487)
* Add jruby 9.1.10.0, remove jruby 9.1.9.0
(https://www.pivotaltracker.com/story/show/146119231)
* Add bundler 1.15.1, remove bundler 1.15.0
source url: https://rubygems.org/downloads/bundler-1.15.1.gem
source sha256: fa6ec48f94faffe4987f89b4b85409fd6a4ddce8d46f779acdc26d041eb200d7
(https://www.pivotaltracker.com/story/show/146502569)
v1.6.40 May 26, 2017
=====================
* Add bundler 1.15.0, remove bundler 1.14.6
(https://www.pivotaltracker.com/story/show/145768065)
* Add yarn 0.24.6, remove yarn 0.24.4
(https://www.pivotaltracker.com/story/show/145961345)
* Add JRuby 9.1.9.0, Remove JRuby 9.1.8.0
(https://www.pivotaltracker.com/story/show/145548597)
* Change default ruby version from 2.3.4 to 2.4.1
(https://www.pivotaltracker.com/story/show/143721855)
v1.6.39 May 12, 2017
=====================
* Add yarn 0.24.4, remove yarn 0.23.4
(https://www.pivotaltracker.com/story/show/145364383)
(https://www.pivotaltracker.com/story/show/145350573)
* Add EOL links to ruby buildpack
(https://www.pivotaltracker.com/story/show/144943203)
* Reference new windows gemfile docs
(https://www.pivotaltracker.com/story/show/141699203)
* Host openjdk in buildpacks bucket
(https://www.pivotaltracker.com/story/show/145198585)
* Use '_' instead of '-' in .profile.d script names
(https://www.pivotaltracker.com/story/show/144964891)
v1.6.38 May 03, 2017
=====================
* Add node 4.8.3 and 6.10.3, remove node 6.10.2 and 4.8.2
(https://www.pivotaltracker.com/story/show/144725819)
(https://www.pivotaltracker.com/story/show/144719795)
* Add yarn 0.23.4, remove yarn 0.23.2
(https://www.pivotaltracker.com/story/show/144725823)
(https://www.pivotaltracker.com/story/show/144440647)
* Add Add openjdk 1.8.0_131, remove openjdk 1.8.0_121
(https://www.pivotaltracker.com/story/show/144221517)
* Spilt compile into supply and finalize
- allows buildpack to use dependencies supplied by previous buildpacks
- Move install directories for bundler, ruby, node, yarn, + jvm to
dep_dir
- clean up some unused code (e.g. only mattered for ancient versions of
ruby, only applied to heroku)
(https://www.pivotaltracker.com/story/show/142852033)
v1.6.37 Apr 04, 2017
=====================
* Add node 4.8.2, remove node 4.8.1
(https://www.pivotaltracker.com/story/show/143029841)
* Add node 6.10.2, remove node 6.10.1
(https://www.pivotaltracker.com/story/show/143029841)
* Add deprecation dates for ruby 2.1.x
See: https://www.ruby-lang.org/en/news/2017/04/01/support-of-ruby-2-1-has-ended/
* Add ruby 2.3.4, remove 2.3.2
(https://www.pivotaltracker.com/story/show/142590541)
* Add ruby 2.2.7, remove 2.2.5
(https://www.pivotaltracker.com/story/show/142579565)
* Add yarn 0.22.0, remove yarn 0.21.3
v1.6.36 Mar 23, 2017
=====================
* Add ruby 2.4.1
(https://www.pivotaltracker.com/story/show/142155613)
* Add node 4.8.1, remove node 4.8.0
(https://www.pivotaltracker.com/story/show/142185261)
* Add jruby 9.1.8.0, remove jruby 9.1.7.0
(https://www.pivotaltracker.com/story/show/141046145)
* Add bundler 1.14.6, remove bundler 1.14.5
(https://www.pivotaltracker.com/story/show/141055921)
* Fail staging if unable to write .profile.d script
(https://www.pivotaltracker.com/story/show/141616657)
* Buildpack can use dependencies provided by supply scripts
(https://www.pivotaltracker.com/story/show/141616657)
* Use nodejs 6.x for rails 5.1 and above, continue using nodejs 4.x for other execjs apps
- Make When node is required install npm as well
- Add node 6.10.1
(https://www.pivotaltracker.com/story/show/141167599)
(https://www.pivotaltracker.com/story/show/141165751)
(https://www.pivotaltracker.com/story/show/142185261)
* Use pessimistic locking on Ruby version in Gemfile
- Change ruby version warning to include pessimistic versioning suggestion
(https://www.pivotaltracker.com/story/show/140770891)
(https://www.pivotaltracker.com/story/show/141518629)
* Changes behaviour of ruby version download by setting jruby patchlevel to be not significant
(https://www.pivotaltracker.com/story/show/140663631)
v1.6.35 Feb 27, 2017
=====================
* Add "retry" flag to bundler
(https://www.pivotaltracker.com/story/show/140511461)
* Add node 4.8.0, remove node 4.7.3
(https://www.pivotaltracker.com/story/show/140373175)
* Add bundler 1.14.5, remove bundler 1.14.3
(https://www.pivotaltracker.com/story/show/140373173)
v1.6.34 Feb 07, 2017
=====================
* Add EOL dates for jruby, openjdk and node
(https://www.pivotaltracker.com/story/show/137374307)
* Add node 4.7.3, remove node 4.7.2
(https://www.pivotaltracker.com/story/show/138773607)
* Remove unlicensed external dependencies: rails_log_stdout and rails3_serve_static_assets
(https://www.pivotaltracker.com/story/show/138644499)
v1.6.33 Jan 23, 2017
=====================
* Add bundler 1.14.2, remove bundler 1.13.7
(https://www.pivotaltracker.com/story/show/138119911)
* Add jruby 9.1.7.0, remove jruby 9.1.5.0
(https://www.pivotaltracker.com/story/show/137476393)
* Add openjdk 1.8.0_121, remove openjdk 1.8.0_111
(https://www.pivotaltracker.com/story/show/137883043)
v1.6.32 Jan 10, 2017
=====================
* Add warning if downloaded dependency is not the latest patch version for a
given major and minor version
(https://www.pivotaltracker.com/story/show/134863437)
* Add new version warning to Ruby buildpack
(https://www.pivotaltracker.com/story/show/135234395)
* Add bundler 1.13.7, remove bundler 1.13.6
(https://www.pivotaltracker.com/story/show/136650377)
* Add ruby 2.4.0
(https://www.pivotaltracker.com/story/show/136620759)
* Add node 4.7.2, remove node 4.7.0
(https://www.pivotaltracker.com/story/show/137135283)
(https://www.pivotaltracker.com/story/show/136994135)
v1.6.30 Dec 19, 2016
=====================
* Add jruby 9.1.5.0, remove jruby 9.1.2.0
(https://www.pivotaltracker.com/story/show/129904651)
* Add node 4.7.0, remove node 4.6.2
(https://www.pivotaltracker.com/story/show/135648535)
v1.6.29 Dec 06, 2016
=====================
* Add ruby 2.1.10, remove ruby 2.1.8
* Add ruby 2.2.6, remove ruby 2.2.4
(https://www.pivotaltracker.com/story/show/134340425)
* Add ruby 2.3.2 and 2.3.3, remove ruby 2.3.1
(https://www.pivotaltracker.com/story/show/134330017)
(https://www.pivotaltracker.com/story/show/134696699)
* Rebuild and change path for ruby, jruby, bundler, node binaries and
rails patching code
- We identified a potential, but unlikely, attack vector in our continuous
integration system. Our own auditing strongly suggests that this attack
vector was not taken advantage of. However, out of an abundance of caution,
we are rebuilding all buildpack dependencies that we maintain.
v1.6.28 Nov 09, 2016
=====================
* Add node 4.6.2, remove node 4.6.1
(https://www.pivotaltracker.com/story/show/133955125)
* Add bundler 1.13.6, remove bundler 1.13.5
(https://www.pivotaltracker.com/story/show/132957609)
* Add openjdk 1.8.0_111, remove openjdk 1.8.0_101
(https://www.pivotaltracker.com/story/show/132711731)
* Ensure all downloaded binaries have checksums verified
(https://www.pivotaltracker.com/story/show/128099189)
v1.6.27 Oct 18, 2016
=====================
* Add node 4.6.1, remove node 4.6.0
(https://www.pivotaltracker.com/story/show/132686391)
* Add bundler 1.13.5, remove bundler 1.13.1
(https://www.pivotaltracker.com/story/show/132366579)
v1.6.26 Sep 28, 2016
=====================
* Address USN-3087-1: OpenSSL vulnerabilities by updating node.
The new version of node included in this buildpack was built
against the patched version of OpenSSL
(https://www.pivotaltracker.com/story/show/130945067)
* Add node 4.6.0, remove node 4.5.0
(https://www.pivotaltracker.com/story/show/131225127)
v1.6.25 Sep 19, 2016
=====================
* Remove vendored libyaml
(https://www.pivotaltracker.com/story/show/130619237)
* Add bundler 1.13.1, remove bundler 1.12.5
(https://www.pivotaltracker.com/story/show/130298183)
v1.6.24 Sep 08, 2016
=====================
* Remove jruby-1.7.25, add jruby-1.7.26
(https://www.pivotaltracker.com/story/show/129371937)
* Remove large variety of heroku references in staging output
(https://www.pivotaltracker.com/story/show/127931269)
v1.6.23 Aug 31, 2016
=====================
* Fix crash in staging when Gemfile contains a gemspec with a relative path
(https://www.pivotaltracker.com/story/show/129458773)
* Fix md5 checksum for OpenJDK 1.8 due to rebuild
(https://www.pivotaltracker.com/story/show/129462209)
v1.6.22 Aug 25, 2016
=====================
* Add node 4.5.0, remove node 4.4.7
(https://www.pivotaltracker.com/story/show/128431641)
* Ruby runtime selection respects `BUNDLE_GEMFILE` environment variable
(https://www.pivotaltracker.com/story/show/128974739)
v1.6.21 Aug 11, 2016
=====================
* Redact credentials from URLs in a cached buildpack's output
(https://www.pivotaltracker.com/story/show/127357631)
* Update buildpack-packager to 2.3.3
(https://www.pivotaltracker.com/story/show/127357631)
* Redact credentials from URLs in an uncached buildpack's output
(https://www.pivotaltracker.com/story/show/126514693)
* Add default_versions support to buildpack
(https://www.pivotaltracker.com/story/show/126394819)
* Add node 4.4.7, remove node 4.4.4
(https://www.pivotaltracker.com/story/show/123264921)
* Download openjdk from java-buildpack.cloudfoundry.org
(https://www.pivotaltracker.com/story/show/126972537)
* Add openjdk 1.8.0_101, remove 1.8.0_91
(https://www.pivotaltracker.com/story/show/126661389)
* The default domain for buildpack dependencies is now buildpacks.cloudfoundry.org
(https://www.pivotaltracker.com/story/show/121757949)
v1.6.20 Jul 14, 2016
=====================
* Modify RubySemverVersion to use Bundler DSL to read file
(https://www.pivotaltracker.com/story/show/121730559)
v1.6.19 Jun 08, 2016
=====================
* Add jruby 9.1.2.0, remove jruby 9.1.0.0
(https://www.pivotaltracker.com/story/show/120448043)
* Correctly handle constants in Gemfile during ruby version check
(https://www.pivotaltracker.com/story/show/120409927)
* Update bundler to 1.12.5
(https://www.pivotaltracker.com/story/show/120316237)
v1.6.18 May 11, 2016
=====================
* Make Ruby 2.3.x the default version of Ruby
(https://www.pivotaltracker.com/story/show/119010685)
* Update node to v4.4.4
(https://www.pivotaltracker.com/story/show/118779505)
* Ruby buildpack supports version operators when specifying a `ruby` in the `Gemfile`
(https://www.pivotaltracker.com/story/show/106117082)
* Update bundler 1.11.2 -> 1.12.3