Skip to content

Commit f34944c

Browse files
committed
Merge tag '3.15.0'
2 parents 11c74d7 + 928952e commit f34944c

File tree

3 files changed

+39
-5
lines changed

3 files changed

+39
-5
lines changed

History.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,40 @@ unreleased
309309
- `app.route()` - Proxy to the app's `Router#route()` method to create a new route
310310
- Router & Route - public API
311311

312+
3.15.0 / 2014-07-22
313+
===================
314+
315+
* Fix `req.protocol` for proxy-direct connections
316+
* Pass options from `res.sendfile` to `send`
317+
318+
- deps: body-parser@~1.5.0
319+
- deps: compression@~1.0.9
320+
- deps: connect-timeout@~1.2.1
321+
322+
323+
- deps: express-session@~1.7.0
324+
325+
- deps: method-override@~2.1.2
326+
- deps: morgan@~1.2.0
327+
328+
- deps: parseurl@~1.2.0
329+
- deps: serve-static@~1.4.0
330+
331+
332+
- Add `TRACE_DEPRECATION` environment variable
333+
- Remove non-standard grey color from color output
334+
- Support `--no-deprecation` argument
335+
- Support `--trace-deprecation` argument
336+
* deps: parseurl@~1.2.0
337+
- Cache URLs based on original value
338+
- Remove no-longer-needed URL mis-parse work-around
339+
- Simplify the "fast-path" `RegExp`
340+
341+
- Add `dotfiles` option
342+
- Cap `maxAge` value to 1 year
343+
344+
345+
312346
3.14.0 / 2014-07-11
313347
===================
314348

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![NPM Version](https://badge.fury.io/js/express.svg)](https://badge.fury.io/js/express)
66
[![Build Status](https://travis-ci.org/visionmedia/express.svg?branch=master)](https://travis-ci.org/visionmedia/express)
77
[![Coverage Status](https://img.shields.io/coveralls/visionmedia/express.svg)](https://coveralls.io/r/visionmedia/express)
8-
[![Gittip](https://img.shields.io/gittip/visionmedia.svg)](https://www.gittip.com/visionmedia/)
8+
[![Gittip](http://img.shields.io/gittip/dougwilson.svg)](https://www.gittip.com/dougwilson/)
99

1010
```js
1111
var express = require('express')

lib/response.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,10 @@ res.jsonp = function jsonp(obj) {
312312
*
313313
* Options:
314314
*
315-
* - `maxAge` defaulting to 0 (can be string converted by `ms`)
316-
* - `root` root directory for relative filenames
317-
* - `headers` object of headers to serve with file
318-
* - `hidden` serve hidden files, defaulting to false
315+
* - `maxAge` defaulting to 0 (can be string converted by `ms`)
316+
* - `root` root directory for relative filenames
317+
* - `headers` object of headers to serve with file
318+
* - `dotfiles` serve dotfiles, defaulting to false; can be `"allow"` to send them
319319
*
320320
* Other options are passed along to `send`.
321321
*

0 commit comments

Comments
 (0)