forked from cloudfoundry/staticfile-buildpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
158 lines (107 loc) · 4.39 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
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
(https://www.pivotaltracker.com/story/show/117934027)
* Remove extraneous grep Staticfile error messages when pushing without Staticfile
(https://www.pivotaltracker.com/story/show/117950873)
* Enable `gzip_static` and `gunzip` by default
(https://www.pivotaltracker.com/story/show/109491060)
v1.3.6 Apr 06, 2016
====================
* Add nginx 1.9.14, remove nginx 1.9.12
(https://www.pivotaltracker.com/story/show/116842725)
v1.3.5 Mar 22, 2016
====================
* Fix bug where you cannot have `public` dir inside app root
(https://www.pivotaltracker.com/story/show/116068383)
v1.3.4 Mar 21, 2016
====================
* Toggle for ssi in Staticfile
(https://www.pivotaltracker.com/story/show/111667592)
* Specify charset of HTML chars in nginx.conf
v1.3.3 Mar 14, 2016
====================
* Reduce disk usage by moving files instead of copying them into the `public` directory
(https://www.pivotaltracker.com/story/show/112908945)
v1.3.2 Mar 07, 2016
====================
* Update nginx from 1.9.9 to 1.9.10
(https://www.pivotaltracker.com/story/show/114349749)
Note that nginx 1.9.10 is mainly a feature / bugfix release
v1.3.1 Jan 28, 2016
====================
* Update nginx from 1.9.9 to 1.9.10
(https://www.pivotaltracker.com/story/show/112526103)
Note that nginx 1.9.10 is a security update for the [following CVEs](http://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html?_ga=1.134019406.1734013177.1444677334):
* CVE-2016-0742
* CVE-2016-0746
* CVE-2016-0747
v1.3.0 Dec 30, 2015
====================
* added nginx 1.9.9, drop 1.8.0
(https://www.pivotaltracker.com/story/show/110627622)
* correctly redirect http to https
v1.2.3 Nov 16, 2015
====================
* Nginx log files no longer are no longer written to disk, but
instead are piped to stdout/stderr.
(https://www.pivotaltracker.com/story/show/107057846)
v1.2.2 2015-10-24
====================
* Improve error messages for alternate root directory issues
(https://www.pivotaltracker.com/story/show/106553928)
* bin/detect script emits buildpack name and version
(https://www.pivotaltracker.com/story/show/100757820)
* Log the location of downloaded resources
(https://www.pivotaltracker.com/story/show/100853260)
v1.2.1 Jul 16, 2015
====================
* Adding helpful message for unsupported stack
(https://www.pivotaltracker.com/story/show/98579464)
* Compress nginx response body for more MIME types
(https://www.pivotaltracker.com/story/show/98128132)
* Update nginx to version 1.8.0
(https://www.pivotaltracker.com/story/show/97663450)
v1.2.0 Jun 24, 2015
====================
* Remove nginx version display
(https://www.pivotaltracker.com/story/show/94542440)
* Remove lucid-specific binaries from manifest.yml
(https://www.pivotaltracker.com/story/show/96135874)
* Give helpful message on unsupported stacks
(https://www.pivotaltracker.com/story/show/96590146)
v1.1.1 Jun 15, 2015
====================
* Bump compile extensions
(https://www.pivotaltracker.com/story/show/96957294)
v1.1.0 Jun 05, 2015
====================
* Use compile-extensions to pull in nginx
* This nginx is dynamically linked to pcre.
(https://www.pivotaltracker.com/story/show/96283548)
v1.0.0 Apr 29, 2015
====================
- Add Machete rspec integration tests
(https://www.pivotaltracker.com/story/show/89505182)
v0.5.2
====================
- Respond with `Content-Type: application/json` for `.json` files. #30 [Thanks, @danielsiwiec!]
v0.5.1
====================
- Include gzip static module in nginx [thanks @ljfranklin]
- Allow alternate root to be `public` folder
v0.5.0
====================
- Support for `cflinuxfs2` trusty stack (and continued support for `lucid64` stack) [thanks @simonjohansson]
- Remove trailing whitespace from Staticfile 'root:' value [thanks @edmorley]
- Use rsync rather than mv to ensure correct files present in public/ [thanks @edmorley]
- add text/cache-manifest mime type for .manifest files [thanks @hairmare]
- Ensure that trailing slash redirects don't include `ENV[PORT]` [thanks @mrdavidlaing]