forked from cloudfoundry/nodejs-buildpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1340 lines (925 loc) · 40 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.6.42 Jan 28, 2019
=====================
* Add node 11.8.0, remove node 11.5.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/163473112)
* Use S3-hosted version of go 1.11.4 in online unbuilt/URL buildpack
(https://www.pivotaltracker.com/story/show/163089977)
v1.6.41 Jan 17, 2019
=====================
* Merge pull request #177 from lrgar/release
Update libbuildpack-dynatrace
* Add yarn 1.13.0, remove yarn 1.12.3
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163083614)
* 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)
v1.6.40 Jan 08, 2019
=====================
* Adds support for using an .nvmrc file in an apps home directory to specify the version of node
- Note that .nvmrc will only be used if we do not specify the node version in the engines field of package.json
(https://www.pivotaltracker.com/story/show/158526860)
v1.6.39 Jan 02, 2019
=====================
* Add node 11.6.0, remove node 11.3.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/162847279)
* Add node 10.15.0, remove node 10.14.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162847345)
* Add node 8.15.0, remove node 8.14.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162848337)
* Add node 6.16.0, remove node 6.15.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162848357)
* Use common library for Dynatrace hook - See https://github.com/Dynatrace/libbuildpack-dynatrace - Compared to previous hook implementation: - If download fails, we try a few more times. - Default agent output now goes to STDOUT. - Few other small improvements.
v1.6.38 Dec 19, 2018
=====================
* Add node 8.14.1, remove node 8.13.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162736295)
* Add node 10.14.2, remove node 10.14.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162591556)
* Add node 11.5.0, remove node 11.1.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/162741450)
v1.6.37 Dec 05, 2018
=====================
* Add node 6.15.1, remove node 6.14.4
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162382561)
* Add node 10.14.1, remove node 10.13.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162314539)
* Display warning when vendored app lacks a package-lock.json
- If app is vendored and there's no lock, modules may update
(https://www.pivotaltracker.com/story/show/159291499)
v1.6.36 Nov 29, 2018
=====================
* Add node 10.14.0, remove node 10.12.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162259106)
* Add node 11.3.0, remove node 11.2.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/162259097)
* Add node 8.14.0, remove node 8.12.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162259100)
* Add node 6.15.0, remove node 6.14.3
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162259098)
* Add node 11.2.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/162088427)
v1.6.35 Nov 20, 2018
=====================
* Add node 8.13.0, remove node 8.11.4
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162096699)
* Add node 10.13.0, remove node 10.10.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161581085)
* Add node 11.1.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/161677942)
* Add yarn 1.12.3, remove yarn 1.12.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161784171)
* Update dependency deprecation dates for nodejs 10.X and 11.X
(https://www.pivotaltracker.com/story/show/161427586)
* Merge pull request #169 from snyk-partners/snyk-fix-parameter-delivery
fix parameter delivery in snyk hook
* Merge pull request #168 from dtran808/patch-1
remove extraneous escape
v1.6.34 Oct 29, 2018
=====================
* Add yarn 1.12.1, remove yarn 1.10.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161522145)
* Add severity-threshold cli param for Snyk.
- Merge pull request #160 from snyk-partners:feat/add-severity-threshold
(https://www.pivotaltracker.com/story/show/161366380)
v1.6.33 Oct 15, 2018
=====================
* Add node 10.12.0, remove node 10.9.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161135486)
(https://www.pivotaltracker.com/story/show/160650768)
* Add node 8.12.0, remove node 8.11.3
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/160409649)
* Add yarn 1.10.1, remove yarn 1.9.4
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/160793556)
(https://www.pivotaltracker.com/story/show/160793489)
* Will not move artifacts if using yarn workspaces to prevent breaking symlinks.
(https://www.pivotaltracker.com/story/show/159391932)
v1.6.32 Sep 10, 2018
=====================
* Add node 10.10.0, remove node 10.7.0
(https://www.pivotaltracker.com/story/show/160334231)
* Bugfix for Snyk hook
(https://www.pivotaltracker.com/story/show/160155740)
v1.6.31 Aug 24, 2018
=====================
* Add node 10.9.0, remove node 10.5.0
(https://www.pivotaltracker.com/story/show/159814062)
(https://www.pivotaltracker.com/story/show/159478290)
* Add node 8.11.4, remove node 8.11.2
(https://www.pivotaltracker.com/story/show/159814061)
* Add node 6.14.4, remove node 6.14.2
(https://www.pivotaltracker.com/story/show/159814060)
* Add yarn 1.9.4, remove yarn 1.7.0
(https://www.pivotaltracker.com/story/show/159534896)
(https://www.pivotaltracker.com/story/show/159533350)
v1.6.30 Jul 27, 2018
=====================
* Rebuild node 6.14.3, 8.11.3, 9.11.2, 10.7.0
for stacks cflinuxfs3, cflinuxfs3 [#159252754]
* Rebuild yarn 1.7.0
for stacks cflinuxfs2, cflinuxfs3 [#159252393]
v1.6.29 Jul 19, 2018
=====================
* Add node 10.7.0, remove node 10.4.1
(https://www.pivotaltracker.com/story/show/159150931)
(https://www.pivotaltracker.com/story/show/158826642)
v1.6.28 Jul 02, 2018
=====================
* Remove node 4 everywhere
(https://www.pivotaltracker.com/story/show/157283396)
v1.6.27 Jun 25, 2018
=====================
* Add node 10.5.0, remove node 10.3.0
(https://www.pivotaltracker.com/story/show/158503889)
v1.6.26 Jun 14, 2018
=====================
* Add node 6.14.3, 8.11.3, 9.11.2, 10.4.1, Remove node 6.14.1, 8.11.1, 9.9.0, 10.1.0
(https://www.pivotaltracker.com/story/show/158314054)
(https://www.pivotaltracker.com/story/show/158314054)
(https://www.pivotaltracker.com/story/show/158314054)
(https://www.pivotaltracker.com/story/show/158314054)
v1.6.25 Jun 05, 2018
=====================
* Add node 10.3.0, remove node 10.0.0
(https://www.pivotaltracker.com/story/show/157945224)
* Add node 8.11.2, remove node 8.10.0
(https://www.pivotaltracker.com/story/show/157613971)
* Add yarn 1.7.0, remove yarn 1.6.0
(https://www.pivotaltracker.com/story/show/157827921)
v1.6.24 May 15, 2018
=====================
* Add node 10.1.0
source url: https://nodejs.org/dist/v10.1.0/node-v10.1.0.tar.gz
source sha256: e4b5a1d9fac4b20b5421afe34108867df359c69c4c4e2ad6e2bd75b113ddf0db
(https://www.pivotaltracker.com/story/show/157417041)
* Create symlink between buildDir node_modules and depsDir node_modules
- Only create the symlink if node_modules are not vendored
(https://www.pivotaltracker.com/story/show/157388016)
* Add node 6.14.2, remove node 6.13.1
source url: https://nodejs.org/dist/v6.14.2/node-v6.14.2.tar.gz
source sha256: 418901524257a2750930d659b3b9f8b8bb0b166974ab2103192270f80bd5f677
(https://www.pivotaltracker.com/story/show/157199825)
v1.6.23 Apr 26, 2018
=====================
* Always set NODE_PATH to node_modules location
(https://www.pivotaltracker.com/story/show/156828428)
* Set max_old_space_size when OPTIMIZE_MEMORY=true
- Remove --always_compact and --optimize_for_size as they are no longer valid node options
(https://www.pivotaltracker.com/story/show/155192314)
* 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)
v1.6.22 Apr 12, 2018
=====================
* Install node_modules in the build directory
Running npm/yarn install in the build directory ensures custom scripts are run in that directory
(https://www.pivotaltracker.com/story/show/156364507)
* Add node 9.11.1, remove node 9.8.0
(https://www.pivotaltracker.com/story/show/156531449)
(https://www.pivotaltracker.com/story/show/156350231)
* Add node 8.11.1, remove node 8.9.4
(https://www.pivotaltracker.com/story/show/156394483)
(https://www.pivotaltracker.com/story/show/156350231)
* Add node 6.14.1, remove node 6.13.0
(https://www.pivotaltracker.com/story/show/156394483)
(https://www.pivotaltracker.com/story/show/156350231)
* Add node 4.9.1, remove node 4.8.6
(https://www.pivotaltracker.com/story/show/156394483)
(https://www.pivotaltracker.com/story/show/156350231)
v1.6.21 Mar 21, 2018
=====================
* Add node 9.9.0, remove node 9.6.1
(https://www.pivotaltracker.com/story/show/156166012)
* Ensure app directory is not modified in supply phase
(https://www.pivotaltracker.com/story/show/155602498)
* Remove symlink in vendored yarn fixture
(https://www.pivotaltracker.com/story/show/155602498)
v1.6.20 Mar 09, 2018
=====================
* Uncached buildpacks now cache manifest.yml dependencies
- cache package only deletes its own directories
(https://www.pivotaltracker.com/story/show/155405429)
* Add node 9.8.0, remove node 9.5.0
(https://www.pivotaltracker.com/story/show/155804707)
(https://www.pivotaltracker.com/story/show/155618737)
* Add node 8.10.0, remove node 8.9.3
(https://www.pivotaltracker.com/story/show/155765642)
* Add node 6.13.1, remove node 6.12.3
(https://www.pivotaltracker.com/story/show/155758175)
* Add yarn 1.5.1, remove yarn 1.3.2
(https://www.pivotaltracker.com/story/show/155546203)
v1.6.19 Feb 26, 2018
=====================
* Add yarn 1.3.2, remove yarn 1.2.1
(https://www.pivotaltracker.com/story/show/155490241)
* Add Node 9.5.0, remove 9.6.0
We did not release 9.6.0 so keep 9.5.0
(https://www.pivotaltracker.com/story/show/155456835)
* Add node 9.6.1, remove node 9.5.0
(https://www.pivotaltracker.com/story/show/155456835)
* Add node 9.6.0, remove node 9.4.0
(https://www.pivotaltracker.com/story/show/155440073)
v1.6.18 Feb 20, 2018
=====================
* Add node 6.13.0, remove node 6.12.2
(https://www.pivotaltracker.com/story/show/155196463)
* Add support for custom api url and snyk org
(https://www.pivotaltracker.com/story/show/155181393)
v1.6.17 Feb 09, 2018
=====================
* Enable manifest override yml
(https://www.pivotaltracker.com/story/show/153614649)
* Add node 9.5.0, remove node 9.3.0
(https://www.pivotaltracker.com/story/show/154826768)
* changing $PREBUILD invalidates the cache
(https://www.pivotaltracker.com/story/show/146161295)
v1.6.16 Jan 29, 2018
=====================
* Add Snyk hook
(https://www.pivotaltracker.com/story/show/154521661)
* Bugfix for Dynatrace hook
(https://www.pivotaltracker.com/story/show/154240737)
v1.6.15 Jan 16, 2018
=====================
* Add node 9.4.0, remove node 9.2.1
(https://www.pivotaltracker.com/story/show/154214571)
* Add node 8.9.4, remove node 8.9.1
(https://www.pivotaltracker.com/story/show/154014103)
* Add node 6.12.3, remove node 6.12.0
(https://www.pivotaltracker.com/story/show/154004430)
v1.6.14 Dec 20, 2017
=====================
* Set Default node to 6.x and remove node 7.x
(https://www.pivotaltracker.com/story/show/152620013)
* Add node 9.3.0, remove node 9.2.0
(https://www.pivotaltracker.com/story/show/153611647)
v1.6.13 Dec 12, 2017
=====================
* Add node 8.9.3, remove node 8.9.0
(https://www.pivotaltracker.com/story/show/153516409)
(https://www.pivotaltracker.com/story/show/153425484)
* Add node 9.2.1, remove node 9.1.0
(https://www.pivotaltracker.com/story/show/153516409)
* Add node 4.8.7, remove node 4.8.5
(https://www.pivotaltracker.com/story/show/153514063)
* Add node 6.12.2, remove node 6.11.5
(https://www.pivotaltracker.com/story/show/153514063)
(https://www.pivotaltracker.com/story/show/153407348)
v1.6.12 Nov 21, 2017
=====================
* User Provided Services can have name containing 'appdynamics' or 'app-dynamics'
Service Brokers are always named 'appdynamics'
- Merge pull request #106 from kpschuck/develop
(https://www.pivotaltracker.com/story/show/152258548)
* Add node 9.2.0, remove node 9.0.0
(https://www.pivotaltracker.com/story/show/152870080)
* Supports Newrelic via user provided service
- Merge pull request #111 from jkschoen/newrelic
(https://www.pivotaltracker.com/story/show/152608357)
* Add node 8.9.1, remove node 8.8.0
(https://www.pivotaltracker.com/story/show/152660369)
* Add node 9.1.0
(https://www.pivotaltracker.com/story/show/152651070)
* Add node 4.8.6, remove node 4.8.4
(https://www.pivotaltracker.com/story/show/152648755)
* Add node 6.12.0, remove node 6.11.4
(https://www.pivotaltracker.com/story/show/152648755)
* Use a TLS proxy for HTTPS_PROXY so yarn 1.3.x won't ignore it
Add yarn 1.3.2, Remove yarn 1.2.1
(https://www.pivotaltracker.com/story/show/152521469)
v1.6.11 Nov 06, 2017
=====================
* Build node with "--use-openssl-ca" to enable system store
(https://www.pivotaltracker.com/story/show/152254480)
* Add node 9.0.0
(https://www.pivotaltracker.com/story/show/152452241)
* Add node 8.9.0, remove node 8.7.0
(https://www.pivotaltracker.com/story/show/152449876)
(https://www.pivotaltracker.com/story/show/152301847)
* Verify dependency downloads using sha256 instead of md5
(https://www.pivotaltracker.com/story/show/151913767)
v1.6.10 Oct 25, 2017
=====================
* Add node 4.8.5, remove node 4.8.3
(https://www.pivotaltracker.com/story/show/152260475)
* Add node 6.11.5, remove node 6.11.3
(https://www.pivotaltracker.com/story/show/152260475)
* Add node 8.8.0, remove node 8.6.0
(https://www.pivotaltracker.com/story/show/152260475)
* Added hooks for dynatrace
- Merge pull request #109 from arthfl/develop
v1.6.9 Oct 17, 2017
====================
* Add yarn 1.2.1, remove yarn 1.2.0
(https://www.pivotaltracker.com/story/show/151912328)
* Add node 8.7.0, remove node 8.5.0
(https://www.pivotaltracker.com/story/show/151897906)
* Add yarn 1.2.0, remove yarn 1.1.0
(https://www.pivotaltracker.com/story/show/151833736)
* Add node 6.11.4, remove node 6.11.2
(https://www.pivotaltracker.com/story/show/151659499)
v1.6.8 Oct 03, 2017
====================
* Add node 8.6.0, remove node 8.4.0
(https://www.pivotaltracker.com/story/show/151551566)
* Add yarn 1.1.0, remove yarn 1.0.2
(https://www.pivotaltracker.com/story/show/151359400)
v1.6.7 Sep 15, 2017
====================
* Match NPM version in package.json using semver constraints
(https://www.pivotaltracker.com/story/show/146165559)
* Add node 8.5.0, remove node 8.3.0
(https://www.pivotaltracker.com/story/show/151013555)
* Add node 8.4.0, remove node 8.2.1
(https://www.pivotaltracker.com/story/show/150276935)
* Add node 6.11.3, remove node 6.11.1
(https://www.pivotaltracker.com/story/show/150824934)
* 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)
v1.6.6 Aug 14, 2017
====================
* Add node 8.3.0, remove node 8.2.0
(https://www.pivotaltracker.com/story/show/150120007)
v1.6.5 Aug 01, 2017
====================
* Add node 6.11.2, remove node 6.11.0
(https://www.pivotaltracker.com/story/show/149837609)
* Fix bug: error pushing Node 6.11.1 app to cloud foundry using buildpack 1.6.2
(https://www.pivotaltracker.com/story/show/149549527)
* Move installation of modules from finalize to supply
(https://www.pivotaltracker.com/story/show/149435525)
* Make bundler binstubs easy to use
v1.6.4 Jul 24, 2017
====================
* Fix error with bufio.Scanner when contents of files overruns buffer
- Merge pull request #96 from mainephd/master
* Add node 8.2.1, remove node 8.1.3
(https://www.pivotaltracker.com/story/show/149272693)
(https://www.pivotaltracker.com/story/show/149199689)
v1.6.3 Jul 18, 2017
====================
* Handle wider version range syntaxes, eg. ">=6.11.1 <7.0"
(https://www.pivotaltracker.com/story/show/149087771)
v1.6.2 Jul 12, 2017
====================
* Merge pull request #94 from paulbeattie/master
Fix `WEB_CONCURRENCY` and `WEB_MEMORY` from being overwritten at runtime
* Add node 4.8.4, 6.11.1, 7.10.1, and 8.1.4; remove node 4.8.2, 6.10.3, 7.9.0, and 8.1.2
(https://www.pivotaltracker.Vcom/story/show/148684925)
(https://www.pivotaltracker.com/story/show/148684925)
(https://www.pivotaltracker.com/story/show/148684925)
(https://www.pivotaltracker.com/story/show/148684925)
v1.6.1 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 node 8.1.3, remove node 8.1.1
(https://www.pivotaltracker.com/story/show/148055013)
v1.6.0 Jun 22, 2017
=====================
* Add node 8.1.2
(https://www.pivotaltracker.com/story/show/147264673)
* Add node 8.1.1, remove node 8.0.0
(https://www.pivotaltracker.com/story/show/147158713)
* Add node 6.11.0, remove node 6.10.2
(https://www.pivotaltracker.com/story/show/146731549)
* Use MEMORY_AVAILABLE environment value for mem limit
* Convert to libbuildpack for greater consistency across core buildpacks
(https://www.pivotaltracker.com/story/show/145065635)
* Amend license, and fix readme links
(https://www.pivotaltracker.com/story/show/147439591)
(https://www.pivotaltracker.com/story/show/147615323)
v1.5.36 Jun 05, 2017
=====================
* Add node 8.0.0
(https://www.pivotaltracker.com/story/show/146317727)
v1.5.35 May 30, 2017
=====================
* Set MEMORY_AVAILABLE, WEB_MEMORY, WEB_CONCURRENCY
(https://www.pivotaltracker.com/story/show/146183269)
* Set NODE_ENV for production
(https://www.pivotaltracker.com/story/show/146183269)
* Add yarn 0.24.6, remove yarn 0.24.4
(https://www.pivotaltracker.com/story/show/145961345)
(https://www.pivotaltracker.com/story/show/145469419)
* Add flag "OPTIMIZE_MEMORY=true" to turn max_old_space_size on
(https://www.pivotaltracker.com/story/show/143873083)
v1.5.34 May 15, 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 for node
(https://www.pivotaltracker.com/story/show/144943203)
* Fix NODE_HOME env var
(https://www.pivotaltracker.com/story/show/142852389)
* Fix misleading jq error messges
(https://www.pivotaltracker.com/story/show/145044169)
* Fix multi-buildpack support in tasks
(https://www.pivotaltracker.com/story/show/144964891)
v1.5.33 May 03, 2017
=====================
* Add node 7.10.0, remove node 7.8.0
(https://www.pivotaltracker.com/story/show/144784587)
* Add node 7.9.0, remove node 7.7.4
(https://www.pivotaltracker.com/story/show/143534007)
* Add node 6.10.3, remove node 6.10.1
(https://www.pivotaltracker.com/story/show/144725819)
* Add node 4.8.3, remove node 4.8.1
(https://www.pivotaltracker.com/story/show/144719795)
* Add yarn 0.23.4, remove yarn 0.22.0
(https://www.pivotaltracker.com/story/show/144725823)
(https://www.pivotaltracker.com/story/show/143255621)
* Add Multi Buildpack support
(https://www.pivotaltracker.com/story/show/141616657)
* Ensure yarn install does not reach out to internet
(https://www.pivotaltracker.com/story/show/142334089)
* Use correct package manager in unmet deps warning
(https://www.pivotaltracker.com/story/show/143837939)
* Add Appdynamics support
(https://www.pivotaltracker.com/story/show/143585835)
v1.5.32 Apr 04, 2017
=====================
* Add node 4.8.2, remove node 4.8.0
(https://www.pivotaltracker.com/story/show/143029841)
* Add node 6.10.2, remove node 6.10.0
(https://www.pivotaltracker.com/story/show/143029841)
* Add node 7.8.0, remove node 7.7.3
(https://www.pivotaltracker.com/story/show/142657575)
v1.5.31 Mar 27, 2017
=====================
* Add node 4.8.1, Remove node 4.7.3
- Set Node 4.8.1 as the default
(https://www.pivotaltracker.com/story/show/142185261)
* Add node 6.10.1, remove node 6.9.5
(https://www.pivotaltracker.com/story/show/142185261)
* Add node 7.7.3, remove node 7.5.0
(https://www.pivotaltracker.com/story/show/141738953)
* Add node 7.7.4, Remove node 7.6.0
(https://www.pivotaltracker.com/story/show/142188245)
(https://www.pivotaltracker.com/story/show/141360971)
* Add yarn 0.22.0, remove yarn 0.21.2
(https://www.pivotaltracker.com/story/show/141155101)
(https://www.pivotaltracker.com/story/show/140681333)
* Add support for supply buildpacks
(https://www.pivotaltracker.com/story/show/141616657)
* Use pessimistic locking on ruby version in Gemfile
(https://www.pivotaltracker.com/story/show/140770891)
v1.5.30 Feb 27, 2017
=====================
* Add node 7.6.0 remove node 7.4.0
(https://www.pivotaltracker.com/story/show/140375739)
* Add node 6.10.0 remove node 6.9.4
(https://www.pivotaltracker.com/story/show/140375739)
* Add node 4.8.0 remove node 4.7.2
(https://www.pivotaltracker.com/story/show/140373175)
* Add yarn 0.21.2, remove yarn 0.20.0
(https://www.pivotaltracker.com/story/show/139882371)
v1.5.29 Feb 07, 2017
=====================
* Add EOL dates for node
(https://www.pivotaltracker.com/story/show/137288317)
* Add node 7.5.0, remove node 7.3.0
(https://www.pivotaltracker.com/story/show/138780181)
* Add node 6.9.5, remove node 6.9.3
(https://www.pivotaltracker.com/story/show/138771375)
* Add node 4.7.3, remove node 4.7.1
(https://www.pivotaltracker.com/story/show/138773607)
* Add yarn 0.20.0, remove yarn 0.19.1
(https://www.pivotaltracker.com/story/show/138614091)
v1.5.28 Jan 24, 2017
=====================
* Remove node 0.12.x version line
(https://www.pivotaltracker.com/story/show/136591333)
* Remove node 5.x version line
(https://www.pivotaltracker.com/story/show/136591333)
* Add yarn 0.19.1, remove yarn 0.19.0
(https://www.pivotaltracker.com/story/show/138003527)
* Add yarn to cached buildpack
(https://www.pivotaltracker.com/story/show/136510177)
v1.5.27 Jan 10, 2017
=====================
* Catch excecptions from buildpack version warning scripts
- Under some non-standard CF deployment configurations, it was possible for these scripts to
error out. As they are purely informative, this should never happen.
(https://www.pivotaltracker.com/story/show/137351597)
v1.5.26 Jan 09, 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 nodejs buildpack
(https://www.pivotaltracker.com/story/show/135234395)
* Yarn support added, activated if yarn.lock file present
(https://www.pivotaltracker.com/story/show/136345251)
* Add node 7.4.0, remove node 7.2.1
(https://www.pivotaltracker.com/story/show/137044385)
* Add node 7.3.0, remove node 7.2.0
(https://www.pivotaltracker.com/story/show/136461121)
* Add node 6.9.4, remove node 6.9.2
(https://www.pivotaltracker.com/story/show/137135283)
* Add node 6.9.3, remove node 6.9.1
(https://www.pivotaltracker.com/story/show/136991485)
* Add node 4.7.2, remove node 4.7.0
(https://www.pivotaltracker.com/story/show/137135283)
* Add node 4.7.1, remove node 4.6.2
(https://www.pivotaltracker.com/story/show/136994135)
* Add node 0.12.18, remove node 0.12.16
(https://www.pivotaltracker.com/story/show/136501265)
v1.5.25 Dec 15, 2016
=====================
* Add node 7.2.1, remove node 7.1.0
(https://www.pivotaltracker.com/story/show/135658433)
* Add node 6.9.2, remove node 6.9.0
(https://www.pivotaltracker.com/story/show/135643989)
* Add node 4.7.0, remove node 4.6.1
(https://www.pivotaltracker.com/story/show/135648535)
v1.5.24 Dec 01, 2016
=====================
* Add node 7.2.0, remove node 7.0.0
(https://www.pivotaltracker.com/story/show/134823269)
* Provide a "protip" when Node.js modules are not vendored
(https://www.pivotaltracker.com/story/show/116369631)
* Rebuild and change path for node binaries
- 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.5.23 Nov 09, 2016
=====================
* Add node 7.1.0
(https://www.pivotaltracker.com/story/show/133966203)
* Add node 7.0.0
(https://www.pivotaltracker.com/story/show/133105865)
* Add node 6.9.1, remove node 6.8.1
(https://www.pivotaltracker.com/story/show/132796533)
* Add node 4.6.2, remove node 4.6.0
(https://www.pivotaltracker.com/story/show/133955125)
* Remove node 0.10.47 and 0.10.48
- Node.js 0.10.x support ends on October 31st, 2016
- Node.js 0.10.x will no longer be in the nodejs-buildpack
(https://www.pivotaltracker.com/story/show/132026695)
* Ensure all downloaded binaries have checksums verified
(https://www.pivotaltracker.com/story/show/128099189)
* Remove vendored node binary executable
(https://www.pivotaltracker.com/story/show/128498051)
v1.5.22 Oct 19, 2016
=====================
* Add node 6.9.0 and 6.8.1, remove node 6.6.0 and 6.7.0
(https://www.pivotaltracker.com/story/show/132362527)
(https://www.pivotaltracker.com/story/show/132362087)
(https://www.pivotaltracker.com/story/show/132198199)
(https://www.pivotaltracker.com/story/show/132691907)
* Add node 0.10.48, remove node 0.10.46
(https://www.pivotaltracker.com/story/show/132686391)
* Add node 0.12.17, remove node 0.12.15
(https://www.pivotaltracker.com/story/show/132686391)
* Add node 4.6.1, remove node 4.5.0
(https://www.pivotaltracker.com/story/show/132686391)
* Address USN-3087-1: OpenSSL vulnerabilities with node 6.8.1 and 6.9.0
(https://www.pivotaltracker.com/story/show/130992485)
* NOTICE: Node.js 0.10 will be removed after October 31, 2016 due to end of LTS
(https://www.pivotaltracker.com/story/show/132026695)
v1.5.21 Sep 28, 2016
=====================
* Address USN-3087-1: OpenSSL vulnerabilities by updating node.
The new versions of node included in this buildpack are built
against the patched version of OpenSSL
(https://www.pivotaltracker.com/story/show/130945067)
* Add node 0.10.47, remove node 0.10.45
(https://www.pivotaltracker.com/story/show/131225127)
* Add node 0.12.16, remove node 0.12.14
(https://www.pivotaltracker.com/story/show/131225127)
* Add node 4.6.0, remove node 4.4.7
(https://www.pivotaltracker.com/story/show/131225127)
* Add node 6.7.0, remove node 6.5.0
(https://www.pivotaltracker.com/story/show/131225127)
v1.5.20 Sep 19, 2016
=====================
* Add node 6.6.0, remove node 6.4.0
(https://www.pivotaltracker.com/story/show/130488207)
* Remove Heroku references from staging output
(https://www.pivotaltracker.com/story/show/127931269)
v1.5.19 Sep 01, 2016
=====================
* Add node 4.5.0, remove node 4.4.6
(https://www.pivotaltracker.com/story/show/128431641)
* Add node 6.4.0, remove node 6.3.0
(https://www.pivotaltracker.com/story/show/128863283)
* Add node 6.5.0, remove node 6.3.1
(https://www.pivotaltracker.com/story/show/129366607)
* Add support for New Relic configuration through service binding
(https://www.pivotaltracker.com/story/show/110040634)
* Filter credentials from dependency urls printed during staging
(https://www.pivotaltracker.com/story/show/126514693)
* Add default_versions support for specifying node default version
(https://www.pivotaltracker.com/story/show/126394943)
v1.5.18 Jul 25, 2016
=====================
* Add nodejs 6.3.1, remove nodejs 6.2.2
(https://www.pivotaltracker.com/story/show/126830705)
v1.5.17 Jul 15, 2016
=====================
* Make buildpacks.cloudfoundry.org the default url for buildpack dependencies
(https://www.pivotaltracker.com/story/show/121757949)
* Update node to 4.4.7
(https://www.pivotaltracker.com/story/show/123264921)
* Update node to 6.3.0
(https://www.pivotaltracker.com/story/show/125266811)
v1.5.16 Jun 28, 2016
=====================
* Add nodejs 0.10.46, remove nodejs 0.10.44
(https://www.pivotaltracker.com/story/show/122177127)
* Add nodejs 0.12.15, remove nodejs 0.12.13
(https://www.pivotaltracker.com/story/show/122177127)
* Add nodejs 4.4.6, remove nodejs 4.4.4
(https://www.pivotaltracker.com/story/show/122177127)
* Add nodejs 5.12.0, remove nodejs 5.10.1
(https://www.pivotaltracker.com/story/show/122177127)
* Add nodejs 6.2.2. Remove nodejs 6.2.0
(https://www.pivotaltracker.com/story/show/121759045)
v1.5.15 Jun 08, 2016
=====================
* Add nodejs 6.2.0 and 6.2.1, remove nodejs 6.0.0 and 6.1.0
(https://www.pivotaltracker.com/story/show/120806559)
(https://www.pivotaltracker.com/story/show/119775517)
* Add nodejs 4.4.5, remove nodejs 4.4.3
(https://www.pivotaltracker.com/story/show/120225945)
* Add a helpful error message for case where npm fails to download
(https://www.pivotaltracker.com/story/show/118775597)
v1.5.14 May 06, 2016
=====================
* Bump versions of nodejs to address openssl vulnerabilities
More information can be found here
https://nodejs.org/en/blog/vulnerability/openssl-may-2016/
Version changes:
- Replace 0.10.43 with 0.10.45
- Replace 0.12.12 with 0.12.14
- Replace 4.4.2 with 4.4.4
- Replace 5.11.0 with 5.11.1
- Add 6.1.0
(https://www.pivotaltracker.com/story/show/119080687)
(https://www.pivotaltracker.com/story/show/119053109)