forked from cloudfoundry/staticfile-buildpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1142 lines (759 loc) · 29.7 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.0 Feb 24, 2023
=====================
* Run dynatrace API fixture using cflinuxfs3 (until go bp is pubic available on cflinuxfs4) (#348)
* Rebuild nginx 1.23.3 (#347)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/184035115)
* Rebuild nginx 1.22.1 (#346)
for stack(s) cflinuxfs4, cflinuxfs3
(https://www.pivotaltracker.com/story/show/183579473)
* Add support for cflinuxfs4 stack
* Bump github.com/onsi/gomega from 1.27.0 to 1.27.1
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.27.0 to 1.27.1.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
...
* Bump golang.org/x/net from 0.6.0 to 0.7.0
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.6.0 to 0.7.0.
- [Release notes](https://github.com/golang/net/releases)
---
updated-dependencies:
- dependency-name: golang.org/x/net
...
* Updating github-config (#343 & #345)
v1.5.39 Feb 17, 2023
=====================
* update libbuildpack-dynatrace to 1.5.2
* Bump github.com/onsi/gomega from 1.26.0 to 1.27.0
v1.5.38 Feb 13, 2023
=====================
* Update libbuildpack
* Updating github-config (#331)
v1.5.37 Jan 13, 2023
=====================
* Add nginx 1.23.3, remove nginx 1.23.2
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/184035115)
v1.5.36 Dec 12, 2022
=====================
* Handle comma separated X-Forwarded-Proto
(https://github.com/cloudfoundry/staticfile-buildpack/pull/318)
v1.5.35 Nov 03, 2022
=====================
* Add nginx 1.23.2, remove nginx 1.23.1 for stack(s) cflinuxfs3
* Add nginx 1.22.1, remove nginx 1.22.0 for stack(s) cflinuxfs3
v1.5.34 Oct 13, 2022
=====================
* Update libbuildpack
v1.5.33 Aug 04, 2022
=====================
* Add nginx 1.23.1, remove nginx 1.23.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/182762707)
v1.5.32 Jul 08, 2022
=====================
* Add nginx 1.23.0, remove nginx 1.21.6 for stack(s) cflinuxfs3
* Deprecate Nginx 1.21.x (replaced by the new mainline version 1.23.x)
v1.5.31 Jun 10, 2022
=====================
* Deprecate Nginx 1.20.x
* Add nginx 1.22.0 for stack(s) cflinuxfs3
* Remove nginx estimated deprecation dates. They were causing confusion to users
v1.5.30 May 06, 2022
=====================
* Handle comma separated X-Forwarded-{Header,Prefix}
1. Proxies can technically set these headers with multiple comma separated
values. For XF-Host header, we were dumping the entire value into the
redirect thus creating invalid redirects like `301 https://host1,
host2`. With this change, we pick the leftmost comma separated value
to use for setting the redirect host location.
2. Add support for X-Forwarded-Prefix
Also in the edge case there are multiple comma separated values,
pick the leftmost.
E.g.
```
X-Forwarded-Host: host1, host2
X-Forwarded-Prefix: /pre/fix1, /pre/fix2
example.com/abc/def
```
will resolve to `301 https://host1/pre/fix1/abc/def`
Fixes #280
v1.5.29 Feb 10, 2022
=====================
* Add nginx 1.21.6, remove nginx 1.21.5
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/181032468)
v1.5.28 Jan 05, 2022
=====================
* Add nginx 1.21.5, remove nginx 1.21.4
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180755261)
v1.5.27 Dec 10, 2021
=====================
* Bump github.com/onsi/gomega from 1.14.0 to 1.17.0
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.14.0 to 1.17.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.14.0...v1.17.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
* Bump github.com/Dynatrace/libbuildpack-dynatrace from 1.4.1 to 1.4.2
Bumps [github.com/Dynatrace/libbuildpack-dynatrace](https://github.com/Dynatrace/libbuildpack-dynatrace) from 1.4.1 to 1.4.2.
- [Release notes](https://github.com/Dynatrace/libbuildpack-dynatrace/releases)
- [Commits](https://github.com/Dynatrace/libbuildpack-dynatrace/compare/v1.4.1...v1.4.2)
---
updated-dependencies:
- dependency-name: github.com/Dynatrace/libbuildpack-dynatrace
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Bump github.com/tidwall/gjson from 1.12.0 to 1.12.1
Bumps [github.com/tidwall/gjson](https://github.com/tidwall/gjson) from 1.12.0 to 1.12.1.
- [Release notes](https://github.com/tidwall/gjson/releases)
- [Commits](https://github.com/tidwall/gjson/compare/v1.12.0...v1.12.1)
---
updated-dependencies:
- dependency-name: github.com/tidwall/gjson
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Update libbuildpack
* Add nginx 1.20.2
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180330923)
* Add nginx 1.21.4, remove nginx 1.21.3
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/180167967)
v1.5.26 Oct 08, 2021
=====================
* Add Configurable HTTP/2 Support (#254)
v1.5.25 Sep 28, 2021
=====================
* Add nginx 1.21.3, remove nginx 1.21.1
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/179497106)
(https://www.pivotaltracker.com/story/show/179423127)
Bumped libbuildpack-dynatrace to 1.4.1
v1.5.24 Jul 14, 2021
=====================
* Adds integration suite matrix
* Add nginx 1.21.1, remove nginx 1.21.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/178784811)
v1.5.23 Jun 28, 2021
=====================
* Remove versions < 1.21.x
v1.5.22 Jun 11, 2021
=====================
* Add nginx 1.21.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/178449716)
* Add nginx 1.20.1, remove nginx 1.20.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/178286174)
* Bootstraps with github-config
* Update libbuildpack
v1.5.21 May 05, 2021
=====================
* Update libbuildpack
v1.5.20 Apr 27, 2021
=====================
* Add nginx 1.20.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/177855209)
v1.5.19 Apr 19, 2021
=====================
* Add nginx 1.19.10, remove nginx 1.19.9
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/177745818)
v1.5.18 Apr 05, 2021
=====================
* Add nginx 1.19.9, remove nginx 1.19.8
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/177562500)
v1.5.17 Mar 16, 2021
=====================
* Add nginx 1.19.8, remove nginx 1.19.7
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/177269723)
v1.5.16 Feb 22, 2021
=====================
* Add nginx 1.19.7, remove nginx 1.19.6
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/176964264)
v1.5.15 Dec 21, 2020
=====================
* Add nginx 1.19.6, remove nginx 1.19.5
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/176226343)
v1.5.14 Dec 01, 2020
=====================
* Add nginx 1.19.5, remove nginx 1.19.4
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/175876625)
v1.5.13 Nov 03, 2020
=====================
* Add nginx 1.19.4, remove nginx 1.19.3
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/175461734)
v1.5.12 Oct 05, 2020
=====================
* Add nginx 1.19.3, remove nginx 1.19.2
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/175040162)
v1.5.11 Sep 22, 2020
=====================
* Updated dynatrace module
v1.5.10 Aug 12, 2020
=====================
* Add nginx 1.19.2, remove nginx 1.19.1
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/174279605)
* Removes nginx 1.17.x and 1.18.x from dependencies
v1.5.9 Jul 13, 2020
====================
* Auto merge pull request 177
* Add nginx 1.19.1, remove nginx 1.19.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/173689583)
v1.5.8 Jul 06, 2020
====================
* Auto merge pull request 176
* Add nginx 1.18.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/172657425)
* Auto merge pull request 175
* Add nginx 1.19.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/173470659)
* Merge pull request #169 from rctay/patch-1
Convert tabs to spaces in template, which is space-indented
v1.5.7 May 12, 2020
====================
* Rebuild nginx 1.18.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/172657425)
* Rebuild nginx 1.17.10
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/172313698)
* Add nginx 1.18.0
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/172657425)
v1.5.6 Apr 23, 2020
====================
* Add nginx 1.17.10, remove nginx 1.17.9
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/172313698)
v1.5.5 Mar 09, 2020
====================
* Add nginx 1.17.9, remove nginx 1.17.8
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/171603146)
v1.5.4 Feb 03, 2020
====================
* Add nginx 1.17.8, remove nginx 1.17.7
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/170822217)
* Use latest Dynatrace Module
v1.5.3 Jan 03, 2020
====================
* Add nginx 1.17.7, remove nginx 1.17.6
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/170441395)
v1.5.2 Nov 25, 2019
====================
* Add nginx 1.17.6, remove nginx 1.17.5
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/169841590)
v1.5.1 Oct 31, 2019
====================
* Correct example.com text to be less change sensitive
* Add nginx 1.17.5, remove nginx 1.17.4
for stack(s) cflinuxfs3
(https://www.pivotaltracker.com/story/show/169293588)
v1.5.0 Oct 10, 2019
=====================
* Remove cflinuxfs2 dependencies
(https://www.pivotaltracker.com/story/show/166710436)
v1.4.45 Sep 30, 2019
=====================
* Remove nginx for cflinuxfs2
- Fixes #159
(https://www.pivotaltracker.com/story/show/166710436)
* Includes new secure_app fixture that gets an A+ from Mozilla Observatory
(https://www.pivotaltracker.com/story/show/165481690)
* Add nginx 1.17.4, remove nginx 1.17.3
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/168729882)
* add absolute_redirect off; to prevent directory redirects from https to http
(https://www.pivotaltracker.com/story/show/168343288)
* Removes nginx 1.15.x because it is depricated
(https://www.pivotaltracker.com/story/show/167241884)
v1.4.44 Aug 27, 2019
=====================
* Add nginx 1.17.3, remove nginx 1.17.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/167876323)
(https://www.pivotaltracker.com/story/show/167456240)
(https://www.pivotaltracker.com/story/show/166900660)
* Merge pull request #158 from seymurfarziyev/develop
downloaded and installed libbuildpack-dynatrace release v1.2.1
* fix wrong key names in deprecation dates
* Fix misformatted deprecation date
* downloaded and installed libbuildpack-dynatrace release v1.2.1
v1.4.43 Jun 05, 2019
=====================
* Change default nginx version to 1.15.x
(https://www.pivotaltracker.com/story/show/166292306)
* Add nginx 1.17.0
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/166292306)
v1.4.42 Apr 23, 2019
=====================
* Remove warning logs causing bosh cli error
* Add nginx 1.15.12, remove nginx 1.15.10
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/165387664)
v1.4.41 Apr 02, 2019
=====================
* Add nginx 1.15.10, remove nginx 1.15.9
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164899138)
v1.4.40 Mar 01, 2019
=====================
* Add nginx 1.15.9, remove nginx 1.15.8
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/164249501)
* Add source and source_sha256 to buildpack manifest
(https://www.pivotaltracker.com/story/show/163711928)
* Serve .js files as application/javascript
(https://www.pivotaltracker.com/story/show/161478383)
* Update go used to compile buildpack from source to 1.11.5
(https://www.pivotaltracker.com/story/show/163701450)
v1.4.39 Jan 23, 2019
=====================
* Use built version of go 1.11.4 in online unbuilt/URL buildpack
(https://www.pivotaltracker.com/story/show/163089977)
v1.4.38 Jan 17, 2019
=====================
* 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.4.37 Dec 31, 2018
=====================
* Add nginx 1.15.8, remove nginx 1.15.7
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162839811)
commit 513f145d5f567f9b15245196a52661bc343bbf82
Author: Danny Joyce <[email protected]>
Date: Fri Dec 7 11:00:04 2018 -0500
Add ginkgo "compilers=1" flag in attempt to fix go mod download issues
* Install ginkgo and packager with go 1.11
(https://www.pivotaltracker.com/story/show/161601715)
* Migrate to go modules.
(https://www.pivotaltracker.com/story/show/161601715)
v1.4.36 Dec 06, 2018
=====================
* Add nginx 1.15.7, remove nginx 1.15.6
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/162240857)
v1.4.35 Nov 19, 2018
=====================
* Add nginx 1.15.6, remove nginx 1.15.5
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/161755150)
v1.4.34 Oct 29, 2018
=====================
* Changes include headers to allow for a root directory
- don't copy nginx to public during staging
(https://www.pivotaltracker.com/story/show/156479950)
v1.4.33 Oct 15, 2018
=====================
* Add nginx 1.15.5, remove nginx 1.15.3
for stack(s) cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/160928056)
(https://www.pivotaltracker.com/story/show/160793492)
v1.4.32 Sep 07, 2018
=====================
* Add nginx 1.15.3, remove nginx 1.15.2
for stacks cflinuxfs2, cflinuxfs3
(https://www.pivotaltracker.com/story/show/160100616)
* Preserves x_forwarded_host on https
Closes #141. Updates .ForceHTTPS block to preserve the
x-forwarded-host on https redirects.
(https://www.pivotaltracker.com/story/show/156376954)
v1.4.31 Jul 27, 2018
=====================
* Rebuild nginx 1.15.2
for stacks cflinuxfs2, cflinuxfs3 [#159272821]
v1.4.30 Jul 20, 2018
=====================
* Default nginx version changed to 1.15.x.
(https://www.pivotaltracker.com/story/show/158800160)
* Add nginx 1.15.1, remove nginx 1.15.0
(https://www.pivotaltracker.com/story/show/158800160)
v1.4.29 Jun 25, 2018
=====================
* Merge pull request #147 from christopherclark/master
Update LICENSE
(https://www.pivotaltracker.com/story/show/158441699)
v1.4.28 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)
v1.4.27 Apr 16, 2018
=====================
* Add nginx 1.13.12, remove nginx 1.13.11
(https://www.pivotaltracker.com/story/show/156657474)
v1.4.26 Apr 09, 2018
=====================
* Add nginx 1.13.11, remove nginx 1.13.10
(https://www.pivotaltracker.com/story/show/156471809)
v1.4.25 Apr 03, 2018
=====================
* Add nginx 1.13.10, remove nginx 1.13.9
(https://www.pivotaltracker.com/story/show/156133474)
(https://www.pivotaltracker.com/story/show/156134095)
v1.4.24 Mar 09, 2018
=====================
* Use manifest cache downloads
(https://www.pivotaltracker.com/story/show/155405429)
v1.4.23 Feb 26, 2018
=====================
* Document new buildpack-packager build command
(https://www.pivotaltracker.com/story/show/155223266)
* Add nginx 1.13.9, remove nginx 1.13.8
(https://www.pivotaltracker.com/story/show/155362465)
v1.4.22 Feb 09, 2018
=====================
* Enable manifest override yml
(https://www.pivotaltracker.com/story/show/153614649)
* Enabling custom 404 pages
(https://www.pivotaltracker.com/story/show/151158550)
* Add missing fixture
(https://www.pivotaltracker.com/story/show/150296977)
* Warn staticfile buildpack users when override nginx.conf
(https://www.pivotaltracker.com/story/show/150296977)
* Improve information about running integration tests
(https://www.pivotaltracker.com/story/show/154216032)
* fixed bug with json handling in credentials in dynatrace hook
(https://www.pivotaltracker.com/story/show/154240737)
v1.4.21 Jan 09, 2018
=====================
* Add nginx 1.13.8, remove nginx 1.13.7
(https://www.pivotaltracker.com/story/show/153910485)
* Improvements to Dynatrace extension
- Merge pull request #129 from arthfl
(https://www.pivotaltracker.com/story/show/153813557)
v1.4.20 Nov 29, 2017
=====================
* Warn about nginx/conf on root=="."
[#153059645]
* Add nginx 1.13.7, remove nginx 1.13.6
(https://www.pivotaltracker.com/story/show/153060280)
* Simplify build/test scripts to make tests easier to run
- Merge pull request #119 from rakrup/readlink_fix_for_mac
(https://www.pivotaltracker.com/story/show/151293706)
v1.4.19 Nov 06, 2017
=====================
* 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/151381713)
* Move nginx directives inside location block
- Being outside caused an unintended interaction between "pushstate" and a doubly nested location block
- Adding pushstate_and_proxy_pass test
(https://www.pivotaltracker.com/story/show/152312644)
v1.4.18 Oct 17, 2017
=====================
* Revert change to stdout logging
Not all versions of garden support writing to /dev/stdout
(https://www.pivotaltracker.com/story/show/151737300)
v1.4.17 Oct 17, 2017
=====================
* Add nginx 1.13.6, remove nginx 1.13.5
(https://www.pivotaltracker.com/story/show/151849194)
* Use /dev/stderr and /dev/stdout directly
(https://www.pivotaltracker.com/story/show/151737300)
v1.4.16 Sep 27, 2017
=====================
* Move nginx config directives from location to server block
(https://www.pivotaltracker.com/story/show/148630045)
* Use HTTPS instead of HTTP links in readme and inline explanations
(https://www.pivotaltracker.com/story/show/150938423)
v1.4.15 Sep 08, 2017
=====================
* Add nginx 1.13.5, remove nginx 1.13.4
(https://www.pivotaltracker.com/story/show/150814564)
* Move nginx.conf instead of copying
(https://www.pivotaltracker.com/story/show/150757043)
v1.4.14 Aug 21, 2017
=====================
* Add opt-in richer HSTS support.
(https://www.pivotaltracker.com/story/show/149979433)
v1.4.13 Aug 14, 2017
=====================
* Add nginx 1.13.4, remove nginx 1.13.3
v1.4.12 Jul 24, 2017
=====================
* Override existing public directory during copy
(https://www.pivotaltracker.com/story/show/148930437)
v1.4.11 Jul 13, 2017
=====================
* Add nginx 1.13.3, remove nginx 1.13.2
(https://www.pivotaltracker.com/story/show/148679499)
v1.4.10 Jul 11, 2017
=====================
* Add nginx 1.13.2, remove nginx 1.13.1
(https://www.pivotaltracker.com/story/show/147928939)
v1.4.9 Jun 15, 2017
====================
* Add nginx 1.13.1, remove nginx 1.11.13
(https://www.pivotaltracker.com/story/show/146651429)
v1.4.8 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)
v1.4.7 Jun 05, 2017
====================
* Warn users that location_include must set root
(https://www.pivotaltracker.com/story/show/146409581)
v1.4.6 May 15, 2017
====================
* Add Dynatrace OneAgent integration to staticfile buildpack
(https://www.pivotaltracker.com/story/show/144856601)
* Add multiple buildpack support
(https://www.pivotaltracker.com/story/show/142852459)
v1.4.5 Apr 20, 2017
====================
* Use boot.sh for start command
(https://www.pivotaltracker.com/story/show/143954449)
v1.4.4 Apr 10, 2017
====================
* Add nginx 1.11.13, remove nginx 1.11.12
(https://www.pivotaltracker.com/story/show/143052671)
* Fix bug with "run-task", where by tasks would not exit
(https://www.pivotaltracker.com/story/show/142863193)
* Packaging a uncached buildpack now compiles bin/compile
(https://www.pivotaltracker.com/story/show/143040749)
* Fix bug with "basic-auth" when a Staticfile is not provided
(https://www.pivotaltracker.com/story/show/143385535)
v1.4.2 Mar 29, 2017
====================
* Fix bug in untar
(https://www.pivotaltracker.com/story/show/142699861)
v1.4.1 Mar 27, 2017
====================
* Add nginx 1.11.12, remove nginx 1.11.11
(https://www.pivotaltracker.com/story/show/142401589)
v1.4.0 Mar 22, 2017
=====================
* Hook Support
Add support for BeforeCompile and AfterCompile hooks
(https://www.pivotaltracker.com/story/show/141975819)
* Add support for supply buildpacks
(https://www.pivotaltracker.com/story/show/141617933)
* Add nginx 1.11.11, remove nginx 1.11.10
(https://www.pivotaltracker.com/story/show/142148789)
* Implement staticfile buildpack in Go
- there should be no change in observed behavior
(https://www.pivotaltracker.com/story/show/139019387)
v1.3.18 Feb 24, 2017
=====================
* Add nginx 1.11.10, remove nginx 1.11.9
(https://www.pivotaltracker.com/story/show/139833155)
* Allow users to include arbitrary nginx configuration
(https://www.pivotaltracker.com/story/show/136370663)
v1.3.17 Feb 09, 2017
=====================
* Add MIME types for TTF, WOFF, WOFF2 fonts
(https://www.pivotaltracker.com/story/show/138621515)
* Add nginx 1.11.9, remove nginx 1.11.8
(https://www.pivotaltracker.com/story/show/138243621)
v1.3.16 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.3.15 Jan 06, 2017
=====================
* Add new Slack icon to README
(https://www.pivotaltracker.com/story/show/136438447)
* Add nginx 1.11.8, remove nginx 1.11.6
(https://www.pivotaltracker.com/story/show/136691285)
(https://www.pivotaltracker.com/story/show/136041771)
* Correct copyright NOTICE
(https://www.pivotaltracker.com/story/show/136141035)
* Add new version warning to staticfile buildpack
(https://www.pivotaltracker.com/story/show/135234395)
* Use regexes for url_to_dependency mapping for nginx
- Remove hardcoded version string from url_to_dependency mapping
(https://www.pivotaltracker.com/story/show/126394939)
v1.3.14 Dec 01, 2016
=====================
* Add default_versions support to buildpack
(https://www.pivotaltracker.com/story/show/126394939)
* Enable 'Vary: Accept-Encoding' header
(https://www.pivotaltracker.com/story/show/129364025)
* Add nginx 1.11.6, remove nginx 1.11.5
(https://www.pivotaltracker.com/story/show/134361411)
* Rebuild and change path for nginx binary
- 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.3.13 Nov 09, 2016
=====================
* Option to enable hosting of hidden dot-files
- To enable hosting of hidden dot-files, add the line:
'host_dot_files: true'
to the Staticfile
- If this line is not present, no hiddne dot-files will be served
(https://www.pivotaltracker.com/story/show/130223889)
* Enable HSTS support
- To enable HSTS support, add the line:
'http_strict_transport_security: true'
to the Staticfile
(https://www.pivotaltracker.com/story/show/128980925)
* Don't write hashed credentials from Staticfile.auth to the logs
(https://www.pivotaltracker.com/story/show/130048269)
v1.3.12 Oct 19, 2016
=====================
* Add nginx 1.11.5, remove nginx 1.11.4
(https://www.pivotaltracker.com/story/show/132088805)
* staticfile-buildpack BOSH release now available on bosh.io at
http://bosh.io/releases/github.com/cloudfoundry/staticfile-buildpack-release
(https://www.pivotaltracker.com/story/show/130040305)
v1.3.11 Sep 19, 2016
=====================
* Add nginx 1.11.4, remove nginx 1.11.3
(https://www.pivotaltracker.com/story/show/130296431)
* Redact credentials from URLs in a cached buildpack's output
(https://www.pivotaltracker.com/story/show/127357631)
* Redact credentials from URLs in an uncached buildpack's output
(https://www.pivotaltracker.com/story/show/126514693)
v1.3.10 Jul 28, 2016
=====================
* Add nginx 1.11.3, remove nginx 1.11.1
(https://www.pivotaltracker.com/story/show/127085963)
* Make buildpacks.cloudfoundry.org the default url for buildpack dependencies
(https://www.pivotaltracker.com/story/show/121757949)
v1.3.9 Jun 01, 2016
====================
* Add nginx 1.11.1, remove nginx 1.9.15
(https://www.pivotaltracker.com/story/show/120614839)
v1.3.8 May 09, 2016
====================
* Add a way to make nginx more HTML5 push state friendly
(https://www.pivotaltracker.com/story/show/118545199)
v1.3.7 Apr 22, 2016
====================
* Add nginx 1.9.15, remove nginx 1.9.12