forked from cloudfoundry/php-buildpack
-
Notifications
You must be signed in to change notification settings - Fork 3
/
CHANGELOG
1808 lines (1278 loc) · 55.9 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
v4.3.76 May 01, 2019
=====================
* Add nginx 1.16.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/165612537)
v4.3.75 Apr 23, 2019
=====================
* Remove warning logs causing bosh cli error
* Add appdynamics 4.5.9.2753, remove appdynamics 4.5.8.2700
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165489583)
* Add nginx 1.15.12, remove nginx 1.15.11
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165387664)
v4.3.74 Apr 12, 2019
=====================
* Add composer 1.8.5, remove composer 1.8.4
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165221414)
* Add nginx 1.15.11, remove nginx 1.15.10
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165215032)
* Add php 7.1.28, remove php 7.1.26
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165128941)
* Add php 7.2.17, remove php 7.2.15
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165125089)
v4.3.73 Apr 04, 2019
=====================
* Add php 7.3.4, remove php 7.3.2
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/165119913)
* Add httpd 2.4.39, remove httpd 2.4.38
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165044236)
* Add nginx 1.15.10, remove nginx 1.15.9
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164899138)
* Add appdynamics 4.5.8.2700, remove appdynamics 4.5.7.2661
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164895105)
v4.3.72 Mar 08, 2019
=====================
* Remove php 5.x and 7.0.x
(https://www.pivotaltracker.com/story/show/163160136)
* Add php 7.1.27, remove php 7.1.25
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164462657)
* Add php 7.2.16, remove php 7.2.14
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164460548)
* Add php 7.3.3, remove php 7.3.1
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/164459111)
* Add appdynamics 4.5.7.2661, remove appdynamics 4.5.7.2643
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164457940)
v4.3.71 Mar 01, 2019
=====================
* Add php 7.2.15, remove php 7.2.13
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163787459)
* Add composer 1.8.4, remove composer 1.8.3
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163860100)
* Add php 7.3.2, remove php 7.3.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/163787462)
* Add nginx 1.15.9, remove nginx 1.15.8
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164249501)
* Add appdynamics 4.5.7.2643, remove appdynamics 4.5.6.2534
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164136366)
* Check if proxy env is empty before adding the handler
* Updates to the Dynatrace extension
- Set logging to stdout by default.
- Don't explicitly set the host ID, the agent will do so automatically.
- Support config entry "location" for the service
* Add source and source_sha256 to buildpack manifest
(https://www.pivotaltracker.com/story/show/163711928)
(https://www.pivotaltracker.com/story/show/163114792)
* Update PHP Extensions
(https://www.pivotaltracker.com/story/show/162899806)
* Check if proxy env is empty before adding the handler
In cases where the variable is set but empty, the handler is added
and download may fail as urllib can't parse the host.
v4.3.70 Jan 31, 2019
=====================
* Add composer 1.8.3, remove composer 1.8.2
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163583504)
* Add libzip and remove zlib
(https://www.pivotaltracker.com/story/show/163115785)
* Add php 7.3.0, 7.3.1, and adds a default php-fpm.conf file for 7.3.x
(https://www.pivotaltracker.com/story/show/163115785)
* Add php 7.3.1, remove php 7.3.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/163115785)
* Add php 7.3.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/162482741)
* Adds PHP_73_LATEST value to options.json
(https://www.pivotaltracker.com/story/show/163115785)
* Add httpd 2.4.38, remove httpd 2.4.37
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163412491)
v4.3.69 Jan 22, 2019
=====================
* Add php 5.6.40, remove php 5.6.38
for stack(s) cflinuxfs2
(https://www.pivotaltracker.com/story/show/163136458)
* Add php 7.1.26, remove php 7.1.24
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163130351)
* Add appdynamics 4.5.6.2534, remove appdynamics 4.5.5.2452
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163132156)
* Add php 7.2.14, remove php 7.2.12
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/163114792)
v4.3.68 Jan 08, 2019
=====================
* Added support for maxmind extension
(https://www.pivotaltracker.com/story/show/156570432)
* Add nginx 1.15.8, remove nginx 1.15.7
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162839811)
v4.3.67 Dec 18, 2018
=====================
* Add sqlsrv and pdo_sqlsrv to php7 on cflinuxfs3
(https://www.pivotaltracker.com/story/show/162546591)
v4.3.66 Dec 07, 2018
=====================
* Add appdynamics 4.5.5.2452, remove appdynamics 4.5.4.2296
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162499475)
* Add php 7.2.13, remove php 7.2.11
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162483893)
* Add php 7.1.25, remove php 7.1.23
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162483894)
* Add php 7.0.33, remove php 7.0.31
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162494097)
* Add php 5.6.39, remove php 5.6.37
for stack(s) cflinuxfs2
(https://www.pivotaltracker.com/story/show/162481819)
* Add nginx 1.14.2, remove nginx 1.14.1
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162417429)
v4.3.65 Dec 04, 2018
=====================
* Add composer 1.8.0, remove composer 1.7.3
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162377924)
* Add fix for redis extension
(https://www.pivotaltracker.com/story/show/162054194)
* Add nginx 1.15.7, remove nginx 1.15.6
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162240857)
* Add appdynamics 4.5.4.2296, remove appdynamics 4.5.2.2042
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162088431)
* Add php 7.1.24, remove php 7.1.21
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161816597)
* Add php 7.2.12, remove php 7.2.9
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161809024)
v4.3.64 Nov 07, 2018
=====================
* Add nginx 1.15.6, remove nginx 1.15.5
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161755150)
* Add nginx 1.14.1, remove nginx 1.14.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161755152)
* Add composer 1.7.3, remove composer 1.7.2
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161644852)
* Fix composer_install_options env var by passing it as a space separated string
(https://www.pivotaltracker.com/story/show/155737946)
* Merge pull request #253 from pbleuse-orange/develop
Fix COMPOSER_INSTALL_OPTIONS ignored
v4.3.63 Oct 29, 2018
=====================
* Add httpd 2.4.37, remove httpd 2.4.35
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161436928)
* Rebuild php 7.2.9
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/159835693)
* Rebuild php 7.2.11
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161153116)
v4.3.62 Oct 17, 2018
=====================
* Update default 7.2 version to 7.2.11
* Update apr in httpd extension from 1.6.3 to 1.6.5
(https://www.pivotaltracker.com/story/show/160525215)
* Add php 7.2.11, remove php 7.2.8
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161153116)
* Add php 7.1.23, remove php 7.1.20
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161153113)
* Add php 7.0.32, remove php 7.0.30
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/160479340)
* Add php 5.6.38, remove php 5.6.36
for stack(s) cflinuxfs2
(https://www.pivotaltracker.com/story/show/160493043)
* Add nginx 1.15.5, remove nginx 1.15.3
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/160928056)
* Add appdynamics 4.5.2.2042, remove appdynamics 4.5.1.1831
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/160843068)
* Add httpd 2.4.35, remove httpd 2.4.34
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/160707119)
* Merge pull request #38: Compile PHP w/Argon2 support & add sodium extension
(https://www.pivotaltracker.com/story/show/160094524)
* Merge pull request #277 from dmikusa-pivotal/develop
Set LD_LIBRARY_PATH when calling 'php' to list available modules.
(https://www.pivotaltracker.com/story/show/160093961)
v4.3.61 Sep 11, 2018
=====================
* Add newrelic 8.1.0.209 for cflinuxfs3
* Add appdynamics 4.5.1.1831, remove appdynamics 4.5.0.1686
for stacks cflinuxfs2, cflinuxfs3 [#160195526]
* Add nginx 1.15.3, remove nginx 1.15.2
for stacks cflinuxfs2, cflinuxfs3 [#160100616]
v4.3.60 Aug 24, 2018
=====================
* Enable igbinary serialization for Redis.
(https://www.pivotaltracker.com/story/show/158964915)
* Add php 7.1.21, remove php 7.1.19
(https://www.pivotaltracker.com/story/show/159897706)
* Add php 7.2.9, remove php 7.2.7,
and update default version to 7.2.9
(https://www.pivotaltracker.com/story/show/159835693)
* Add composer 1.7.2, remove composer 1.6.5
(https://www.pivotaltracker.com/story/show/159828533)
(https://www.pivotaltracker.com/story/show/159594183)
v4.3.59 Aug 02, 2018
=====================
* Rebuild php 7.0.30, 7.0.31, 7.1.19, 7.1.20, 7.2.7, 7.2.8
for stacks cflinuxfs2, cflinuxfs3
* Add appdynamics 4.5.0.1686, remove appdynamics 4.5.0.1547
for stacks cflinuxfs2, cflinuxfs3 [#159457304]
* Rebuild nginx 1.14.0, 1.14.0, 1.15.1, 1.15.2
for stacks cflinuxfs3 [#159252955]
* Rebuild httpd 2.4.34
for stacks cflinuxfs3 [#159251990]
* Add composer 1.7.0-RC, remove composer 1.6.5
for stacks cflinuxfs2, cflinuxfs3 [#159270623]
* Rebuild CAAPM 10.7.0
for stacks cflinuxfs2, cflinuxfs3 [#159251493]
* Change default php version from 5.6.36 to 7.2.8.
(https://www.pivotaltracker.com/story/show/144939015)
* Updates for supporting stacks.
(https://www.pivotaltracker.com/story/show/144939015)
v4.3.58 Jul 20, 2018
=====================
* Add php 5.6.37, remove php 5.6.35
(https://www.pivotaltracker.com/story/show/159190033)
* Add php 7.0.31, remove php 7.0.29
(https://www.pivotaltracker.com/story/show/159184032)
* Add php 7.1.20, remove php 7.1.17
(https://www.pivotaltracker.com/story/show/159191900)
* Add php 7.2.8, remove php 7.2.5
(https://www.pivotaltracker.com/story/show/159166665)
* Add appdynamics 4.5.0.1547, remove appdynamics 4.4.3.1216
(https://www.pivotaltracker.com/story/show/159025420)
(https://www.pivotaltracker.com/story/show/158976533)
* Add httpd 2.4.34, remove httpd 2.4.33
(https://www.pivotaltracker.com/story/show/159095662)
* Add nginx 1.15.1, remove nginx 1.15.0
(https://www.pivotaltracker.com/story/show/158800160)
v4.3.57 Jun 26, 2018
=====================
* Add php 7.1.19, remove 7.1.16
(https://www.pivotaltracker.com/story/show/158502251)
* Add php 7.2.7, remove 7.2.4
(https://www.pivotaltracker.com/story/show/158468183)
v4.3.56 Jun 05, 2018
=====================
* Support packaging with associated stacks
(https://www.pivotaltracker.com/story/show/153256959)
* Add nginx 1.15.0, remove nginx 1.13.12
(https://www.pivotaltracker.com/story/show/158114558)
* Remove nginx 1.12.2.
(https://www.pivotaltracker.com/story/show/156851318)
v4.3.55 May 15, 2018
=====================
* Add default version for CA APM agent
(https://www.pivotaltracker.com/story/show/157446795)
* Update default version of newrelic
(https://www.pivotaltracker.com/story/show/157204067)
* Add newrelic 8.1.0.209, remove newrelic 8.0.0.204
(https://www.pivotaltracker.com/story/show/157204067)
* Add ca_apm_php_agent 10.7.0
(https://www.pivotaltracker.com/story/show/157443324)
(https://www.pivotaltracker.com/story/show/157446795)
* Update default httpd version to latest
(https://www.pivotaltracker.com/story/show/157256902)
* Add httpd 2.4.33, remove httpd 2.4.29
(https://www.pivotaltracker.com/story/show/157256902)
* Add appdynamics 4.4.3.1216, remove appdynamics 4.4.2.861
(https://www.pivotaltracker.com/story/show/157375734)
v4.3.54 May 08, 2018
=====================
* Rebuild php binaries to include GeoIP fix from v4.3.52
(https://www.pivotaltracker.com/story/show/157287202)
* Add appdynamics 4.4.3.1216, remove appdynamics 4.4.2.849
(https://www.pivotaltracker.com/story/show/157375734)
(https://www.pivotaltracker.com/story/show/157323165)
* Add composer 1.6.5, remove composer 1.6.4
(https://www.pivotaltracker.com/story/show/157310510)
v4.3.53 Apr 27, 2018
=====================
* Address MS-ISAC ADVISORY NUMBER 2018-046
(https://www.cisecurity.org/advisory/multiple-vulnerabilities-in-php-could-allow-for-arbitrary-code-execution_2018-046/)
* Add php 7.1.17, 5.6.36; remove 7.1.15, 5.6.34
* Add php 7.2.5, 7.0.30; remove 7.2.3, 7.0.28
(https://www.pivotaltracker.com/story/show/157055578)
(https://www.pivotaltracker.com/story/show/157047336)
* Update AppDynamics agent to 4.4.2.849
(https://www.pivotaltracker.com/story/show/154849536)
* Add nginx 1.14.0
(https://www.pivotaltracker.com/story/show/156851318)
(https://www.pivotaltracker.com/story/show/156851407)
* Remove xdebug from php 7.2.X modules
(https://www.pivotaltracker.com/story/show/156421465)
* Move auth.json with composer.json, composer.lock if it exists
(https://www.pivotaltracker.com/story/show/156248131)
* Add memcached support for php 7.0-7.2
(https://www.pivotaltracker.com/story/show/150392071)
v4.3.52 Apr 16, 2018
=====================
* Due to GeoIP's deprecation of legacy (GeoLite) databases, only the following product IDs are supported under the free license: GeoLite-Legacy-IPv6-City, GeoLite-Legacy-IPv6-Country, 506 (GeoLite Country), 533 (GeoLite City), 517 (GeoLite ASN).
* Correct CHANGELOG in previous release versions
- Correct v4.3.38: 'Add php 5.6.21' -> 'Add php 5.6.31', 'Remove php 5.6.19' -> 'Remove php 5.6.29'
- Correct v4.3.38: 'Add php 5.6.24' -> 'Add php 5.6.34', 'Remove php 5.6.22' -> 'Remove php 5.6.32'
* Add support for symlinks
* Add tideways extension (fork of xhprof)
(https://github.com/cloudfoundry/binary-builder/pull/36)
* Build readline extension as a shared library
(https://github.com/cloudfoundry/binary-builder/pull/35/files)
* Update php versions
- Add 5.6.35, remove 5.6.33
- Add 7.0.29, remove 7.0.27
- Add 7.1.16, remove 7.1.14
- Add 7.2.4, remove 7.2.2
(https://www.pivotaltracker.com/story/show/156360825)
(https://www.pivotaltracker.com/story/show/156311968)
(https://www.pivotaltracker.com/story/show/156317041)
* Add nginx 1.13.12, remove nginx 1.13.9
(https://www.pivotaltracker.com/story/show/156657474)
(https://www.pivotaltracker.com/story/show/156133474)
(https://www.pivotaltracker.com/story/show/156134095)
* Add composer 1.6.4, remove composer 1.6.3
(https://www.pivotaltracker.com/story/show/156757128)
* Merge pull request #254 from CATechnologies/master
- Upgrades CA APM PHP Probe Agent to 10.7
* Add new relic agent 8.0.0.204, remove 7.7.0.203
(https://www.pivotaltracker.com/story/show/155922520)
v4.3.51 Mar 09, 2018
=====================
* Add PHP 5.6.34, 7.0.28, 7.1.15, 7.2.3
Remove 5.6.32, 7.0.26, 7.1.13, 7.2.1
(https://www.pivotaltracker.com/story/show/155576142)
(https://www.pivotaltracker.com/story/show/155586941)
(https://www.pivotaltracker.com/story/show/155589446)
(https://www.pivotaltracker.com/story/show/155551598)
(https://www.pivotaltracker.com/story/show/155610585)
* Build PHP to use readline as a shared library
(https://www.pivotaltracker.com/story/show/155375913)
* Add 4 new PHP extensions: sysvsem, sysvshm, sysvmsg and shmop.
(https://www.pivotaltracker.com/story/show/155141488)
* Add 4 new PECL extensions: LZF, oauth, stomp, and yaml
(https://www.pivotaltracker.com/story/show/155348301)
* Fix ioncube & phalcon for PHP 7.1
(https://www.pivotaltracker.com/story/show/155349336)
v4.3.50 Feb 27, 2018
=====================
* Add nginx 1.13.9, remove nginx 1.13.8
(https://www.pivotaltracker.com/story/show/155362465)
(https://www.pivotaltracker.com/story/show/155361191)
v4.3.49 Feb 12, 2018
=====================
* Update PHP Modules
- redis 3.1.4 to 3.1.6 for all
- xdebug 2.5.5 to 2.6.0 for php7
- xdebug 2.6.0 introduced to php72
- ioncube 6.1.0 to 10.1.1 for php5, php7
- ioncube 10.0.4 to 10.1.1 for php72
- phalcon 3.2.4 to 3.3.1 for all
- phpprotobufpecl 0.12.0 introduced to php7, php72
- yaf 3.0.5 to 3.0.6 for php7, php72
- lua 2.0.4 to 2.0.5 for php7, php72
(https://www.pivotaltracker.com/story/show/153979417)
* Add php 7.1.14, remove 7.1.12
(https://www.pivotaltracker.com/story/show/154780800)
* Add php 7.2.2, remove 7.2.0
(https://www.pivotaltracker.com/story/show/154760743)
* Add composer 1.6.3, remove composer 1.6.2
(https://www.pivotaltracker.com/story/show/154808172)
v4.3.48 Jan 26, 2018
=====================
* Set newrelic php agent logfile
(https://www.pivotaltracker.com/story/show/154434353)
* Parse NEWRELIC_LICENSE from VCAP_SERVICES at runtime
(https://www.pivotaltracker.com/story/show/154393877)
* Add newrelic agent 7.7.0.203, remove 7.6.0.201
(https://www.pivotaltracker.com/story/show/154221500)
v4.3.47 Jan 05, 2018
=====================
* Add php 7.2.1
(https://www.pivotaltracker.com/story/show/154057675)
* Add composer 1.6.2, remove composer 1.5.5
(https://www.pivotaltracker.com/story/show/154089509)
(https://www.pivotaltracker.com/story/show/154050459)
(https://www.pivotaltracker.com/story/show/153787005)
(https://www.pivotaltracker.com/story/show/154052768)
(https://www.pivotaltracker.com/story/show/153780580)
* Add php 7.1.13, removed php 7.1.11
(https://www.pivotaltracker.com/story/show/154013043)
* Add php 7.0.27, removed php 7.0.25
(https://www.pivotaltracker.com/story/show/153987146)
* Add php 5.6.33, remove php 5.6.31
(https://www.pivotaltracker.com/story/show/154011603)
* Don't write new relic license key into droplet
(https://www.pivotaltracker.com/story/show/146159399)
* Add nginx 1.13.8, remove nginx 1.13.7
(https://www.pivotaltracker.com/story/show/153910485)
* Remove newrelic creds from php ini file
(https://www.pivotaltracker.com/story/show/146159399)
* Clear cache when changing cache/composer path meaning
(https://www.pivotaltracker.com/story/show/152304260)
* Merge pull request #231 from dmikusa-pivotal/develop
Enable installing global Composer packages.
* Merge pull request #234 from arthfl/develop
Lots of additions to the Dynatrace extension
* Update ioncube in PHP 7.2.0 to 10.0.4
(https://www.pivotaltracker.com/story/show/153563813)
* added detection of multiple dynatrace credential services
* Enable installing global Composer packages.
List of changes:
- add COMPOSER_HOME, which dictates where Composer stores it's config
- move default COMPOSER_CACHE_DIR under COMPOSER_HOME
- create a global composer runner with its own COMPOSER_VENDOR_DIR and COMPOSER_BIN_DIR, these are both under COMPOSER_HOME
- use the global composer running to install global packages listed in COMPOSER_INSTAL_GLOBAL
- COMPOSER_INSTALL_GLOBAL is set in `defaults/options.json` and is an empty list, app dev's can add this property their own `.bp-config/options.json` and specify their own list of packages to install.
- Added `COMPOSER_HOME/bin` to the PATH when Composer runs to install the project's packages. This enables users to run globally installed package binaries & scripts without needing the full path to the script.
v4.3.46 Dec 11, 2017
=====================
* Update php modules
amqp 1.9.1 to 1.9.3 for all
cassandra 1.2.2 to 1.3.2 for php7
cassandracppdriver 2.7.0 to 2.8.0 for all
igbinary 2.0.4 to 2.0.5 for all
librdkafka 0.11.0 to 0.11.3 for all
mongodb 1.3.1 to 1.3.4 for all
phalcon 3.2.3 to 3.2.4 for all
rdkafka 3.0.4 to 3.0.5 for all
twig 1.34.4 to 1.35.0 for php5
(https://www.pivotaltracker.com/story/show/153313445)
* Add PHP 7.2.0
(https://www.pivotaltracker.com/story/show/153210066)
v4.3.45 Dec 01, 2017
=====================
* Add composer 1.5.5, remove composer 1.5.2
(https://www.pivotaltracker.com/story/show/153317429)
(https://www.pivotaltracker.com/story/show/153314270)
(https://www.pivotaltracker.com/story/show/153293766)
* Add PHP 7.1.12, Remove PHP 7.1.10
(https://www.pivotaltracker.com/story/show/153096036)
* Add PHP 7.0.26, Remove PHP 7.0.24
(https://www.pivotaltracker.com/story/show/153051750)
* Add nginx 1.13.7, remove nginx 1.13.6
(https://www.pivotaltracker.com/story/show/153060280)
v4.3.44 Nov 06, 2017
=====================
* Add php 5.6.32, 7.0.25, 7.1.11. Remove php 5.6.30, 7.0.23, 7.1.9
(https://www.pivotaltracker.com/story/show/152265343)
(https://www.pivotaltracker.com/story/show/152243439)
(https://www.pivotaltracker.com/story/show/152246247)
* Add httpd 2.4.29. Remove httpd 2.4.28
(https://www.pivotaltracker.com/story/show/152049482)
* Verify dependency downloads using sha256 instead of md5
(https://www.pivotaltracker.com/story/show/151913767)
* Store profile.d dir outside app directory on recent BAL
(https://www.pivotaltracker.com/story/show/151381690)
* Update PHP modules in latest of each version line
- librdkafka 0.11.0 to 0.11.1 for php7
- igbinary 2.0.1 to 2.0.4 for both
- mongodb 1.2.10 to 1.3.1 for both
- redis 3.1.3 to 3.1.4 for both
- phalcon 3.2.2 to 3.2.3 for both
- oci8 2.1.3 to 2.1.8 for php7
(https://www.pivotaltracker.com/story/show/151583193)
* Add nginx 1.12.2, Remove nginx 1.12.1
(https://www.pivotaltracker.com/story/show/152037281)
* Add newrelic agent 7.6.0.201, remove 7.5.0.199
(https://www.pivotaltracker.com/story/show/151856256)
v4.3.43 Oct 12, 2017
=====================
* Add php 7.1.10, remove 7.1.8
(https://www.pivotaltracker.com/story/show/151454553)
* Add php 7.0.24, remove 7.0.22
(https://www.pivotaltracker.com/story/show/151431933)
* Add httpd 2.4.28, remove httpd 2.4.27
(https://www.pivotaltracker.com/story/show/151371394)
* Add nginx 1.13.6, remove nginx 1.13.5
(https://www.pivotaltracker.com/story/show/151849194)
* AppDynamics PHP Agent Support
(https://www.pivotaltracker.com/story/show/151305892)
* CA APM PHP Agent support
(https://www.pivotaltracker.com/story/show/151127931)
* Add libraries for gnupg
(https://www.pivotaltracker.com/story/show/150417054)
v4.3.42 Sep 20, 2017
=====================
* Update PHP modules
- cassandra 1.3.0 to 1.3.2 for php5
- cassandracppdriver 2.5.0 to 2.7.0 for php7
- rdkafka 3.0.3 to 3.0.4 for both
- mongo 1.6.14 to 1.6.16 for php5
- mongodb 1.2.9 to 1.2.10 for both
- phalcon 3.2.1 to 3.2.2 for both
(https://www.pivotaltracker.com/story/show/150737604)
* Handle unicode in environment variables
(https://www.pivotaltracker.com/story/show/150795910)
* Add composer 1.5.2, remove composer 1.5.1
(https://www.pivotaltracker.com/story/show/150975337)
* Add nginx 1.12.1, Remove nginx 1.12.0
(https://www.pivotaltracker.com/story/show/148042987)
* Change nginx build to use PIE and BIND_NOW
(https://www.pivotaltracker.com/story/show/148042987)
v4.3.41 Sep 05, 2017
=====================
* Add php 7.0.23 and 7.1.9, remove php 7.0.21 and 7.1.7
(https://www.pivotaltracker.com/story/show/150631046)
(https://www.pivotaltracker.com/story/show/150682567)
* Update newrelic to 7.5.0.199
(https://www.pivotaltracker.com/story/show/150645860)
v4.3.40 Aug 14, 2017
=====================
* Add composer 1.5.1, remove composer 1.4.2
(https://www.pivotaltracker.com/story/show/150115952)
(https://www.pivotaltracker.com/story/show/150039477)
(https://www.pivotaltracker.com/story/show/149987727)
* Add nginx 1.13.4, remove nginx 1.13.3
(https://www.pivotaltracker.com/story/show/150049446)
* Set LATEST php versions
* Add PHP 7.1.8, Remove PHP 7.1.6
(https://www.pivotaltracker.com/story/show/149857562)
* Add PHP 7.0.22, Remove PHP 7.0.20
(https://www.pivotaltracker.com/story/show/149843198)
* Reuild all PHPs for updated modules
- librdkafka
- luapecl
- redis
(https://www.pivotaltracker.com/story/show/149839584)
v4.3.39 Jul 31, 2017
=====================
* Add UnixODBC and PHP's pdo_odbc extension
(https://www.pivotaltracker.com/story/show/149227375)
v4.3.38 Jul 13, 2017
=====================
* Add php 5.6.31, 7.0.21, 7.1.7 and remove php 5.6.29, 7.0.19, 7.1.5
(https://www.pivotaltracker.com/story/show/148386783)
(https://www.pivotaltracker.com/story/show/148292817)
(https://www.pivotaltracker.com/story/show/148307943)
* Rebuild all PHPs for updated modules
- amqp
- xdebug
- yaf
- phalcon
- twig
(https://www.pivotaltracker.com/story/show/148353651)
* Add httpd 2.4.27, remove httpd 2.4.26
(https://www.pivotaltracker.com/story/show/148433893)
* Add nginx 1.13.3, remove nginx 1.13.2
(https://www.pivotaltracker.com/story/show/148679499)
* Update newrelic agent version to 7.4.0.198
(https://www.pivotaltracker.com/story/show/147822451)
v4.3.37 Jul 10, 2017
=====================
* Log NGINX version during staging
(https://www.pivotaltracker.com/story/show/133860537)
v4.3.36 Jun 28, 2017
=====================
* Add nginx 1.13.2, remove nginx 1.13.1, 1.10.3, and 1.11.13
(https://www.pivotaltracker.com/story/show/147928939)
(https://www.pivotaltracker.com/story/show/145128617)
* Add php 7.1.6 and 7.0.20, remove php 7.1.4 and 7.0.18
* Add httpd 2.4.26, remove 2.4.25
* Rebuild phps for new Cassandra driver
(https://www.pivotaltracker.com/story/show/146754721)
(https://www.pivotaltracker.com/story/show/146685849)
(https://www.pivotaltracker.com/story/show/147136505)
(https://www.pivotaltracker.com/story/show/147405177)
v4.3.35 Jun 15, 2017
=====================
* Rollback cassandra update
Latest cassandra/cppdriver combo appears not to work with PHP 5.6 and 7.x
(https://www.pivotaltracker.com/story/show/146861779)
* Rebuild all PHPs for updated modules
- rdkafka
- xdebug
- mongodb
- ioncube
(https://www.pivotaltracker.com/story/show/146443447)
v4.3.34 Jun 02, 2017
=====================
* Updated the dynatrace agent download url
(https://www.pivotaltracker.com/story/show/146008405)
* Bug fix: Ensure ordering of extensions. Composer must run last
(https://www.pivotaltracker.com/story/show/145511797)
* Add Multi buildpack support
(https://www.pivotaltracker.com/story/show/142852347)
* Add EOL links to deprecation warnings
(https://www.pivotaltracker.com/story/show/144943203)
* Add php 7.0.19, 7.1.5 and Remove 7.0.17, 7.1.3
(https://www.pivotaltracker.com/story/show/145114047)
(https://www.pivotaltracker.com/story/show/145117193)
* Add nginx 1.13.1, 1.13.0
(https://www.pivotaltracker.com/story/show/146295321)
* Add composer 1.4.2, remove composer 1.4.1
(https://www.pivotaltracker.com/story/show/145579479)
v4.3.33 May 08, 2017
=====================
* Enhance GeoIP extension
(https://www.pivotaltracker.com/story/show/141942891)
(https://www.pivotaltracker.com/story/show/141942891)
* Add dynatrace extension
(https://www.pivotaltracker.com/story/show/144465373)
* Rebuild all php versions for new modules
(https://www.pivotaltracker.com/story/show/144601633)
v4.3.32 May 01, 2017
=====================
* Allow more flexible PHP configuration
- .ini files in .bp-config/php/php.ini.d will be added to the config using PHP_INI_SCAN_DIR
- .conf files in .bp-config/php/fpm.d will be included in php-fpm.conf
- Add warning that PHP_EXTENSIONS in options.json is deprecated
(https://www.pivotaltracker.com/story/show/141979329)
* Add nginx 1.13.0
(https://www.pivotaltracker.com/story/show/144290507)
* Fix private ip space to be in accordance with best practices
(https://www.pivotaltracker.com/story/show/143949555)
* Re-add nginx 1.10.x line to manifest.yml
(https://www.pivotaltracker.com/story/show/143590265)
v4.3.31 Apr 18, 2017
=====================
* Add PHP 7.1.4 + 7.0.18, remove PHP 7.1.2 + 7.0.16
(https://www.pivotaltracker.com/story/show/143513693)
(https://www.pivotaltracker.com/story/show/143488233)
* Add nginx 1.12.0, remove nginx 1.10.3
(https://www.pivotaltracker.com/story/show/143590265)
* Add igbinary to PHP7 modules
(https://www.pivotaltracker.com/story/show/142891967)
* Rebuild all php versions for new modules
(https://www.pivotaltracker.com/story/show/142891967)
* Add nginx 1.11.13, remove nginx 1.11.12
(https://www.pivotaltracker.com/story/show/143052671)
v4.3.30 Mar 27, 2017
=====================
* Add nginx 1.11.12, remove nginx 1.11.10
(https://www.pivotaltracker.com/story/show/142401589)
* Add support for supply buildpacks
(https://www.pivotaltracker.com/story/show/141616657)
* Disable `opcache.validate_timestamps` by default.
(https://www.pivotaltracker.com/story/show/141889325)
v4.3.29 Mar 15, 2017
=====================
* Remove spurious 'extension is not provided' warning for extensions
compiled into PHP when case doesn't match
(https://www.pivotaltracker.com/story/show/140845631)
* Add PHP 7.1.3, remove PHP 7.1.1
(https://www.pivotaltracker.com/story/show/141690141)
* Add PHP 7.0.17, remove PHP 7.0.15
(https://www.pivotaltracker.com/story/show/141681989)
* Add composer 1.4.1, remove composer 1.3.2
(https://www.pivotaltracker.com/story/show/141476165)
(https://www.pivotaltracker.com/story/show/141348573)
(https://www.pivotaltracker.com/story/show/141298707)
* Rebuild all PHP versions for updated modules
(https://www.pivotaltracker.com/story/show/140832127)
* Log warning if PHP version specified is invalid
- PHP versions can be specified in either the options.json or the
composer.json
(https://www.pivotaltracker.com/story/show/128186261)
* Use semver when parsing version from composer.json
- replace '>=' with '~>' to maintain backwards compatibility
(https://www.pivotaltracker.com/story/show/140517213)
v4.3.28 Feb 27, 2017
=====================
* Add geoip PECL extension
(https://www.pivotaltracker.com/story/show/138843171)
* Ensure buildpack does not warn about extensions that are compiled into PHP
(https://www.pivotaltracker.com/story/show/138757115)
* Add nginx 1.11.10, remove nginx 1.11.9
(https://www.pivotaltracker.com/story/show/139833155)
* Add PHP 7.0.16, remove PHP 7.0.14
(https://www.pivotaltracker.com/story/show/139822511)
* Add PHP 7.1.2, remove PHP 7.1.0