deps: qs@6.10.3
[express.git] / History.md
blobef5ce5fc020a26fbc3c84693eebcf0cdd635d89d
1 unreleased
2 ==========
4   * Add "root" option to `res.download`
5   * Allow `options` without `filename` in `res.download`
6   * Deprecate string and non-integer arguments to `res.status`
7   * Fix behavior of `null`/`undefined` as `maxAge` in `res.cookie`
8   * Ignore `Object.prototype` values in settings through `app.set`/`app.get`
9   * Invoke `default` with same arguments as types in `res.format`
10   * Support proper 205 responses using `res.send`
11   * Use `http-errors` for `res.format` error
12   * deps: body-parser@1.20.0
13     - Fix error message for json parse whitespace in `strict`
14     - Fix internal error when inflated body exceeds limit
15     - Prevent loss of async hooks context
16     - Prevent hanging when request already read
17     - deps: depd@2.0.0
18     - deps: http-errors@2.0.0
19     - deps: on-finished@2.4.1
20     - deps: qs@6.10.3
21     - deps: raw-body@2.5.1
22   * deps: depd@2.0.0
23     - Replace internal `eval` usage with `Function` constructor
24     - Use instance methods on `process` to check for listeners
25   * deps: finalhandler@1.2.0
26     - Remove set content headers that break response
27     - deps: on-finished@2.4.1
28     - deps: statuses@2.0.1
29   * deps: qs@6.10.3
30   * deps: send@0.18.0
31     - Fix emitted 416 error missing headers property
32     - Limit the headers removed for 304 response
33     - deps: depd@2.0.0
34     - deps: destroy@1.2.0
35     - deps: http-errors@2.0.0
36     - deps: on-finished@2.4.1
37     - deps: statuses@2.0.1
38   * deps: serve-static@1.15.0
39     - deps: send@0.18.0
41 4.17.3 / 2022-02-16
42 ===================
44   * deps: accepts@~1.3.8
45     - deps: mime-types@~2.1.34
46     - deps: negotiator@0.6.3
47   * deps: body-parser@1.19.2
48     - deps: bytes@3.1.2
49     - deps: qs@6.9.7
50     - deps: raw-body@2.4.3
51   * deps: cookie@0.4.2
52   * deps: qs@6.9.7
53     * Fix handling of `__proto__` keys
54   * pref: remove unnecessary regexp for trust proxy
56 4.17.2 / 2021-12-16
57 ===================
59   * Fix handling of `undefined` in `res.jsonp`
60   * Fix handling of `undefined` when `"json escape"` is enabled
61   * Fix incorrect middleware execution with unanchored `RegExp`s
62   * Fix `res.jsonp(obj, status)` deprecation message
63   * Fix typo in `res.is` JSDoc
64   * deps: body-parser@1.19.1
65     - deps: bytes@3.1.1
66     - deps: http-errors@1.8.1
67     - deps: qs@6.9.6
68     - deps: raw-body@2.4.2
69     - deps: safe-buffer@5.2.1
70     - deps: type-is@~1.6.18
71   * deps: content-disposition@0.5.4
72     - deps: safe-buffer@5.2.1
73   * deps: cookie@0.4.1
74     - Fix `maxAge` option to reject invalid values
75   * deps: proxy-addr@~2.0.7
76     - Use `req.socket` over deprecated `req.connection`
77     - deps: forwarded@0.2.0
78     - deps: ipaddr.js@1.9.1
79   * deps: qs@6.9.6
80   * deps: safe-buffer@5.2.1
81   * deps: send@0.17.2
82     - deps: http-errors@1.8.1
83     - deps: ms@2.1.3
84     - pref: ignore empty http tokens
85   * deps: serve-static@1.14.2
86     - deps: send@0.17.2
87   * deps: setprototypeof@1.2.0
89 4.17.1 / 2019-05-25
90 ===================
92   * Revert "Improve error message for `null`/`undefined` to `res.status`"
94 4.17.0 / 2019-05-16
95 ===================
97   * Add `express.raw` to parse bodies into `Buffer`
98   * Add `express.text` to parse bodies into string
99   * Improve error message for non-strings to `res.sendFile`
100   * Improve error message for `null`/`undefined` to `res.status`
101   * Support multiple hosts in `X-Forwarded-Host`
102   * deps: accepts@~1.3.7
103   * deps: body-parser@1.19.0
104     - Add encoding MIK
105     - Add petabyte (`pb`) support
106     - Fix parsing array brackets after index
107     - deps: bytes@3.1.0
108     - deps: http-errors@1.7.2
109     - deps: iconv-lite@0.4.24
110     - deps: qs@6.7.0
111     - deps: raw-body@2.4.0
112     - deps: type-is@~1.6.17
113   * deps: content-disposition@0.5.3
114   * deps: cookie@0.4.0
115     - Add `SameSite=None` support
116   * deps: finalhandler@~1.1.2
117     - Set stricter `Content-Security-Policy` header
118     - deps: parseurl@~1.3.3
119     - deps: statuses@~1.5.0
120   * deps: parseurl@~1.3.3
121   * deps: proxy-addr@~2.0.5
122     - deps: ipaddr.js@1.9.0
123   * deps: qs@6.7.0
124     - Fix parsing array brackets after index
125   * deps: range-parser@~1.2.1
126   * deps: send@0.17.1
127     - Set stricter CSP header in redirect & error responses
128     - deps: http-errors@~1.7.2
129     - deps: mime@1.6.0
130     - deps: ms@2.1.1
131     - deps: range-parser@~1.2.1
132     - deps: statuses@~1.5.0
133     - perf: remove redundant `path.normalize` call
134   * deps: serve-static@1.14.1
135     - Set stricter CSP header in redirect response
136     - deps: parseurl@~1.3.3
137     - deps: send@0.17.1
138   * deps: setprototypeof@1.1.1
139   * deps: statuses@~1.5.0
140     - Add `103 Early Hints`
141   * deps: type-is@~1.6.18
142     - deps: mime-types@~2.1.24
143     - perf: prevent internal `throw` on invalid type
145 4.16.4 / 2018-10-10
146 ===================
148   * Fix issue where `"Request aborted"` may be logged in `res.sendfile`
149   * Fix JSDoc for `Router` constructor
150   * deps: body-parser@1.18.3
151     - Fix deprecation warnings on Node.js 10+
152     - Fix stack trace for strict json parse error
153     - deps: depd@~1.1.2
154     - deps: http-errors@~1.6.3
155     - deps: iconv-lite@0.4.23
156     - deps: qs@6.5.2
157     - deps: raw-body@2.3.3
158     - deps: type-is@~1.6.16
159   * deps: proxy-addr@~2.0.4
160     - deps: ipaddr.js@1.8.0
161   * deps: qs@6.5.2
162   * deps: safe-buffer@5.1.2
164 4.16.3 / 2018-03-12
165 ===================
167   * deps: accepts@~1.3.5
168     - deps: mime-types@~2.1.18
169   * deps: depd@~1.1.2
170     - perf: remove argument reassignment
171   * deps: encodeurl@~1.0.2
172     - Fix encoding `%` as last character
173   * deps: finalhandler@1.1.1
174     - Fix 404 output for bad / missing pathnames
175     - deps: encodeurl@~1.0.2
176     - deps: statuses@~1.4.0
177   * deps: proxy-addr@~2.0.3
178     - deps: ipaddr.js@1.6.0
179   * deps: send@0.16.2
180     - Fix incorrect end tag in default error & redirects
181     - deps: depd@~1.1.2
182     - deps: encodeurl@~1.0.2
183     - deps: statuses@~1.4.0
184   * deps: serve-static@1.13.2
185     - Fix incorrect end tag in redirects
186     - deps: encodeurl@~1.0.2
187     - deps: send@0.16.2
188   * deps: statuses@~1.4.0
189   * deps: type-is@~1.6.16
190     - deps: mime-types@~2.1.18
192 4.16.2 / 2017-10-09
193 ===================
195   * Fix `TypeError` in `res.send` when given `Buffer` and `ETag` header set
196   * perf: skip parsing of entire `X-Forwarded-Proto` header
198 4.16.1 / 2017-09-29
199 ===================
201   * deps: send@0.16.1
202   * deps: serve-static@1.13.1
203     - Fix regression when `root` is incorrectly set to a file
204     - deps: send@0.16.1
206 4.16.0 / 2017-09-28
207 ===================
209   * Add `"json escape"` setting for `res.json` and `res.jsonp`
210   * Add `express.json` and `express.urlencoded` to parse bodies
211   * Add `options` argument to `res.download`
212   * Improve error message when autoloading invalid view engine
213   * Improve error messages when non-function provided as middleware
214   * Skip `Buffer` encoding when not generating ETag for small response
215   * Use `safe-buffer` for improved Buffer API
216   * deps: accepts@~1.3.4
217     - deps: mime-types@~2.1.16
218   * deps: content-type@~1.0.4
219     - perf: remove argument reassignment
220     - perf: skip parameter parsing when no parameters
221   * deps: etag@~1.8.1
222     - perf: replace regular expression with substring
223   * deps: finalhandler@1.1.0
224     - Use `res.headersSent` when available
225   * deps: parseurl@~1.3.2
226     - perf: reduce overhead for full URLs
227     - perf: unroll the "fast-path" `RegExp`
228   * deps: proxy-addr@~2.0.2
229     - Fix trimming leading / trailing OWS in `X-Forwarded-For`
230     - deps: forwarded@~0.1.2
231     - deps: ipaddr.js@1.5.2
232     - perf: reduce overhead when no `X-Forwarded-For` header
233   * deps: qs@6.5.1
234     - Fix parsing & compacting very deep objects
235   * deps: send@0.16.0
236     - Add 70 new types for file extensions
237     - Add `immutable` option
238     - Fix missing `</html>` in default error & redirects
239     - Set charset as "UTF-8" for .js and .json
240     - Use instance methods on steam to check for listeners
241     - deps: mime@1.4.1
242     - perf: improve path validation speed
243   * deps: serve-static@1.13.0
244     - Add 70 new types for file extensions
245     - Add `immutable` option
246     - Set charset as "UTF-8" for .js and .json
247     - deps: send@0.16.0
248   * deps: setprototypeof@1.1.0
249   * deps: utils-merge@1.0.1
250   * deps: vary@~1.1.2
251     - perf: improve header token parsing speed
252   * perf: re-use options object when generating ETags
253   * perf: remove dead `.charset` set in `res.jsonp`
255 4.15.5 / 2017-09-24
256 ===================
258   * deps: debug@2.6.9
259   * deps: finalhandler@~1.0.6
260     - deps: debug@2.6.9
261     - deps: parseurl@~1.3.2
262   * deps: fresh@0.5.2
263     - Fix handling of modified headers with invalid dates
264     - perf: improve ETag match loop
265     - perf: improve `If-None-Match` token parsing
266   * deps: send@0.15.6
267     - Fix handling of modified headers with invalid dates
268     - deps: debug@2.6.9
269     - deps: etag@~1.8.1
270     - deps: fresh@0.5.2
271     - perf: improve `If-Match` token parsing
272   * deps: serve-static@1.12.6
273     - deps: parseurl@~1.3.2
274     - deps: send@0.15.6
275     - perf: improve slash collapsing
277 4.15.4 / 2017-08-06
278 ===================
280   * deps: debug@2.6.8
281   * deps: depd@~1.1.1
282     - Remove unnecessary `Buffer` loading
283   * deps: finalhandler@~1.0.4
284     - deps: debug@2.6.8
285   * deps: proxy-addr@~1.1.5
286     - Fix array argument being altered
287     - deps: ipaddr.js@1.4.0
288   * deps: qs@6.5.0
289   * deps: send@0.15.4
290     - deps: debug@2.6.8
291     - deps: depd@~1.1.1
292     - deps: http-errors@~1.6.2
293   * deps: serve-static@1.12.4
294     - deps: send@0.15.4
296 4.15.3 / 2017-05-16
297 ===================
299   * Fix error when `res.set` cannot add charset to `Content-Type`
300   * deps: debug@2.6.7
301     - Fix `DEBUG_MAX_ARRAY_LENGTH`
302     - deps: ms@2.0.0
303   * deps: finalhandler@~1.0.3
304     - Fix missing `</html>` in HTML document
305     - deps: debug@2.6.7
306   * deps: proxy-addr@~1.1.4
307     - deps: ipaddr.js@1.3.0
308   * deps: send@0.15.3
309     - deps: debug@2.6.7
310     - deps: ms@2.0.0
311   * deps: serve-static@1.12.3
312     - deps: send@0.15.3
313   * deps: type-is@~1.6.15
314     - deps: mime-types@~2.1.15
315   * deps: vary@~1.1.1
316     - perf: hoist regular expression
318 4.15.2 / 2017-03-06
319 ===================
321   * deps: qs@6.4.0
322     - Fix regression parsing keys starting with `[`
324 4.15.1 / 2017-03-05
325 ===================
327   * deps: send@0.15.1
328     - Fix issue when `Date.parse` does not return `NaN` on invalid date
329     - Fix strict violation in broken environments
330   * deps: serve-static@1.12.1
331     - Fix issue when `Date.parse` does not return `NaN` on invalid date
332     - deps: send@0.15.1
334 4.15.0 / 2017-03-01
335 ===================
337   * Add debug message when loading view engine
338   * Add `next("router")` to exit from router
339   * Fix case where `router.use` skipped requests routes did not
340   * Remove usage of `res._headers` private field
341     - Improves compatibility with Node.js 8 nightly
342   * Skip routing when `req.url` is not set
343   * Use `%o` in path debug to tell types apart
344   * Use `Object.create` to setup request & response prototypes
345   * Use `setprototypeof` module to replace `__proto__` setting
346   * Use `statuses` instead of `http` module for status messages
347   * deps: debug@2.6.1
348     - Allow colors in workers
349     - Deprecated `DEBUG_FD` environment variable set to `3` or higher
350     - Fix error when running under React Native
351     - Use same color for same namespace
352     - deps: ms@0.7.2
353   * deps: etag@~1.8.0
354     - Use SHA1 instead of MD5 for ETag hashing
355     - Works with FIPS 140-2 OpenSSL configuration
356   * deps: finalhandler@~1.0.0
357     - Fix exception when `err` cannot be converted to a string
358     - Fully URL-encode the pathname in the 404
359     - Only include the pathname in the 404 message
360     - Send complete HTML document
361     - Set `Content-Security-Policy: default-src 'self'` header
362     - deps: debug@2.6.1
363   * deps: fresh@0.5.0
364     - Fix false detection of `no-cache` request directive
365     - Fix incorrect result when `If-None-Match` has both `*` and ETags
366     - Fix weak `ETag` matching to match spec
367     - perf: delay reading header values until needed
368     - perf: enable strict mode
369     - perf: hoist regular expressions
370     - perf: remove duplicate conditional
371     - perf: remove unnecessary boolean coercions
372     - perf: skip checking modified time if ETag check failed
373     - perf: skip parsing `If-None-Match` when no `ETag` header
374     - perf: use `Date.parse` instead of `new Date`
375   * deps: qs@6.3.1
376     - Fix array parsing from skipping empty values
377     - Fix compacting nested arrays
378   * deps: send@0.15.0
379     - Fix false detection of `no-cache` request directive
380     - Fix incorrect result when `If-None-Match` has both `*` and ETags
381     - Fix weak `ETag` matching to match spec
382     - Remove usage of `res._headers` private field
383     - Support `If-Match` and `If-Unmodified-Since` headers
384     - Use `res.getHeaderNames()` when available
385     - Use `res.headersSent` when available
386     - deps: debug@2.6.1
387     - deps: etag@~1.8.0
388     - deps: fresh@0.5.0
389     - deps: http-errors@~1.6.1
390   * deps: serve-static@1.12.0
391     - Fix false detection of `no-cache` request directive
392     - Fix incorrect result when `If-None-Match` has both `*` and ETags
393     - Fix weak `ETag` matching to match spec
394     - Remove usage of `res._headers` private field
395     - Send complete HTML document in redirect response
396     - Set default CSP header in redirect response
397     - Support `If-Match` and `If-Unmodified-Since` headers
398     - Use `res.getHeaderNames()` when available
399     - Use `res.headersSent` when available
400     - deps: send@0.15.0
401   * perf: add fast match path for `*` route
402   * perf: improve `req.ips` performance
404 4.14.1 / 2017-01-28
405 ===================
407   * deps: content-disposition@0.5.2
408   * deps: finalhandler@0.5.1
409     - Fix exception when `err.headers` is not an object
410     - deps: statuses@~1.3.1
411     - perf: hoist regular expressions
412     - perf: remove duplicate validation path
413   * deps: proxy-addr@~1.1.3
414     - deps: ipaddr.js@1.2.0
415   * deps: send@0.14.2
416     - deps: http-errors@~1.5.1
417     - deps: ms@0.7.2
418     - deps: statuses@~1.3.1
419   * deps: serve-static@~1.11.2
420     - deps: send@0.14.2
421   * deps: type-is@~1.6.14
422     - deps: mime-types@~2.1.13
424 4.14.0 / 2016-06-16
425 ===================
427   * Add `acceptRanges` option to `res.sendFile`/`res.sendfile`
428   * Add `cacheControl` option to `res.sendFile`/`res.sendfile`
429   * Add `options` argument to `req.range`
430     - Includes the `combine` option
431   * Encode URL in `res.location`/`res.redirect` if not already encoded
432   * Fix some redirect handling in `res.sendFile`/`res.sendfile`
433   * Fix Windows absolute path check using forward slashes
434   * Improve error with invalid arguments to `req.get()`
435   * Improve performance for `res.json`/`res.jsonp` in most cases
436   * Improve `Range` header handling in `res.sendFile`/`res.sendfile`
437   * deps: accepts@~1.3.3
438     - Fix including type extensions in parameters in `Accept` parsing
439     - Fix parsing `Accept` parameters with quoted equals
440     - Fix parsing `Accept` parameters with quoted semicolons
441     - Many performance improvements
442     - deps: mime-types@~2.1.11
443     - deps: negotiator@0.6.1
444   * deps: content-type@~1.0.2
445     - perf: enable strict mode
446   * deps: cookie@0.3.1
447     - Add `sameSite` option
448     - Fix cookie `Max-Age` to never be a floating point number
449     - Improve error message when `encode` is not a function
450     - Improve error message when `expires` is not a `Date`
451     - Throw better error for invalid argument to parse
452     - Throw on invalid values provided to `serialize`
453     - perf: enable strict mode
454     - perf: hoist regular expression
455     - perf: use for loop in parse
456     - perf: use string concatenation for serialization
457   * deps: finalhandler@0.5.0
458     - Change invalid or non-numeric status code to 500
459     - Overwrite status message to match set status code
460     - Prefer `err.statusCode` if `err.status` is invalid
461     - Set response headers from `err.headers` object
462     - Use `statuses` instead of `http` module for status messages
463   * deps: proxy-addr@~1.1.2
464     - Fix accepting various invalid netmasks
465     - Fix IPv6-mapped IPv4 validation edge cases
466     - IPv4 netmasks must be contiguous
467     - IPv6 addresses cannot be used as a netmask
468     - deps: ipaddr.js@1.1.1
469   * deps: qs@6.2.0
470     - Add `decoder` option in `parse` function
471   * deps: range-parser@~1.2.0
472     - Add `combine` option to combine overlapping ranges
473     - Fix incorrectly returning -1 when there is at least one valid range
474     - perf: remove internal function
475   * deps: send@0.14.1
476     - Add `acceptRanges` option
477     - Add `cacheControl` option
478     - Attempt to combine multiple ranges into single range
479     - Correctly inherit from `Stream` class
480     - Fix `Content-Range` header in 416 responses when using `start`/`end` options
481     - Fix `Content-Range` header missing from default 416 responses
482     - Fix redirect error when `path` contains raw non-URL characters
483     - Fix redirect when `path` starts with multiple forward slashes
484     - Ignore non-byte `Range` headers
485     - deps: http-errors@~1.5.0
486     - deps: range-parser@~1.2.0
487     - deps: statuses@~1.3.0
488     - perf: remove argument reassignment
489   * deps: serve-static@~1.11.1
490     - Add `acceptRanges` option
491     - Add `cacheControl` option
492     - Attempt to combine multiple ranges into single range
493     - Fix redirect error when `req.url` contains raw non-URL characters
494     - Ignore non-byte `Range` headers
495     - Use status code 301 for redirects
496     - deps: send@0.14.1
497   * deps: type-is@~1.6.13
498     - Fix type error when given invalid type to match against
499     - deps: mime-types@~2.1.11
500   * deps: vary@~1.1.0
501     - Only accept valid field names in the `field` argument
502   * perf: use strict equality when possible
504 4.13.4 / 2016-01-21
505 ===================
507   * deps: content-disposition@0.5.1
508     - perf: enable strict mode
509   * deps: cookie@0.1.5
510     - Throw on invalid values provided to `serialize`
511   * deps: depd@~1.1.0
512     - Support web browser loading
513     - perf: enable strict mode
514   * deps: escape-html@~1.0.3
515     - perf: enable strict mode
516     - perf: optimize string replacement
517     - perf: use faster string coercion
518   * deps: finalhandler@0.4.1
519     - deps: escape-html@~1.0.3
520   * deps: merge-descriptors@1.0.1
521     - perf: enable strict mode
522   * deps: methods@~1.1.2
523     - perf: enable strict mode
524   * deps: parseurl@~1.3.1
525     - perf: enable strict mode
526   * deps: proxy-addr@~1.0.10
527     - deps: ipaddr.js@1.0.5
528     - perf: enable strict mode
529   * deps: range-parser@~1.0.3
530     - perf: enable strict mode
531   * deps: send@0.13.1
532     - deps: depd@~1.1.0
533     - deps: destroy@~1.0.4
534     - deps: escape-html@~1.0.3
535     - deps: range-parser@~1.0.3
536   * deps: serve-static@~1.10.2
537     - deps: escape-html@~1.0.3
538     - deps: parseurl@~1.3.0
539     - deps: send@0.13.1
541 4.13.3 / 2015-08-02
542 ===================
544   * Fix infinite loop condition using `mergeParams: true`
545   * Fix inner numeric indices incorrectly altering parent `req.params`
547 4.13.2 / 2015-07-31
548 ===================
550   * deps: accepts@~1.2.12
551     - deps: mime-types@~2.1.4
552   * deps: array-flatten@1.1.1
553     - perf: enable strict mode
554   * deps: path-to-regexp@0.1.7
555     - Fix regression with escaped round brackets and matching groups
556   * deps: type-is@~1.6.6
557     - deps: mime-types@~2.1.4
559 4.13.1 / 2015-07-05
560 ===================
562   * deps: accepts@~1.2.10
563     - deps: mime-types@~2.1.2
564   * deps: qs@4.0.0
565     - Fix dropping parameters like `hasOwnProperty`
566     - Fix various parsing edge cases
567   * deps: type-is@~1.6.4
568     - deps: mime-types@~2.1.2
569     - perf: enable strict mode
570     - perf: remove argument reassignment
572 4.13.0 / 2015-06-20
573 ===================
575   * Add settings to debug output
576   * Fix `res.format` error when only `default` provided
577   * Fix issue where `next('route')` in `app.param` would incorrectly skip values
578   * Fix hiding platform issues with `decodeURIComponent`
579     - Only `URIError`s are a 400
580   * Fix using `*` before params in routes
581   * Fix using capture groups before params in routes
582   * Simplify `res.cookie` to call `res.append`
583   * Use `array-flatten` module for flattening arrays
584   * deps: accepts@~1.2.9
585     - deps: mime-types@~2.1.1
586     - perf: avoid argument reassignment & argument slice
587     - perf: avoid negotiator recursive construction
588     - perf: enable strict mode
589     - perf: remove unnecessary bitwise operator
590   * deps: cookie@0.1.3
591     - perf: deduce the scope of try-catch deopt
592     - perf: remove argument reassignments
593   * deps: escape-html@1.0.2
594   * deps: etag@~1.7.0
595     - Always include entity length in ETags for hash length extensions
596     - Generate non-Stats ETags using MD5 only (no longer CRC32)
597     - Improve stat performance by removing hashing
598     - Improve support for JXcore
599     - Remove base64 padding in ETags to shorten
600     - Support "fake" stats objects in environments without fs
601     - Use MD5 instead of MD4 in weak ETags over 1KB
602   * deps: finalhandler@0.4.0
603     - Fix a false-positive when unpiping in Node.js 0.8
604     - Support `statusCode` property on `Error` objects
605     - Use `unpipe` module for unpiping requests
606     - deps: escape-html@1.0.2
607     - deps: on-finished@~2.3.0
608     - perf: enable strict mode
609     - perf: remove argument reassignment
610   * deps: fresh@0.3.0
611     - Add weak `ETag` matching support
612   * deps: on-finished@~2.3.0
613     - Add defined behavior for HTTP `CONNECT` requests
614     - Add defined behavior for HTTP `Upgrade` requests
615     - deps: ee-first@1.1.1
616   * deps: path-to-regexp@0.1.6
617   * deps: send@0.13.0
618     - Allow Node.js HTTP server to set `Date` response header
619     - Fix incorrectly removing `Content-Location` on 304 response
620     - Improve the default redirect response headers
621     - Send appropriate headers on default error response
622     - Use `http-errors` for standard emitted errors
623     - Use `statuses` instead of `http` module for status messages
624     - deps: escape-html@1.0.2
625     - deps: etag@~1.7.0
626     - deps: fresh@0.3.0
627     - deps: on-finished@~2.3.0
628     - perf: enable strict mode
629     - perf: remove unnecessary array allocations
630   * deps: serve-static@~1.10.0
631     - Add `fallthrough` option
632     - Fix reading options from options prototype
633     - Improve the default redirect response headers
634     - Malformed URLs now `next()` instead of 400
635     - deps: escape-html@1.0.2
636     - deps: send@0.13.0
637     - perf: enable strict mode
638     - perf: remove argument reassignment
639   * deps: type-is@~1.6.3
640     - deps: mime-types@~2.1.1
641     - perf: reduce try block size
642     - perf: remove bitwise operations
643   * perf: enable strict mode
644   * perf: isolate `app.render` try block
645   * perf: remove argument reassignments in application
646   * perf: remove argument reassignments in request prototype
647   * perf: remove argument reassignments in response prototype
648   * perf: remove argument reassignments in routing
649   * perf: remove argument reassignments in `View`
650   * perf: skip attempting to decode zero length string
651   * perf: use saved reference to `http.STATUS_CODES`
653 4.12.4 / 2015-05-17
654 ===================
656   * deps: accepts@~1.2.7
657     - deps: mime-types@~2.0.11
658     - deps: negotiator@0.5.3
659   * deps: debug@~2.2.0
660     - deps: ms@0.7.1
661   * deps: depd@~1.0.1
662   * deps: etag@~1.6.0
663     - Improve support for JXcore
664     - Support "fake" stats objects in environments without `fs`
665   * deps: finalhandler@0.3.6
666     - deps: debug@~2.2.0
667     - deps: on-finished@~2.2.1
668   * deps: on-finished@~2.2.1
669     - Fix `isFinished(req)` when data buffered
670   * deps: proxy-addr@~1.0.8
671     - deps: ipaddr.js@1.0.1
672   * deps: qs@2.4.2
673    - Fix allowing parameters like `constructor`
674   * deps: send@0.12.3
675     - deps: debug@~2.2.0
676     - deps: depd@~1.0.1
677     - deps: etag@~1.6.0
678     - deps: ms@0.7.1
679     - deps: on-finished@~2.2.1
680   * deps: serve-static@~1.9.3
681     - deps: send@0.12.3
682   * deps: type-is@~1.6.2
683     - deps: mime-types@~2.0.11
685 4.12.3 / 2015-03-17
686 ===================
688   * deps: accepts@~1.2.5
689     - deps: mime-types@~2.0.10
690   * deps: debug@~2.1.3
691     - Fix high intensity foreground color for bold
692     - deps: ms@0.7.0
693   * deps: finalhandler@0.3.4
694     - deps: debug@~2.1.3
695   * deps: proxy-addr@~1.0.7
696     - deps: ipaddr.js@0.1.9
697   * deps: qs@2.4.1
698     - Fix error when parameter `hasOwnProperty` is present
699   * deps: send@0.12.2
700     - Throw errors early for invalid `extensions` or `index` options
701     - deps: debug@~2.1.3
702   * deps: serve-static@~1.9.2
703     - deps: send@0.12.2
704   * deps: type-is@~1.6.1
705     - deps: mime-types@~2.0.10
707 4.12.2 / 2015-03-02
708 ===================
710   * Fix regression where `"Request aborted"` is logged using `res.sendFile`
712 4.12.1 / 2015-03-01
713 ===================
715   * Fix constructing application with non-configurable prototype properties
716   * Fix `ECONNRESET` errors from `res.sendFile` usage
717   * Fix `req.host` when using "trust proxy" hops count
718   * Fix `req.protocol`/`req.secure` when using "trust proxy" hops count
719   * Fix wrong `code` on aborted connections from `res.sendFile`
720   * deps: merge-descriptors@1.0.0
722 4.12.0 / 2015-02-23
723 ===================
725   * Fix `"trust proxy"` setting to inherit when app is mounted
726   * Generate `ETag`s for all request responses
727     - No longer restricted to only responses for `GET` and `HEAD` requests
728   * Use `content-type` to parse `Content-Type` headers
729   * deps: accepts@~1.2.4
730     - Fix preference sorting to be stable for long acceptable lists
731     - deps: mime-types@~2.0.9
732     - deps: negotiator@0.5.1
733   * deps: cookie-signature@1.0.6
734   * deps: send@0.12.1
735     - Always read the stat size from the file
736     - Fix mutating passed-in `options`
737     - deps: mime@1.3.4
738   * deps: serve-static@~1.9.1
739     - deps: send@0.12.1
740   * deps: type-is@~1.6.0
741     - fix argument reassignment
742     - fix false-positives in `hasBody` `Transfer-Encoding` check
743     - support wildcard for both type and subtype (`*/*`)
744     - deps: mime-types@~2.0.9
746 4.11.2 / 2015-02-01
747 ===================
749   * Fix `res.redirect` double-calling `res.end` for `HEAD` requests
750   * deps: accepts@~1.2.3
751     - deps: mime-types@~2.0.8
752   * deps: proxy-addr@~1.0.6
753     - deps: ipaddr.js@0.1.8
754   * deps: type-is@~1.5.6
755     - deps: mime-types@~2.0.8
757 4.11.1 / 2015-01-20
758 ===================
760   * deps: send@0.11.1
761     - Fix root path disclosure
762   * deps: serve-static@~1.8.1
763     - Fix redirect loop in Node.js 0.11.14
764     - Fix root path disclosure
765     - deps: send@0.11.1
767 4.11.0 / 2015-01-13
768 ===================
770   * Add `res.append(field, val)` to append headers
771   * Deprecate leading `:` in `name` for `app.param(name, fn)`
772   * Deprecate `req.param()` -- use `req.params`, `req.body`, or `req.query` instead
773   * Deprecate `app.param(fn)`
774   * Fix `OPTIONS` responses to include the `HEAD` method properly
775   * Fix `res.sendFile` not always detecting aborted connection
776   * Match routes iteratively to prevent stack overflows
777   * deps: accepts@~1.2.2
778     - deps: mime-types@~2.0.7
779     - deps: negotiator@0.5.0
780   * deps: send@0.11.0
781     - deps: debug@~2.1.1
782     - deps: etag@~1.5.1
783     - deps: ms@0.7.0
784     - deps: on-finished@~2.2.0
785   * deps: serve-static@~1.8.0
786     - deps: send@0.11.0
788 4.10.8 / 2015-01-13
789 ===================
791   * Fix crash from error within `OPTIONS` response handler
792   * deps: proxy-addr@~1.0.5
793     - deps: ipaddr.js@0.1.6
795 4.10.7 / 2015-01-04
796 ===================
798   * Fix `Allow` header for `OPTIONS` to not contain duplicate methods
799   * Fix incorrect "Request aborted" for `res.sendFile` when `HEAD` or 304
800   * deps: debug@~2.1.1
801   * deps: finalhandler@0.3.3
802     - deps: debug@~2.1.1
803     - deps: on-finished@~2.2.0
804   * deps: methods@~1.1.1
805   * deps: on-finished@~2.2.0
806   * deps: serve-static@~1.7.2
807     - Fix potential open redirect when mounted at root
808   * deps: type-is@~1.5.5
809     - deps: mime-types@~2.0.7
811 4.10.6 / 2014-12-12
812 ===================
814   * Fix exception in `req.fresh`/`req.stale` without response headers
816 4.10.5 / 2014-12-10
817 ===================
819   * Fix `res.send` double-calling `res.end` for `HEAD` requests
820   * deps: accepts@~1.1.4
821     - deps: mime-types@~2.0.4
822   * deps: type-is@~1.5.4
823     - deps: mime-types@~2.0.4
825 4.10.4 / 2014-11-24
826 ===================
828   * Fix `res.sendfile` logging standard write errors
830 4.10.3 / 2014-11-23
831 ===================
833   * Fix `res.sendFile` logging standard write errors
834   * deps: etag@~1.5.1
835   * deps: proxy-addr@~1.0.4
836     - deps: ipaddr.js@0.1.5
837   * deps: qs@2.3.3
838     - Fix `arrayLimit` behavior
840 4.10.2 / 2014-11-09
841 ===================
843   * Correctly invoke async router callback asynchronously
844   * deps: accepts@~1.1.3
845     - deps: mime-types@~2.0.3
846   * deps: type-is@~1.5.3
847     - deps: mime-types@~2.0.3
849 4.10.1 / 2014-10-28
850 ===================
852   * Fix handling of URLs containing `://` in the path
853   * deps: qs@2.3.2
854     - Fix parsing of mixed objects and values
856 4.10.0 / 2014-10-23
857 ===================
859   * Add support for `app.set('views', array)`
860     - Views are looked up in sequence in array of directories
861   * Fix `res.send(status)` to mention `res.sendStatus(status)`
862   * Fix handling of invalid empty URLs
863   * Use `content-disposition` module for `res.attachment`/`res.download`
864     - Sends standards-compliant `Content-Disposition` header
865     - Full Unicode support
866   * Use `path.resolve` in view lookup
867   * deps: debug@~2.1.0
868     - Implement `DEBUG_FD` env variable support
869   * deps: depd@~1.0.0
870   * deps: etag@~1.5.0
871     - Improve string performance
872     - Slightly improve speed for weak ETags over 1KB
873   * deps: finalhandler@0.3.2
874     - Terminate in progress response only on error
875     - Use `on-finished` to determine request status
876     - deps: debug@~2.1.0
877     - deps: on-finished@~2.1.1
878   * deps: on-finished@~2.1.1
879     - Fix handling of pipelined requests
880   * deps: qs@2.3.0
881     - Fix parsing of mixed implicit and explicit arrays
882   * deps: send@0.10.1
883     - deps: debug@~2.1.0
884     - deps: depd@~1.0.0
885     - deps: etag@~1.5.0
886     - deps: on-finished@~2.1.1
887   * deps: serve-static@~1.7.1
888     - deps: send@0.10.1
890 4.9.8 / 2014-10-17
891 ==================
893   * Fix `res.redirect` body when redirect status specified
894   * deps: accepts@~1.1.2
895     - Fix error when media type has invalid parameter
896     - deps: negotiator@0.4.9
898 4.9.7 / 2014-10-10
899 ==================
901   * Fix using same param name in array of paths
903 4.9.6 / 2014-10-08
904 ==================
906   * deps: accepts@~1.1.1
907     - deps: mime-types@~2.0.2
908     - deps: negotiator@0.4.8
909   * deps: serve-static@~1.6.4
910     - Fix redirect loop when index file serving disabled
911   * deps: type-is@~1.5.2
912     - deps: mime-types@~2.0.2
914 4.9.5 / 2014-09-24
915 ==================
917   * deps: etag@~1.4.0
918   * deps: proxy-addr@~1.0.3
919     - Use `forwarded` npm module
920   * deps: send@0.9.3
921     - deps: etag@~1.4.0
922   * deps: serve-static@~1.6.3
923     - deps: send@0.9.3
925 4.9.4 / 2014-09-19
926 ==================
928   * deps: qs@2.2.4
929     - Fix issue with object keys starting with numbers truncated
931 4.9.3 / 2014-09-18
932 ==================
934   * deps: proxy-addr@~1.0.2
935     - Fix a global leak when multiple subnets are trusted
936     - deps: ipaddr.js@0.1.3
938 4.9.2 / 2014-09-17
939 ==================
941   * Fix regression for empty string `path` in `app.use`
942   * Fix `router.use` to accept array of middleware without path
943   * Improve error message for bad `app.use` arguments
945 4.9.1 / 2014-09-16
946 ==================
948   * Fix `app.use` to accept array of middleware without path
949   * deps: depd@0.4.5
950   * deps: etag@~1.3.1
951   * deps: send@0.9.2
952     - deps: depd@0.4.5
953     - deps: etag@~1.3.1
954     - deps: range-parser@~1.0.2
955   * deps: serve-static@~1.6.2
956     - deps: send@0.9.2
958 4.9.0 / 2014-09-08
959 ==================
961   * Add `res.sendStatus`
962   * Invoke callback for sendfile when client aborts
963     - Applies to `res.sendFile`, `res.sendfile`, and `res.download`
964     - `err` will be populated with request aborted error
965   * Support IP address host in `req.subdomains`
966   * Use `etag` to generate `ETag` headers
967   * deps: accepts@~1.1.0
968     - update `mime-types`
969   * deps: cookie-signature@1.0.5
970   * deps: debug@~2.0.0
971   * deps: finalhandler@0.2.0
972     - Set `X-Content-Type-Options: nosniff` header
973     - deps: debug@~2.0.0
974   * deps: fresh@0.2.4
975   * deps: media-typer@0.3.0
976     - Throw error when parameter format invalid on parse
977   * deps: qs@2.2.3
978     - Fix issue where first empty value in array is discarded
979   * deps: range-parser@~1.0.2
980   * deps: send@0.9.1
981     - Add `lastModified` option
982     - Use `etag` to generate `ETag` header
983     - deps: debug@~2.0.0
984     - deps: fresh@0.2.4
985   * deps: serve-static@~1.6.1
986     - Add `lastModified` option
987     - deps: send@0.9.1
988   * deps: type-is@~1.5.1
989     - fix `hasbody` to be true for `content-length: 0`
990     - deps: media-typer@0.3.0
991     - deps: mime-types@~2.0.1
992   * deps: vary@~1.0.0
993     - Accept valid `Vary` header string as `field`
995 4.8.8 / 2014-09-04
996 ==================
998   * deps: send@0.8.5
999     - Fix a path traversal issue when using `root`
1000     - Fix malicious path detection for empty string path
1001   * deps: serve-static@~1.5.4
1002     - deps: send@0.8.5
1004 4.8.7 / 2014-08-29
1005 ==================
1007   * deps: qs@2.2.2
1008     - Remove unnecessary cloning
1010 4.8.6 / 2014-08-27
1011 ==================
1013   * deps: qs@2.2.0
1014     - Array parsing fix
1015     - Performance improvements
1017 4.8.5 / 2014-08-18
1018 ==================
1020   * deps: send@0.8.3
1021     - deps: destroy@1.0.3
1022     - deps: on-finished@2.1.0
1023   * deps: serve-static@~1.5.3
1024     - deps: send@0.8.3
1026 4.8.4 / 2014-08-14
1027 ==================
1029   * deps: qs@1.2.2
1030   * deps: send@0.8.2
1031     - Work around `fd` leak in Node.js 0.10 for `fs.ReadStream`
1032   * deps: serve-static@~1.5.2
1033     - deps: send@0.8.2
1035 4.8.3 / 2014-08-10
1036 ==================
1038   * deps: parseurl@~1.3.0
1039   * deps: qs@1.2.1
1040   * deps: serve-static@~1.5.1
1041     - Fix parsing of weird `req.originalUrl` values
1042     - deps: parseurl@~1.3.0
1043     - deps: utils-merge@1.0.0
1045 4.8.2 / 2014-08-07
1046 ==================
1048   * deps: qs@1.2.0
1049     - Fix parsing array of objects
1051 4.8.1 / 2014-08-06
1052 ==================
1054   * fix incorrect deprecation warnings on `res.download`
1055   * deps: qs@1.1.0
1056     - Accept urlencoded square brackets
1057     - Accept empty values in implicit array notation
1059 4.8.0 / 2014-08-05
1060 ==================
1062   * add `res.sendFile`
1063     - accepts a file system path instead of a URL
1064     - requires an absolute path or `root` option specified
1065   * deprecate `res.sendfile` -- use `res.sendFile` instead
1066   * support mounted app as any argument to `app.use()`
1067   * deps: qs@1.0.2
1068     - Complete rewrite
1069     - Limits array length to 20
1070     - Limits object depth to 5
1071     - Limits parameters to 1,000
1072   * deps: send@0.8.1
1073     - Add `extensions` option
1074   * deps: serve-static@~1.5.0
1075     - Add `extensions` option
1076     - deps: send@0.8.1
1078 4.7.4 / 2014-08-04
1079 ==================
1081   * fix `res.sendfile` regression for serving directory index files
1082   * deps: send@0.7.4
1083     - Fix incorrect 403 on Windows and Node.js 0.11
1084     - Fix serving index files without root dir
1085   * deps: serve-static@~1.4.4
1086     - deps: send@0.7.4
1088 4.7.3 / 2014-08-04
1089 ==================
1091   * deps: send@0.7.3
1092     - Fix incorrect 403 on Windows and Node.js 0.11
1093   * deps: serve-static@~1.4.3
1094     - Fix incorrect 403 on Windows and Node.js 0.11
1095     - deps: send@0.7.3
1097 4.7.2 / 2014-07-27
1098 ==================
1100   * deps: depd@0.4.4
1101     - Work-around v8 generating empty stack traces
1102   * deps: send@0.7.2
1103     - deps: depd@0.4.4
1104   * deps: serve-static@~1.4.2
1106 4.7.1 / 2014-07-26
1107 ==================
1109   * deps: depd@0.4.3
1110     - Fix exception when global `Error.stackTraceLimit` is too low
1111   * deps: send@0.7.1
1112     - deps: depd@0.4.3
1113   * deps: serve-static@~1.4.1
1115 4.7.0 / 2014-07-25
1116 ==================
1118   * fix `req.protocol` for proxy-direct connections
1119   * configurable query parser with `app.set('query parser', parser)`
1120     - `app.set('query parser', 'extended')` parse with "qs" module
1121     - `app.set('query parser', 'simple')` parse with "querystring" core module
1122     - `app.set('query parser', false)` disable query string parsing
1123     - `app.set('query parser', true)` enable simple parsing
1124   * deprecate `res.json(status, obj)` -- use `res.status(status).json(obj)` instead
1125   * deprecate `res.jsonp(status, obj)` -- use `res.status(status).jsonp(obj)` instead
1126   * deprecate `res.send(status, body)` -- use `res.status(status).send(body)` instead
1127   * deps: debug@1.0.4
1128   * deps: depd@0.4.2
1129     - Add `TRACE_DEPRECATION` environment variable
1130     - Remove non-standard grey color from color output
1131     - Support `--no-deprecation` argument
1132     - Support `--trace-deprecation` argument
1133   * deps: finalhandler@0.1.0
1134     - Respond after request fully read
1135     - deps: debug@1.0.4
1136   * deps: parseurl@~1.2.0
1137     - Cache URLs based on original value
1138     - Remove no-longer-needed URL mis-parse work-around
1139     - Simplify the "fast-path" `RegExp`
1140   * deps: send@0.7.0
1141     - Add `dotfiles` option
1142     - Cap `maxAge` value to 1 year
1143     - deps: debug@1.0.4
1144     - deps: depd@0.4.2
1145   * deps: serve-static@~1.4.0
1146     - deps: parseurl@~1.2.0
1147     - deps: send@0.7.0
1148   * perf: prevent multiple `Buffer` creation in `res.send`
1150 4.6.1 / 2014-07-12
1151 ==================
1153   * fix `subapp.mountpath` regression for `app.use(subapp)`
1155 4.6.0 / 2014-07-11
1156 ==================
1158   * accept multiple callbacks to `app.use()`
1159   * add explicit "Rosetta Flash JSONP abuse" protection
1160     - previous versions are not vulnerable; this is just explicit protection
1161   * catch errors in multiple `req.param(name, fn)` handlers
1162   * deprecate `res.redirect(url, status)` -- use `res.redirect(status, url)` instead
1163   * fix `res.send(status, num)` to send `num` as json (not error)
1164   * remove unnecessary escaping when `res.jsonp` returns JSON response
1165   * support non-string `path` in `app.use(path, fn)`
1166     - supports array of paths
1167     - supports `RegExp`
1168   * router: fix optimization on router exit
1169   * router: refactor location of `try` blocks
1170   * router: speed up standard `app.use(fn)`
1171   * deps: debug@1.0.3
1172     - Add support for multiple wildcards in namespaces
1173   * deps: finalhandler@0.0.3
1174     - deps: debug@1.0.3
1175   * deps: methods@1.1.0
1176     - add `CONNECT`
1177   * deps: parseurl@~1.1.3
1178     - faster parsing of href-only URLs
1179   * deps: path-to-regexp@0.1.3
1180   * deps: send@0.6.0
1181     - deps: debug@1.0.3
1182   * deps: serve-static@~1.3.2
1183     - deps: parseurl@~1.1.3
1184     - deps: send@0.6.0
1185   * perf: fix arguments reassign deopt in some `res` methods
1187 4.5.1 / 2014-07-06
1188 ==================
1190  * fix routing regression when altering `req.method`
1192 4.5.0 / 2014-07-04
1193 ==================
1195  * add deprecation message to non-plural `req.accepts*`
1196  * add deprecation message to `res.send(body, status)`
1197  * add deprecation message to `res.vary()`
1198  * add `headers` option to `res.sendfile`
1199    - use to set headers on successful file transfer
1200  * add `mergeParams` option to `Router`
1201    - merges `req.params` from parent routes
1202  * add `req.hostname` -- correct name for what `req.host` returns
1203  * deprecate things with `depd` module
1204  * deprecate `req.host` -- use `req.hostname` instead
1205  * fix behavior when handling request without routes
1206  * fix handling when `route.all` is only route
1207  * invoke `router.param()` only when route matches
1208  * restore `req.params` after invoking router
1209  * use `finalhandler` for final response handling
1210  * use `media-typer` to alter content-type charset
1211  * deps: accepts@~1.0.7
1212  * deps: send@0.5.0
1213    - Accept string for `maxage` (converted by `ms`)
1214    - Include link in default redirect response
1215  * deps: serve-static@~1.3.0
1216    - Accept string for `maxAge` (converted by `ms`)
1217    - Add `setHeaders` option
1218    - Include HTML link in redirect response
1219    - deps: send@0.5.0
1220  * deps: type-is@~1.3.2
1222 4.4.5 / 2014-06-26
1223 ==================
1225  * deps: cookie-signature@1.0.4
1226    - fix for timing attacks
1228 4.4.4 / 2014-06-20
1229 ==================
1231  * fix `res.attachment` Unicode filenames in Safari
1232  * fix "trim prefix" debug message in `express:router`
1233  * deps: accepts@~1.0.5
1234  * deps: buffer-crc32@0.2.3
1236 4.4.3 / 2014-06-11
1237 ==================
1239  * fix persistence of modified `req.params[name]` from `app.param()`
1240  * deps: accepts@1.0.3
1241    - deps: negotiator@0.4.6
1242  * deps: debug@1.0.2
1243  * deps: send@0.4.3
1244    - Do not throw uncatchable error on file open race condition
1245    - Use `escape-html` for HTML escaping
1246    - deps: debug@1.0.2
1247    - deps: finished@1.2.2
1248    - deps: fresh@0.2.2
1249  * deps: serve-static@1.2.3
1250    - Do not throw uncatchable error on file open race condition
1251    - deps: send@0.4.3
1253 4.4.2 / 2014-06-09
1254 ==================
1256  * fix catching errors from top-level handlers
1257  * use `vary` module for `res.vary`
1258  * deps: debug@1.0.1
1259  * deps: proxy-addr@1.0.1
1260  * deps: send@0.4.2
1261    - fix "event emitter leak" warnings
1262    - deps: debug@1.0.1
1263    - deps: finished@1.2.1
1264  * deps: serve-static@1.2.2
1265    - fix "event emitter leak" warnings
1266    - deps: send@0.4.2
1267  * deps: type-is@1.2.1
1269 4.4.1 / 2014-06-02
1270 ==================
1272  * deps: methods@1.0.1
1273  * deps: send@0.4.1
1274    - Send `max-age` in `Cache-Control` in correct format
1275  * deps: serve-static@1.2.1
1276    - use `escape-html` for escaping
1277    - deps: send@0.4.1
1279 4.4.0 / 2014-05-30
1280 ==================
1282  * custom etag control with `app.set('etag', val)`
1283    - `app.set('etag', function(body, encoding){ return '"etag"' })` custom etag generation
1284    - `app.set('etag', 'weak')` weak tag
1285    - `app.set('etag', 'strong')` strong etag
1286    - `app.set('etag', false)` turn off
1287    - `app.set('etag', true)` standard etag
1288  * mark `res.send` ETag as weak and reduce collisions
1289  * update accepts to 1.0.2
1290    - Fix interpretation when header not in request
1291  * update send to 0.4.0
1292    - Calculate ETag with md5 for reduced collisions
1293    - Ignore stream errors after request ends
1294    - deps: debug@0.8.1
1295  * update serve-static to 1.2.0
1296    - Calculate ETag with md5 for reduced collisions
1297    - Ignore stream errors after request ends
1298    - deps: send@0.4.0
1300 4.3.2 / 2014-05-28
1301 ==================
1303  * fix handling of errors from `router.param()` callbacks
1305 4.3.1 / 2014-05-23
1306 ==================
1308  * revert "fix behavior of multiple `app.VERB` for the same path"
1309    - this caused a regression in the order of route execution
1311 4.3.0 / 2014-05-21
1312 ==================
1314  * add `req.baseUrl` to access the path stripped from `req.url` in routes
1315  * fix behavior of multiple `app.VERB` for the same path
1316  * fix issue routing requests among sub routers
1317  * invoke `router.param()` only when necessary instead of every match
1318  * proper proxy trust with `app.set('trust proxy', trust)`
1319    - `app.set('trust proxy', 1)` trust first hop
1320    - `app.set('trust proxy', 'loopback')` trust loopback addresses
1321    - `app.set('trust proxy', '10.0.0.1')` trust single IP
1322    - `app.set('trust proxy', '10.0.0.1/16')` trust subnet
1323    - `app.set('trust proxy', '10.0.0.1, 10.0.0.2')` trust list
1324    - `app.set('trust proxy', false)` turn off
1325    - `app.set('trust proxy', true)` trust everything
1326  * set proper `charset` in `Content-Type` for `res.send`
1327  * update type-is to 1.2.0
1328    - support suffix matching
1330 4.2.0 / 2014-05-11
1331 ==================
1333  * deprecate `app.del()` -- use `app.delete()` instead
1334  * deprecate `res.json(obj, status)` -- use `res.json(status, obj)` instead
1335    - the edge-case `res.json(status, num)` requires `res.status(status).json(num)`
1336  * deprecate `res.jsonp(obj, status)` -- use `res.jsonp(status, obj)` instead
1337    - the edge-case `res.jsonp(status, num)` requires `res.status(status).jsonp(num)`
1338  * fix `req.next` when inside router instance
1339  * include `ETag` header in `HEAD` requests
1340  * keep previous `Content-Type` for `res.jsonp`
1341  * support PURGE method
1342    - add `app.purge`
1343    - add `router.purge`
1344    - include PURGE in `app.all`
1345  * update debug to 0.8.0
1346    - add `enable()` method
1347    - change from stderr to stdout
1348  * update methods to 1.0.0
1349    - add PURGE
1351 4.1.2 / 2014-05-08
1352 ==================
1354  * fix `req.host` for IPv6 literals
1355  * fix `res.jsonp` error if callback param is object
1357 4.1.1 / 2014-04-27
1358 ==================
1360  * fix package.json to reflect supported node version
1362 4.1.0 / 2014-04-24
1363 ==================
1365  * pass options from `res.sendfile` to `send`
1366  * preserve casing of headers in `res.header` and `res.set`
1367  * support unicode file names in `res.attachment` and `res.download`
1368  * update accepts to 1.0.1
1369    - deps: negotiator@0.4.0
1370  * update cookie to 0.1.2
1371    - Fix for maxAge == 0
1372    - made compat with expires field
1373  * update send to 0.3.0
1374    - Accept API options in options object
1375    - Coerce option types
1376    - Control whether to generate etags
1377    - Default directory access to 403 when index disabled
1378    - Fix sending files with dots without root set
1379    - Include file path in etag
1380    - Make "Can't set headers after they are sent." catchable
1381    - Send full entity-body for multi range requests
1382    - Set etags to "weak"
1383    - Support "If-Range" header
1384    - Support multiple index paths
1385    - deps: mime@1.2.11
1386  * update serve-static to 1.1.0
1387    - Accept options directly to `send` module
1388    - Resolve relative paths at middleware setup
1389    - Use parseurl to parse the URL from request
1390    - deps: send@0.3.0
1391  * update type-is to 1.1.0
1392    - add non-array values support
1393    - add `multipart` as a shorthand
1395 4.0.0 / 2014-04-09
1396 ==================
1398  * remove:
1399    - node 0.8 support
1400    - connect and connect's patches except for charset handling
1401    - express(1) - moved to [express-generator](https://github.com/expressjs/generator)
1402    - `express.createServer()` - it has been deprecated for a long time. Use `express()`
1403    - `app.configure` - use logic in your own app code
1404    - `app.router` - is removed
1405    - `req.auth` - use `basic-auth` instead
1406    - `req.accepted*` - use `req.accepts*()` instead
1407    - `res.location` - relative URL resolution is removed
1408    - `res.charset` - include the charset in the content type when using `res.set()`
1409    - all bundled middleware except `static`
1410  * change:
1411    - `app.route` -> `app.mountpath` when mounting an express app in another express app
1412    - `json spaces` no longer enabled by default in development
1413    - `req.accepts*` -> `req.accepts*s` - i.e. `req.acceptsEncoding` -> `req.acceptsEncodings`
1414    - `req.params` is now an object instead of an array
1415    - `res.locals` is no longer a function. It is a plain js object. Treat it as such.
1416    - `res.headerSent` -> `res.headersSent` to match node.js ServerResponse object
1417  * refactor:
1418    - `req.accepts*` with [accepts](https://github.com/expressjs/accepts)
1419    - `req.is` with [type-is](https://github.com/expressjs/type-is)
1420    - [path-to-regexp](https://github.com/component/path-to-regexp)
1421  * add:
1422    - `app.router()` - returns the app Router instance
1423    - `app.route()` - Proxy to the app's `Router#route()` method to create a new route
1424    - Router & Route - public API
1426 3.21.2 / 2015-07-31
1427 ===================
1429   * deps: connect@2.30.2
1430     - deps: body-parser@~1.13.3
1431     - deps: compression@~1.5.2
1432     - deps: errorhandler@~1.4.2
1433     - deps: method-override@~2.3.5
1434     - deps: serve-index@~1.7.2
1435     - deps: type-is@~1.6.6
1436     - deps: vhost@~3.0.1
1437   * deps: vary@~1.0.1
1438     - Fix setting empty header from empty `field`
1439     - perf: enable strict mode
1440     - perf: remove argument reassignments
1442 3.21.1 / 2015-07-05
1443 ===================
1445   * deps: basic-auth@~1.0.3
1446   * deps: connect@2.30.1
1447     - deps: body-parser@~1.13.2
1448     - deps: compression@~1.5.1
1449     - deps: errorhandler@~1.4.1
1450     - deps: morgan@~1.6.1
1451     - deps: pause@0.1.0
1452     - deps: qs@4.0.0
1453     - deps: serve-index@~1.7.1
1454     - deps: type-is@~1.6.4
1456 3.21.0 / 2015-06-18
1457 ===================
1459   * deps: basic-auth@1.0.2
1460     - perf: enable strict mode
1461     - perf: hoist regular expression
1462     - perf: parse with regular expressions
1463     - perf: remove argument reassignment
1464   * deps: connect@2.30.0
1465     - deps: body-parser@~1.13.1
1466     - deps: bytes@2.1.0
1467     - deps: compression@~1.5.0
1468     - deps: cookie@0.1.3
1469     - deps: cookie-parser@~1.3.5
1470     - deps: csurf@~1.8.3
1471     - deps: errorhandler@~1.4.0
1472     - deps: express-session@~1.11.3
1473     - deps: finalhandler@0.4.0
1474     - deps: fresh@0.3.0
1475     - deps: morgan@~1.6.0
1476     - deps: serve-favicon@~2.3.0
1477     - deps: serve-index@~1.7.0
1478     - deps: serve-static@~1.10.0
1479     - deps: type-is@~1.6.3
1480   * deps: cookie@0.1.3
1481     - perf: deduce the scope of try-catch deopt
1482     - perf: remove argument reassignments
1483   * deps: escape-html@1.0.2
1484   * deps: etag@~1.7.0
1485     - Always include entity length in ETags for hash length extensions
1486     - Generate non-Stats ETags using MD5 only (no longer CRC32)
1487     - Improve stat performance by removing hashing
1488     - Improve support for JXcore
1489     - Remove base64 padding in ETags to shorten
1490     - Support "fake" stats objects in environments without fs
1491     - Use MD5 instead of MD4 in weak ETags over 1KB
1492   * deps: fresh@0.3.0
1493     - Add weak `ETag` matching support
1494   * deps: mkdirp@0.5.1
1495     - Work in global strict mode
1496   * deps: send@0.13.0
1497     - Allow Node.js HTTP server to set `Date` response header
1498     - Fix incorrectly removing `Content-Location` on 304 response
1499     - Improve the default redirect response headers
1500     - Send appropriate headers on default error response
1501     - Use `http-errors` for standard emitted errors
1502     - Use `statuses` instead of `http` module for status messages
1503     - deps: escape-html@1.0.2
1504     - deps: etag@~1.7.0
1505     - deps: fresh@0.3.0
1506     - deps: on-finished@~2.3.0
1507     - perf: enable strict mode
1508     - perf: remove unnecessary array allocations
1510 3.20.3 / 2015-05-17
1511 ===================
1513   * deps: connect@2.29.2
1514     - deps: body-parser@~1.12.4
1515     - deps: compression@~1.4.4
1516     - deps: connect-timeout@~1.6.2
1517     - deps: debug@~2.2.0
1518     - deps: depd@~1.0.1
1519     - deps: errorhandler@~1.3.6
1520     - deps: finalhandler@0.3.6
1521     - deps: method-override@~2.3.3
1522     - deps: morgan@~1.5.3
1523     - deps: qs@2.4.2
1524     - deps: response-time@~2.3.1
1525     - deps: serve-favicon@~2.2.1
1526     - deps: serve-index@~1.6.4
1527     - deps: serve-static@~1.9.3
1528     - deps: type-is@~1.6.2
1529   * deps: debug@~2.2.0
1530     - deps: ms@0.7.1
1531   * deps: depd@~1.0.1
1532   * deps: proxy-addr@~1.0.8
1533     - deps: ipaddr.js@1.0.1
1534   * deps: send@0.12.3
1535     - deps: debug@~2.2.0
1536     - deps: depd@~1.0.1
1537     - deps: etag@~1.6.0
1538     - deps: ms@0.7.1
1539     - deps: on-finished@~2.2.1
1541 3.20.2 / 2015-03-16
1542 ===================
1544   * deps: connect@2.29.1
1545     - deps: body-parser@~1.12.2
1546     - deps: compression@~1.4.3
1547     - deps: connect-timeout@~1.6.1
1548     - deps: debug@~2.1.3
1549     - deps: errorhandler@~1.3.5
1550     - deps: express-session@~1.10.4
1551     - deps: finalhandler@0.3.4
1552     - deps: method-override@~2.3.2
1553     - deps: morgan@~1.5.2
1554     - deps: qs@2.4.1
1555     - deps: serve-index@~1.6.3
1556     - deps: serve-static@~1.9.2
1557     - deps: type-is@~1.6.1
1558   * deps: debug@~2.1.3
1559     - Fix high intensity foreground color for bold
1560     - deps: ms@0.7.0
1561   * deps: merge-descriptors@1.0.0
1562   * deps: proxy-addr@~1.0.7
1563     - deps: ipaddr.js@0.1.9
1564   * deps: send@0.12.2
1565     - Throw errors early for invalid `extensions` or `index` options
1566     - deps: debug@~2.1.3
1568 3.20.1 / 2015-02-28
1569 ===================
1571   * Fix `req.host` when using "trust proxy" hops count
1572   * Fix `req.protocol`/`req.secure` when using "trust proxy" hops count
1574 3.20.0 / 2015-02-18
1575 ===================
1577   * Fix `"trust proxy"` setting to inherit when app is mounted
1578   * Generate `ETag`s for all request responses
1579     - No longer restricted to only responses for `GET` and `HEAD` requests
1580   * Use `content-type` to parse `Content-Type` headers
1581   * deps: connect@2.29.0
1582     - Use `content-type` to parse `Content-Type` headers
1583     - deps: body-parser@~1.12.0
1584     - deps: compression@~1.4.1
1585     - deps: connect-timeout@~1.6.0
1586     - deps: cookie-parser@~1.3.4
1587     - deps: cookie-signature@1.0.6
1588     - deps: csurf@~1.7.0
1589     - deps: errorhandler@~1.3.4
1590     - deps: express-session@~1.10.3
1591     - deps: http-errors@~1.3.1
1592     - deps: response-time@~2.3.0
1593     - deps: serve-index@~1.6.2
1594     - deps: serve-static@~1.9.1
1595     - deps: type-is@~1.6.0
1596   * deps: cookie-signature@1.0.6
1597   * deps: send@0.12.1
1598     - Always read the stat size from the file
1599     - Fix mutating passed-in `options`
1600     - deps: mime@1.3.4
1602 3.19.2 / 2015-02-01
1603 ===================
1605   * deps: connect@2.28.3
1606     - deps: compression@~1.3.1
1607     - deps: csurf@~1.6.6
1608     - deps: errorhandler@~1.3.3
1609     - deps: express-session@~1.10.2
1610     - deps: serve-index@~1.6.1
1611     - deps: type-is@~1.5.6
1612   * deps: proxy-addr@~1.0.6
1613     - deps: ipaddr.js@0.1.8
1615 3.19.1 / 2015-01-20
1616 ===================
1618   * deps: connect@2.28.2
1619     - deps: body-parser@~1.10.2
1620     - deps: serve-static@~1.8.1
1621   * deps: send@0.11.1
1622     - Fix root path disclosure
1624 3.19.0 / 2015-01-09
1625 ===================
1627   * Fix `OPTIONS` responses to include the `HEAD` method property
1628   * Use `readline` for prompt in `express(1)`
1629   * deps: commander@2.6.0
1630   * deps: connect@2.28.1
1631     - deps: body-parser@~1.10.1
1632     - deps: compression@~1.3.0
1633     - deps: connect-timeout@~1.5.0
1634     - deps: csurf@~1.6.4
1635     - deps: debug@~2.1.1
1636     - deps: errorhandler@~1.3.2
1637     - deps: express-session@~1.10.1
1638     - deps: finalhandler@0.3.3
1639     - deps: method-override@~2.3.1
1640     - deps: morgan@~1.5.1
1641     - deps: serve-favicon@~2.2.0
1642     - deps: serve-index@~1.6.0
1643     - deps: serve-static@~1.8.0
1644     - deps: type-is@~1.5.5
1645   * deps: debug@~2.1.1
1646   * deps: methods@~1.1.1
1647   * deps: proxy-addr@~1.0.5
1648     - deps: ipaddr.js@0.1.6
1649   * deps: send@0.11.0
1650     - deps: debug@~2.1.1
1651     - deps: etag@~1.5.1
1652     - deps: ms@0.7.0
1653     - deps: on-finished@~2.2.0
1655 3.18.6 / 2014-12-12
1656 ===================
1658   * Fix exception in `req.fresh`/`req.stale` without response headers
1660 3.18.5 / 2014-12-11
1661 ===================
1663   * deps: connect@2.27.6
1664     - deps: compression@~1.2.2
1665     - deps: express-session@~1.9.3
1666     - deps: http-errors@~1.2.8
1667     - deps: serve-index@~1.5.3
1668     - deps: type-is@~1.5.4
1670 3.18.4 / 2014-11-23
1671 ===================
1673   * deps: connect@2.27.4
1674     - deps: body-parser@~1.9.3
1675     - deps: compression@~1.2.1
1676     - deps: errorhandler@~1.2.3
1677     - deps: express-session@~1.9.2
1678     - deps: qs@2.3.3
1679     - deps: serve-favicon@~2.1.7
1680     - deps: serve-static@~1.5.1
1681     - deps: type-is@~1.5.3
1682   * deps: etag@~1.5.1
1683   * deps: proxy-addr@~1.0.4
1684     - deps: ipaddr.js@0.1.5
1686 3.18.3 / 2014-11-09
1687 ===================
1689   * deps: connect@2.27.3
1690     - Correctly invoke async callback asynchronously
1691     - deps: csurf@~1.6.3
1693 3.18.2 / 2014-10-28
1694 ===================
1696   * deps: connect@2.27.2
1697     - Fix handling of URLs containing `://` in the path
1698     - deps: body-parser@~1.9.2
1699     - deps: qs@2.3.2
1701 3.18.1 / 2014-10-22
1702 ===================
1704   * Fix internal `utils.merge` deprecation warnings
1705   * deps: connect@2.27.1
1706     - deps: body-parser@~1.9.1
1707     - deps: express-session@~1.9.1
1708     - deps: finalhandler@0.3.2
1709     - deps: morgan@~1.4.1
1710     - deps: qs@2.3.0
1711     - deps: serve-static@~1.7.1
1712   * deps: send@0.10.1
1713     - deps: on-finished@~2.1.1
1715 3.18.0 / 2014-10-17
1716 ===================
1718   * Use `content-disposition` module for `res.attachment`/`res.download`
1719     - Sends standards-compliant `Content-Disposition` header
1720     - Full Unicode support
1721   * Use `etag` module to generate `ETag` headers
1722   * deps: connect@2.27.0
1723     - Use `http-errors` module for creating errors
1724     - Use `utils-merge` module for merging objects
1725     - deps: body-parser@~1.9.0
1726     - deps: compression@~1.2.0
1727     - deps: connect-timeout@~1.4.0
1728     - deps: debug@~2.1.0
1729     - deps: depd@~1.0.0
1730     - deps: express-session@~1.9.0
1731     - deps: finalhandler@0.3.1
1732     - deps: method-override@~2.3.0
1733     - deps: morgan@~1.4.0
1734     - deps: response-time@~2.2.0
1735     - deps: serve-favicon@~2.1.6
1736     - deps: serve-index@~1.5.0
1737     - deps: serve-static@~1.7.0
1738   * deps: debug@~2.1.0
1739     - Implement `DEBUG_FD` env variable support
1740   * deps: depd@~1.0.0
1741   * deps: send@0.10.0
1742     - deps: debug@~2.1.0
1743     - deps: depd@~1.0.0
1744     - deps: etag@~1.5.0
1746 3.17.8 / 2014-10-15
1747 ===================
1749   * deps: connect@2.26.6
1750     - deps: compression@~1.1.2
1751     - deps: csurf@~1.6.2
1752     - deps: errorhandler@~1.2.2
1754 3.17.7 / 2014-10-08
1755 ===================
1757   * deps: connect@2.26.5
1758     - Fix accepting non-object arguments to `logger`
1759     - deps: serve-static@~1.6.4
1761 3.17.6 / 2014-10-02
1762 ===================
1764   * deps: connect@2.26.4
1765     - deps: morgan@~1.3.2
1766     - deps: type-is@~1.5.2
1768 3.17.5 / 2014-09-24
1769 ===================
1771   * deps: connect@2.26.3
1772     - deps: body-parser@~1.8.4
1773     - deps: serve-favicon@~2.1.5
1774     - deps: serve-static@~1.6.3
1775   * deps: proxy-addr@~1.0.3
1776     - Use `forwarded` npm module
1777   * deps: send@0.9.3
1778     - deps: etag@~1.4.0
1780 3.17.4 / 2014-09-19
1781 ===================
1783   * deps: connect@2.26.2
1784     - deps: body-parser@~1.8.3
1785     - deps: qs@2.2.4
1787 3.17.3 / 2014-09-18
1788 ===================
1790   * deps: proxy-addr@~1.0.2
1791     - Fix a global leak when multiple subnets are trusted
1792     - deps: ipaddr.js@0.1.3
1794 3.17.2 / 2014-09-15
1795 ===================
1797   * Use `crc` instead of `buffer-crc32` for speed
1798   * deps: connect@2.26.1
1799     - deps: body-parser@~1.8.2
1800     - deps: depd@0.4.5
1801     - deps: express-session@~1.8.2
1802     - deps: morgan@~1.3.1
1803     - deps: serve-favicon@~2.1.3
1804     - deps: serve-static@~1.6.2
1805   * deps: depd@0.4.5
1806   * deps: send@0.9.2
1807     - deps: depd@0.4.5
1808     - deps: etag@~1.3.1
1809     - deps: range-parser@~1.0.2
1811 3.17.1 / 2014-09-08
1812 ===================
1814   * Fix error in `req.subdomains` on empty host
1816 3.17.0 / 2014-09-08
1817 ===================
1819   * Support `X-Forwarded-Host` in `req.subdomains`
1820   * Support IP address host in `req.subdomains`
1821   * deps: connect@2.26.0
1822     - deps: body-parser@~1.8.1
1823     - deps: compression@~1.1.0
1824     - deps: connect-timeout@~1.3.0
1825     - deps: cookie-parser@~1.3.3
1826     - deps: cookie-signature@1.0.5
1827     - deps: csurf@~1.6.1
1828     - deps: debug@~2.0.0
1829     - deps: errorhandler@~1.2.0
1830     - deps: express-session@~1.8.1
1831     - deps: finalhandler@0.2.0
1832     - deps: fresh@0.2.4
1833     - deps: media-typer@0.3.0
1834     - deps: method-override@~2.2.0
1835     - deps: morgan@~1.3.0
1836     - deps: qs@2.2.3
1837     - deps: serve-favicon@~2.1.3
1838     - deps: serve-index@~1.2.1
1839     - deps: serve-static@~1.6.1
1840     - deps: type-is@~1.5.1
1841     - deps: vhost@~3.0.0
1842   * deps: cookie-signature@1.0.5
1843   * deps: debug@~2.0.0
1844   * deps: fresh@0.2.4
1845   * deps: media-typer@0.3.0
1846     - Throw error when parameter format invalid on parse
1847   * deps: range-parser@~1.0.2
1848   * deps: send@0.9.1
1849     - Add `lastModified` option
1850     - Use `etag` to generate `ETag` header
1851     - deps: debug@~2.0.0
1852     - deps: fresh@0.2.4
1853   * deps: vary@~1.0.0
1854     - Accept valid `Vary` header string as `field`
1856 3.16.10 / 2014-09-04
1857 ====================
1859   * deps: connect@2.25.10
1860     - deps: serve-static@~1.5.4
1861   * deps: send@0.8.5
1862     - Fix a path traversal issue when using `root`
1863     - Fix malicious path detection for empty string path
1865 3.16.9 / 2014-08-29
1866 ===================
1868   * deps: connect@2.25.9
1869     - deps: body-parser@~1.6.7
1870     - deps: qs@2.2.2
1872 3.16.8 / 2014-08-27
1873 ===================
1875   * deps: connect@2.25.8
1876     - deps: body-parser@~1.6.6
1877     - deps: csurf@~1.4.1
1878     - deps: qs@2.2.0
1880 3.16.7 / 2014-08-18
1881 ===================
1883   * deps: connect@2.25.7
1884     - deps: body-parser@~1.6.5
1885     - deps: express-session@~1.7.6
1886     - deps: morgan@~1.2.3
1887     - deps: serve-static@~1.5.3
1888   * deps: send@0.8.3
1889     - deps: destroy@1.0.3
1890     - deps: on-finished@2.1.0
1892 3.16.6 / 2014-08-14
1893 ===================
1895   * deps: connect@2.25.6
1896     - deps: body-parser@~1.6.4
1897     - deps: qs@1.2.2
1898     - deps: serve-static@~1.5.2
1899   * deps: send@0.8.2
1900     - Work around `fd` leak in Node.js 0.10 for `fs.ReadStream`
1902 3.16.5 / 2014-08-11
1903 ===================
1905   * deps: connect@2.25.5
1906     - Fix backwards compatibility in `logger`
1908 3.16.4 / 2014-08-10
1909 ===================
1911   * Fix original URL parsing in `res.location`
1912   * deps: connect@2.25.4
1913     - Fix `query` middleware breaking with argument
1914     - deps: body-parser@~1.6.3
1915     - deps: compression@~1.0.11
1916     - deps: connect-timeout@~1.2.2
1917     - deps: express-session@~1.7.5
1918     - deps: method-override@~2.1.3
1919     - deps: on-headers@~1.0.0
1920     - deps: parseurl@~1.3.0
1921     - deps: qs@1.2.1
1922     - deps: response-time@~2.0.1
1923     - deps: serve-index@~1.1.6
1924     - deps: serve-static@~1.5.1
1925   * deps: parseurl@~1.3.0
1927 3.16.3 / 2014-08-07
1928 ===================
1930   * deps: connect@2.25.3
1931     - deps: multiparty@3.3.2
1933 3.16.2 / 2014-08-07
1934 ===================
1936   * deps: connect@2.25.2
1937     - deps: body-parser@~1.6.2
1938     - deps: qs@1.2.0
1940 3.16.1 / 2014-08-06
1941 ===================
1943   * deps: connect@2.25.1
1944     - deps: body-parser@~1.6.1
1945     - deps: qs@1.1.0
1947 3.16.0 / 2014-08-05
1948 ===================
1950   * deps: connect@2.25.0
1951     - deps: body-parser@~1.6.0
1952     - deps: compression@~1.0.10
1953     - deps: csurf@~1.4.0
1954     - deps: express-session@~1.7.4
1955     - deps: qs@1.0.2
1956     - deps: serve-static@~1.5.0
1957   * deps: send@0.8.1
1958     - Add `extensions` option
1960 3.15.3 / 2014-08-04
1961 ===================
1963   * fix `res.sendfile` regression for serving directory index files
1964   * deps: connect@2.24.3
1965     - deps: serve-index@~1.1.5
1966     - deps: serve-static@~1.4.4
1967   * deps: send@0.7.4
1968     - Fix incorrect 403 on Windows and Node.js 0.11
1969     - Fix serving index files without root dir
1971 3.15.2 / 2014-07-27
1972 ===================
1974   * deps: connect@2.24.2
1975     - deps: body-parser@~1.5.2
1976     - deps: depd@0.4.4
1977     - deps: express-session@~1.7.2
1978     - deps: morgan@~1.2.2
1979     - deps: serve-static@~1.4.2
1980   * deps: depd@0.4.4
1981     - Work-around v8 generating empty stack traces
1982   * deps: send@0.7.2
1983     - deps: depd@0.4.4
1985 3.15.1 / 2014-07-26
1986 ===================
1988   * deps: connect@2.24.1
1989     - deps: body-parser@~1.5.1
1990     - deps: depd@0.4.3
1991     - deps: express-session@~1.7.1
1992     - deps: morgan@~1.2.1
1993     - deps: serve-index@~1.1.4
1994     - deps: serve-static@~1.4.1
1995   * deps: depd@0.4.3
1996     - Fix exception when global `Error.stackTraceLimit` is too low
1997   * deps: send@0.7.1
1998     - deps: depd@0.4.3
2000 3.15.0 / 2014-07-22
2001 ===================
2003   * Fix `req.protocol` for proxy-direct connections
2004   * Pass options from `res.sendfile` to `send`
2005   * deps: connect@2.24.0
2006     - deps: body-parser@~1.5.0
2007     - deps: compression@~1.0.9
2008     - deps: connect-timeout@~1.2.1
2009     - deps: debug@1.0.4
2010     - deps: depd@0.4.2
2011     - deps: express-session@~1.7.0
2012     - deps: finalhandler@0.1.0
2013     - deps: method-override@~2.1.2
2014     - deps: morgan@~1.2.0
2015     - deps: multiparty@3.3.1
2016     - deps: parseurl@~1.2.0
2017     - deps: serve-static@~1.4.0
2018   * deps: debug@1.0.4
2019   * deps: depd@0.4.2
2020     - Add `TRACE_DEPRECATION` environment variable
2021     - Remove non-standard grey color from color output
2022     - Support `--no-deprecation` argument
2023     - Support `--trace-deprecation` argument
2024   * deps: parseurl@~1.2.0
2025     - Cache URLs based on original value
2026     - Remove no-longer-needed URL mis-parse work-around
2027     - Simplify the "fast-path" `RegExp`
2028   * deps: send@0.7.0
2029     - Add `dotfiles` option
2030     - Cap `maxAge` value to 1 year
2031     - deps: debug@1.0.4
2032     - deps: depd@0.4.2
2034 3.14.0 / 2014-07-11
2035 ===================
2037  * add explicit "Rosetta Flash JSONP abuse" protection
2038    - previous versions are not vulnerable; this is just explicit protection
2039  * deprecate `res.redirect(url, status)` -- use `res.redirect(status, url)` instead
2040  * fix `res.send(status, num)` to send `num` as json (not error)
2041  * remove unnecessary escaping when `res.jsonp` returns JSON response
2042  * deps: basic-auth@1.0.0
2043    - support empty password
2044    - support empty username
2045  * deps: connect@2.23.0
2046    - deps: debug@1.0.3
2047    - deps: express-session@~1.6.4
2048    - deps: method-override@~2.1.0
2049    - deps: parseurl@~1.1.3
2050    - deps: serve-static@~1.3.1
2051   * deps: debug@1.0.3
2052     - Add support for multiple wildcards in namespaces
2053   * deps: methods@1.1.0
2054     - add `CONNECT`
2055   * deps: parseurl@~1.1.3
2056     - faster parsing of href-only URLs
2058 3.13.0 / 2014-07-03
2059 ===================
2061  * add deprecation message to `app.configure`
2062  * add deprecation message to `req.auth`
2063  * use `basic-auth` to parse `Authorization` header
2064  * deps: connect@2.22.0
2065    - deps: csurf@~1.3.0
2066    - deps: express-session@~1.6.1
2067    - deps: multiparty@3.3.0
2068    - deps: serve-static@~1.3.0
2069  * deps: send@0.5.0
2070    - Accept string for `maxage` (converted by `ms`)
2071    - Include link in default redirect response
2073 3.12.1 / 2014-06-26
2074 ===================
2076  * deps: connect@2.21.1
2077    - deps: cookie-parser@1.3.2
2078    - deps: cookie-signature@1.0.4
2079    - deps: express-session@~1.5.2
2080    - deps: type-is@~1.3.2
2081  * deps: cookie-signature@1.0.4
2082    - fix for timing attacks
2084 3.12.0 / 2014-06-21
2085 ===================
2087  * use `media-typer` to alter content-type charset
2088  * deps: connect@2.21.0
2089    - deprecate `connect(middleware)` -- use `app.use(middleware)` instead
2090    - deprecate `connect.createServer()` -- use `connect()` instead
2091    - fix `res.setHeader()` patch to work with with get -> append -> set pattern
2092    - deps: compression@~1.0.8
2093    - deps: errorhandler@~1.1.1
2094    - deps: express-session@~1.5.0
2095    - deps: serve-index@~1.1.3
2097 3.11.0 / 2014-06-19
2098 ===================
2100  * deprecate things with `depd` module
2101  * deps: buffer-crc32@0.2.3
2102  * deps: connect@2.20.2
2103    - deprecate `verify` option to `json` -- use `body-parser` npm module instead
2104    - deprecate `verify` option to `urlencoded` -- use `body-parser` npm module instead
2105    - deprecate things with `depd` module
2106    - use `finalhandler` for final response handling
2107    - use `media-typer` to parse `content-type` for charset
2108    - deps: body-parser@1.4.3
2109    - deps: connect-timeout@1.1.1
2110    - deps: cookie-parser@1.3.1
2111    - deps: csurf@1.2.2
2112    - deps: errorhandler@1.1.0
2113    - deps: express-session@1.4.0
2114    - deps: multiparty@3.2.9
2115    - deps: serve-index@1.1.2
2116    - deps: type-is@1.3.1
2117    - deps: vhost@2.0.0
2119 3.10.5 / 2014-06-11
2120 ===================
2122  * deps: connect@2.19.6
2123    - deps: body-parser@1.3.1
2124    - deps: compression@1.0.7
2125    - deps: debug@1.0.2
2126    - deps: serve-index@1.1.1
2127    - deps: serve-static@1.2.3
2128  * deps: debug@1.0.2
2129  * deps: send@0.4.3
2130    - Do not throw uncatchable error on file open race condition
2131    - Use `escape-html` for HTML escaping
2132    - deps: debug@1.0.2
2133    - deps: finished@1.2.2
2134    - deps: fresh@0.2.2
2136 3.10.4 / 2014-06-09
2137 ===================
2139  * deps: connect@2.19.5
2140    - fix "event emitter leak" warnings
2141    - deps: csurf@1.2.1
2142    - deps: debug@1.0.1
2143    - deps: serve-static@1.2.2
2144    - deps: type-is@1.2.1
2145  * deps: debug@1.0.1
2146  * deps: send@0.4.2
2147    - fix "event emitter leak" warnings
2148    - deps: finished@1.2.1
2149    - deps: debug@1.0.1
2151 3.10.3 / 2014-06-05
2152 ===================
2154  * use `vary` module for `res.vary`
2155  * deps: connect@2.19.4
2156    - deps: errorhandler@1.0.2
2157    - deps: method-override@2.0.2
2158    - deps: serve-favicon@2.0.1
2159  * deps: debug@1.0.0
2161 3.10.2 / 2014-06-03
2162 ===================
2164  * deps: connect@2.19.3
2165    - deps: compression@1.0.6
2167 3.10.1 / 2014-06-03
2168 ===================
2170  * deps: connect@2.19.2
2171    - deps: compression@1.0.4
2172  * deps: proxy-addr@1.0.1
2174 3.10.0 / 2014-06-02
2175 ===================
2177  * deps: connect@2.19.1
2178    - deprecate `methodOverride()` -- use `method-override` npm module instead
2179    - deps: body-parser@1.3.0
2180    - deps: method-override@2.0.1
2181    - deps: multiparty@3.2.8
2182    - deps: response-time@2.0.0
2183    - deps: serve-static@1.2.1
2184  * deps: methods@1.0.1
2185  * deps: send@0.4.1
2186    - Send `max-age` in `Cache-Control` in correct format
2188 3.9.0 / 2014-05-30
2189 ==================
2191  * custom etag control with `app.set('etag', val)`
2192    - `app.set('etag', function(body, encoding){ return '"etag"' })` custom etag generation
2193    - `app.set('etag', 'weak')` weak tag
2194    - `app.set('etag', 'strong')` strong etag
2195    - `app.set('etag', false)` turn off
2196    - `app.set('etag', true)` standard etag
2197  * Include ETag in HEAD requests
2198  * mark `res.send` ETag as weak and reduce collisions
2199  * update connect to 2.18.0
2200    - deps: compression@1.0.3
2201    - deps: serve-index@1.1.0
2202    - deps: serve-static@1.2.0
2203  * update send to 0.4.0
2204    - Calculate ETag with md5 for reduced collisions
2205    - Ignore stream errors after request ends
2206    - deps: debug@0.8.1
2208 3.8.1 / 2014-05-27
2209 ==================
2211  * update connect to 2.17.3
2212    - deps: body-parser@1.2.2
2213    - deps: express-session@1.2.1
2214    - deps: method-override@1.0.2
2216 3.8.0 / 2014-05-21
2217 ==================
2219  * keep previous `Content-Type` for `res.jsonp`
2220  * set proper `charset` in `Content-Type` for `res.send`
2221  * update connect to 2.17.1
2222    - fix `res.charset` appending charset when `content-type` has one
2223    - deps: express-session@1.2.0
2224    - deps: morgan@1.1.1
2225    - deps: serve-index@1.0.3
2227 3.7.0 / 2014-05-18
2228 ==================
2230  * proper proxy trust with `app.set('trust proxy', trust)`
2231    - `app.set('trust proxy', 1)` trust first hop
2232    - `app.set('trust proxy', 'loopback')` trust loopback addresses
2233    - `app.set('trust proxy', '10.0.0.1')` trust single IP
2234    - `app.set('trust proxy', '10.0.0.1/16')` trust subnet
2235    - `app.set('trust proxy', '10.0.0.1, 10.0.0.2')` trust list
2236    - `app.set('trust proxy', false)` turn off
2237    - `app.set('trust proxy', true)` trust everything
2238  * update connect to 2.16.2
2239    - deprecate `res.headerSent` -- use `res.headersSent`
2240    - deprecate `res.on("header")` -- use on-headers module instead
2241    - fix edge-case in `res.appendHeader` that would append in wrong order
2242    - json: use body-parser
2243    - urlencoded: use body-parser
2244    - dep: bytes@1.0.0
2245    - dep: cookie-parser@1.1.0
2246    - dep: csurf@1.2.0
2247    - dep: express-session@1.1.0
2248    - dep: method-override@1.0.1
2250 3.6.0 / 2014-05-09
2251 ==================
2253  * deprecate `app.del()` -- use `app.delete()` instead
2254  * deprecate `res.json(obj, status)` -- use `res.json(status, obj)` instead
2255    - the edge-case `res.json(status, num)` requires `res.status(status).json(num)`
2256  * deprecate `res.jsonp(obj, status)` -- use `res.jsonp(status, obj)` instead
2257    - the edge-case `res.jsonp(status, num)` requires `res.status(status).jsonp(num)`
2258  * support PURGE method
2259    - add `app.purge`
2260    - add `router.purge`
2261    - include PURGE in `app.all`
2262  * update connect to 2.15.0
2263    * Add `res.appendHeader`
2264    * Call error stack even when response has been sent
2265    * Patch `res.headerSent` to return Boolean
2266    * Patch `res.headersSent` for node.js 0.8
2267    * Prevent default 404 handler after response sent
2268    * dep: compression@1.0.2
2269    * dep: connect-timeout@1.1.0
2270    * dep: debug@^0.8.0
2271    * dep: errorhandler@1.0.1
2272    * dep: express-session@1.0.4
2273    * dep: morgan@1.0.1
2274    * dep: serve-favicon@2.0.0
2275    * dep: serve-index@1.0.2
2276  * update debug to 0.8.0
2277    * add `enable()` method
2278    * change from stderr to stdout
2279  * update methods to 1.0.0
2280    - add PURGE
2281  * update mkdirp to 0.5.0
2283 3.5.3 / 2014-05-08
2284 ==================
2286  * fix `req.host` for IPv6 literals
2287  * fix `res.jsonp` error if callback param is object
2289 3.5.2 / 2014-04-24
2290 ==================
2292  * update connect to 2.14.5
2293  * update cookie to 0.1.2
2294  * update mkdirp to 0.4.0
2295  * update send to 0.3.0
2297 3.5.1 / 2014-03-25
2298 ==================
2300  * pin less-middleware in generated app
2302 3.5.0 / 2014-03-06
2303 ==================
2305  * bump deps
2307 3.4.8 / 2014-01-13
2308 ==================
2310  * prevent incorrect automatic OPTIONS responses #1868 @dpatti
2311  * update binary and examples for jade 1.0 #1876 @yossi, #1877 @reqshark, #1892 @matheusazzi
2312  * throw 400 in case of malformed paths @rlidwka
2314 3.4.7 / 2013-12-10
2315 ==================
2317  * update connect
2319 3.4.6 / 2013-12-01
2320 ==================
2322  * update connect (raw-body)
2324 3.4.5 / 2013-11-27
2325 ==================
2327  * update connect
2328  * res.location: remove leading ./ #1802 @kapouer
2329  * res.redirect: fix `res.redirect('toString') #1829 @michaelficarra
2330  * res.send: always send ETag when content-length > 0
2331  * router: add Router.all() method
2333 3.4.4 / 2013-10-29
2334 ==================
2336  * update connect
2337  * update supertest
2338  * update methods
2339  * express(1): replace bodyParser() with urlencoded() and json() #1795 @chirag04
2341 3.4.3 / 2013-10-23
2342 ==================
2344  * update connect
2346 3.4.2 / 2013-10-18
2347 ==================
2349  * update connect
2350  * downgrade commander
2352 3.4.1 / 2013-10-15
2353 ==================
2355  * update connect
2356  * update commander
2357  * jsonp: check if callback is a function
2358  * router: wrap encodeURIComponent in a try/catch #1735 (@lxe)
2359  * res.format: now includes charset @1747 (@sorribas)
2360  * res.links: allow multiple calls @1746 (@sorribas)
2362 3.4.0 / 2013-09-07
2363 ==================
2365  * add res.vary(). Closes #1682
2366  * update connect
2368 3.3.8 / 2013-09-02
2369 ==================
2371  * update connect
2373 3.3.7 / 2013-08-28
2374 ==================
2376  * update connect
2378 3.3.6 / 2013-08-27
2379 ==================
2381  * Revert "remove charset from json responses. Closes #1631" (causes issues in some clients)
2382  * add: req.accepts take an argument list
2384 3.3.4 / 2013-07-08
2385 ==================
2387  * update send and connect
2389 3.3.3 / 2013-07-04
2390 ==================
2392  * update connect
2394 3.3.2 / 2013-07-03
2395 ==================
2397  * update connect
2398  * update send
2399  * remove .version export
2401 3.3.1 / 2013-06-27
2402 ==================
2404  * update connect
2406 3.3.0 / 2013-06-26
2407 ==================
2409  * update connect
2410  * add support for multiple X-Forwarded-Proto values. Closes #1646
2411  * change: remove charset from json responses. Closes #1631
2412  * change: return actual booleans from req.accept* functions
2413  * fix jsonp callback array throw
2415 3.2.6 / 2013-06-02
2416 ==================
2418  * update connect
2420 3.2.5 / 2013-05-21
2421 ==================
2423  * update connect
2424  * update node-cookie
2425  * add: throw a meaningful error when there is no default engine
2426  * change generation of ETags with res.send() to GET requests only. Closes #1619
2428 3.2.4 / 2013-05-09
2429 ==================
2431   * fix `req.subdomains` when no Host is present
2432   * fix `req.host` when no Host is present, return undefined
2434 3.2.3 / 2013-05-07
2435 ==================
2437   * update connect / qs
2439 3.2.2 / 2013-05-03
2440 ==================
2442   * update qs
2444 3.2.1 / 2013-04-29
2445 ==================
2447   * add app.VERB() paths array deprecation warning
2448   * update connect
2449   * update qs and remove all ~ semver crap
2450   * fix: accept number as value of Signed Cookie
2452 3.2.0 / 2013-04-15
2453 ==================
2455   * add "view" constructor setting to override view behaviour
2456   * add req.acceptsEncoding(name)
2457   * add req.acceptedEncodings
2458   * revert cookie signature change causing session race conditions
2459   * fix sorting of Accept values of the same quality
2461 3.1.2 / 2013-04-12
2462 ==================
2464   * add support for custom Accept parameters
2465   * update cookie-signature
2467 3.1.1 / 2013-04-01
2468 ==================
2470   * add X-Forwarded-Host support to `req.host`
2471   * fix relative redirects
2472   * update mkdirp
2473   * update buffer-crc32
2474   * remove legacy app.configure() method from app template.
2476 3.1.0 / 2013-01-25
2477 ==================
2479   * add support for leading "." in "view engine" setting
2480   * add array support to `res.set()`
2481   * add node 0.8.x to travis.yml
2482   * add "subdomain offset" setting for tweaking `req.subdomains`
2483   * add `res.location(url)` implementing `res.redirect()`-like setting of Location
2484   * use app.get() for x-powered-by setting for inheritance
2485   * fix colons in passwords for `req.auth`
2487 3.0.6 / 2013-01-04
2488 ==================
2490   * add http verb methods to Router
2491   * update connect
2492   * fix mangling of the `res.cookie()` options object
2493   * fix jsonp whitespace escape. Closes #1132
2495 3.0.5 / 2012-12-19
2496 ==================
2498   * add throwing when a non-function is passed to a route
2499   * fix: explicitly remove Transfer-Encoding header from 204 and 304 responses
2500   * revert "add 'etag' option"
2502 3.0.4 / 2012-12-05
2503 ==================
2505   * add 'etag' option to disable `res.send()` Etags
2506   * add escaping of urls in text/plain in `res.redirect()`
2507     for old browsers interpreting as html
2508   * change crc32 module for a more liberal license
2509   * update connect
2511 3.0.3 / 2012-11-13
2512 ==================
2514   * update connect
2515   * update cookie module
2516   * fix cookie max-age
2518 3.0.2 / 2012-11-08
2519 ==================
2521   * add OPTIONS to cors example. Closes #1398
2522   * fix route chaining regression. Closes #1397
2524 3.0.1 / 2012-11-01
2525 ==================
2527   * update connect
2529 3.0.0 / 2012-10-23
2530 ==================
2532   * add `make clean`
2533   * add "Basic" check to req.auth
2534   * add `req.auth` test coverage
2535   * add cb && cb(payload) to `res.jsonp()`. Closes #1374
2536   * add backwards compat for `res.redirect()` status. Closes #1336
2537   * add support for `res.json()` to retain previously defined Content-Types. Closes #1349
2538   * update connect
2539   * change `res.redirect()` to utilize a pathname-relative Location again. Closes #1382
2540   * remove non-primitive string support for `res.send()`
2541   * fix view-locals example. Closes #1370
2542   * fix route-separation example
2544 3.0.0rc5 / 2012-09-18
2545 ==================
2547   * update connect
2548   * add redis search example
2549   * add static-files example
2550   * add "x-powered-by" setting (`app.disable('x-powered-by')`)
2551   * add "application/octet-stream" redirect Accept test case. Closes #1317
2553 3.0.0rc4 / 2012-08-30
2554 ==================
2556   * add `res.jsonp()`. Closes #1307
2557   * add "verbose errors" option to error-pages example
2558   * add another route example to express(1) so people are not so confused
2559   * add redis online user activity tracking example
2560   * update connect dep
2561   * fix etag quoting. Closes #1310
2562   * fix error-pages 404 status
2563   * fix jsonp callback char restrictions
2564   * remove old OPTIONS default response
2566 3.0.0rc3 / 2012-08-13
2567 ==================
2569   * update connect dep
2570   * fix signed cookies to work with `connect.cookieParser()` ("s:" prefix was missing) [tnydwrds]
2571   * fix `res.render()` clobbering of "locals"
2573 3.0.0rc2 / 2012-08-03
2574 ==================
2576   * add CORS example
2577   * update connect dep
2578   * deprecate `.createServer()` & remove old stale examples
2579   * fix: escape `res.redirect()` link
2580   * fix vhost example
2582 3.0.0rc1 / 2012-07-24
2583 ==================
2585   * add more examples to view-locals
2586   * add scheme-relative redirects (`res.redirect("//foo.com")`) support
2587   * update cookie dep
2588   * update connect dep
2589   * update send dep
2590   * fix `express(1)` -h flag, use -H for hogan. Closes #1245
2591   * fix `res.sendfile()` socket error handling regression
2593 3.0.0beta7 / 2012-07-16
2594 ==================
2596   * update connect dep for `send()` root normalization regression
2598 3.0.0beta6 / 2012-07-13
2599 ==================
2601   * add `err.view` property for view errors. Closes #1226
2602   * add "jsonp callback name" setting
2603   * add support for "/foo/:bar*" non-greedy matches
2604   * change `res.sendfile()` to use `send()` module
2605   * change `res.send` to use "response-send" module
2606   * remove `app.locals.use` and `res.locals.use`, use regular middleware
2608 3.0.0beta5 / 2012-07-03
2609 ==================
2611   * add "make check" support
2612   * add route-map example
2613   * add `res.json(obj, status)` support back for BC
2614   * add "methods" dep, remove internal methods module
2615   * update connect dep
2616   * update auth example to utilize cores pbkdf2
2617   * updated tests to use "supertest"
2619 3.0.0beta4 / 2012-06-25
2620 ==================
2622   * Added `req.auth`
2623   * Added `req.range(size)`
2624   * Added `res.links(obj)`
2625   * Added `res.send(body, status)` support back for backwards compat
2626   * Added `.default()` support to `res.format()`
2627   * Added 2xx / 304 check to `req.fresh`
2628   * Revert "Added + support to the router"
2629   * Fixed `res.send()` freshness check, respect res.statusCode
2631 3.0.0beta3 / 2012-06-15
2632 ==================
2634   * Added hogan `--hjs` to express(1) [nullfirm]
2635   * Added another example to content-negotiation
2636   * Added `fresh` dep
2637   * Changed: `res.send()` always checks freshness
2638   * Fixed: expose connects mime module. Closes #1165
2640 3.0.0beta2 / 2012-06-06
2641 ==================
2643   * Added `+` support to the router
2644   * Added `req.host`
2645   * Changed `req.param()` to check route first
2646   * Update connect dep
2648 3.0.0beta1 / 2012-06-01
2649 ==================
2651   * Added `res.format()` callback to override default 406 behaviour
2652   * Fixed `res.redirect()` 406. Closes #1154
2654 3.0.0alpha5 / 2012-05-30
2655 ==================
2657   * Added `req.ip`
2658   * Added `{ signed: true }` option to `res.cookie()`
2659   * Removed `res.signedCookie()`
2660   * Changed: dont reverse `req.ips`
2661   * Fixed "trust proxy" setting check for `req.ips`
2663 3.0.0alpha4 / 2012-05-09
2664 ==================
2666   * Added: allow `[]` in jsonp callback. Closes #1128
2667   * Added `PORT` env var support in generated template. Closes #1118 [benatkin]
2668   * Updated: connect 2.2.2
2670 3.0.0alpha3 / 2012-05-04
2671 ==================
2673   * Added public `app.routes`. Closes #887
2674   * Added _view-locals_ example
2675   * Added _mvc_ example
2676   * Added `res.locals.use()`. Closes #1120
2677   * Added conditional-GET support to `res.send()`
2678   * Added: coerce `res.set()` values to strings
2679   * Changed: moved `static()` in generated apps below router
2680   * Changed: `res.send()` only set ETag when not previously set
2681   * Changed connect 2.2.1 dep
2682   * Changed: `make test` now runs unit / acceptance tests
2683   * Fixed req/res proto inheritance
2685 3.0.0alpha2 / 2012-04-26
2686 ==================
2688   * Added `make benchmark` back
2689   * Added `res.send()` support for `String` objects
2690   * Added client-side data exposing example
2691   * Added `res.header()` and `req.header()` aliases for BC
2692   * Added `express.createServer()` for BC
2693   * Perf: memoize parsed urls
2694   * Perf: connect 2.2.0 dep
2695   * Changed: make `expressInit()` middleware self-aware
2696   * Fixed: use app.get() for all core settings
2697   * Fixed redis session example
2698   * Fixed session example. Closes #1105
2699   * Fixed generated express dep. Closes #1078
2701 3.0.0alpha1 / 2012-04-15
2702 ==================
2704   * Added `app.locals.use(callback)`
2705   * Added `app.locals` object
2706   * Added `app.locals(obj)`
2707   * Added `res.locals` object
2708   * Added `res.locals(obj)`
2709   * Added `res.format()` for content-negotiation
2710   * Added `app.engine()`
2711   * Added `res.cookie()` JSON cookie support
2712   * Added "trust proxy" setting
2713   * Added `req.subdomains`
2714   * Added `req.protocol`
2715   * Added `req.secure`
2716   * Added `req.path`
2717   * Added `req.ips`
2718   * Added `req.fresh`
2719   * Added `req.stale`
2720   * Added comma-delimited / array support for `req.accepts()`
2721   * Added debug instrumentation
2722   * Added `res.set(obj)`
2723   * Added `res.set(field, value)`
2724   * Added `res.get(field)`
2725   * Added `app.get(setting)`. Closes #842
2726   * Added `req.acceptsLanguage()`
2727   * Added `req.acceptsCharset()`
2728   * Added `req.accepted`
2729   * Added `req.acceptedLanguages`
2730   * Added `req.acceptedCharsets`
2731   * Added "json replacer" setting
2732   * Added "json spaces" setting
2733   * Added X-Forwarded-Proto support to `res.redirect()`. Closes #92
2734   * Added `--less` support to express(1)
2735   * Added `express.response` prototype
2736   * Added `express.request` prototype
2737   * Added `express.application` prototype
2738   * Added `app.path()`
2739   * Added `app.render()`
2740   * Added `res.type()` to replace `res.contentType()`
2741   * Changed: `res.redirect()` to add relative support
2742   * Changed: enable "jsonp callback" by default
2743   * Changed: renamed "case sensitive routes" to "case sensitive routing"
2744   * Rewrite of all tests with mocha
2745   * Removed "root" setting
2746   * Removed `res.redirect('home')` support
2747   * Removed `req.notify()`
2748   * Removed `app.register()`
2749   * Removed `app.redirect()`
2750   * Removed `app.is()`
2751   * Removed `app.helpers()`
2752   * Removed `app.dynamicHelpers()`
2753   * Fixed `res.sendfile()` with non-GET. Closes #723
2754   * Fixed express(1) public dir for windows. Closes #866
2756 2.5.9/ 2012-04-02
2757 ==================
2759   * Added support for PURGE request method [pbuyle]
2760   * Fixed `express(1)` generated app `app.address()` before `listening` [mmalecki]
2762 2.5.8 / 2012-02-08
2763 ==================
2765   * Update mkdirp dep. Closes #991
2767 2.5.7 / 2012-02-06
2768 ==================
2770   * Fixed `app.all` duplicate DELETE requests [mscdex]
2772 2.5.6 / 2012-01-13
2773 ==================
2775   * Updated hamljs dev dep. Closes #953
2777 2.5.5 / 2012-01-08
2778 ==================
2780   * Fixed: set `filename` on cached templates [matthewleon]
2782 2.5.4 / 2012-01-02
2783 ==================
2785   * Fixed `express(1)` eol on 0.4.x. Closes #947
2787 2.5.3 / 2011-12-30
2788 ==================
2790   * Fixed `req.is()` when a charset is present
2792 2.5.2 / 2011-12-10
2793 ==================
2795   * Fixed: express(1) LF -> CRLF for windows
2797 2.5.1 / 2011-11-17
2798 ==================
2800   * Changed: updated connect to 1.8.x
2801   * Removed sass.js support from express(1)
2803 2.5.0 / 2011-10-24
2804 ==================
2806   * Added ./routes dir for generated app by default
2807   * Added npm install reminder to express(1) app gen
2808   * Added 0.5.x support
2809   * Removed `make test-cov` since it wont work with node 0.5.x
2810   * Fixed express(1) public dir for windows. Closes #866
2812 2.4.7 / 2011-10-05
2813 ==================
2815   * Added mkdirp to express(1). Closes #795
2816   * Added simple _json-config_ example
2817   * Added  shorthand for the parsed request's pathname via `req.path`
2818   * Changed connect dep to 1.7.x to fix npm issue...
2819   * Fixed `res.redirect()` __HEAD__ support. [reported by xerox]
2820   * Fixed `req.flash()`, only escape args
2821   * Fixed absolute path checking on windows. Closes #829 [reported by andrewpmckenzie]
2823 2.4.6 / 2011-08-22
2824 ==================
2826   * Fixed multiple param callback regression. Closes #824 [reported by TroyGoode]
2828 2.4.5 / 2011-08-19
2829 ==================
2831   * Added support for routes to handle errors. Closes #809
2832   * Added `app.routes.all()`. Closes #803
2833   * Added "basepath" setting to work in conjunction with reverse proxies etc.
2834   * Refactored `Route` to use a single array of callbacks
2835   * Added support for multiple callbacks for `app.param()`. Closes #801
2836 Closes #805
2837   * Changed: removed .call(self) for route callbacks
2838   * Dependency: `qs >= 0.3.1`
2839   * Fixed `res.redirect()` on windows due to `join()` usage. Closes #808
2841 2.4.4 / 2011-08-05
2842 ==================
2844   * Fixed `res.header()` intention of a set, even when `undefined`
2845   * Fixed `*`, value no longer required
2846   * Fixed `res.send(204)` support. Closes #771
2848 2.4.3 / 2011-07-14
2849 ==================
2851   * Added docs for `status` option special-case. Closes #739
2852   * Fixed `options.filename`, exposing the view path to template engines
2854 2.4.2. / 2011-07-06
2855 ==================
2857   * Revert "removed jsonp stripping" for XSS
2859 2.4.1 / 2011-07-06
2860 ==================
2862   * Added `res.json()` JSONP support. Closes #737
2863   * Added _extending-templates_ example. Closes #730
2864   * Added "strict routing" setting for trailing slashes
2865   * Added support for multiple envs in `app.configure()` calls. Closes #735
2866   * Changed: `res.send()` using `res.json()`
2867   * Changed: when cookie `path === null` don't default it
2868   * Changed; default cookie path to "home" setting. Closes #731
2869   * Removed _pids/logs_ creation from express(1)
2871 2.4.0 / 2011-06-28
2872 ==================
2874   * Added chainable `res.status(code)`
2875   * Added `res.json()`, an explicit version of `res.send(obj)`
2876   * Added simple web-service example
2878 2.3.12 / 2011-06-22
2879 ==================
2881   * \#express is now on freenode! come join!
2882   * Added `req.get(field, param)`
2883   * Added links to Japanese documentation, thanks @hideyukisaito!
2884   * Added; the `express(1)` generated app outputs the env
2885   * Added `content-negotiation` example
2886   * Dependency: connect >= 1.5.1 < 2.0.0
2887   * Fixed view layout bug. Closes #720
2888   * Fixed; ignore body on 304. Closes #701
2890 2.3.11 / 2011-06-04
2891 ==================
2893   * Added `npm test`
2894   * Removed generation of dummy test file from `express(1)`
2895   * Fixed; `express(1)` adds express as a dep
2896   * Fixed; prune on `prepublish`
2898 2.3.10 / 2011-05-27
2899 ==================
2901   * Added `req.route`, exposing the current route
2902   * Added _package.json_ generation support to `express(1)`
2903   * Fixed call to `app.param()` function for optional params. Closes #682
2905 2.3.9 / 2011-05-25
2906 ==================
2908   * Fixed bug-ish with `../' in `res.partial()` calls
2910 2.3.8 / 2011-05-24
2911 ==================
2913   * Fixed `app.options()`
2915 2.3.7 / 2011-05-23
2916 ==================
2918   * Added route `Collection`, ex: `app.get('/user/:id').remove();`
2919   * Added support for `app.param(fn)` to define param logic
2920   * Removed `app.param()` support for callback with return value
2921   * Removed module.parent check from express(1) generated app. Closes #670
2922   * Refactored router. Closes #639
2924 2.3.6 / 2011-05-20
2925 ==================
2927   * Changed; using devDependencies instead of git submodules
2928   * Fixed redis session example
2929   * Fixed markdown example
2930   * Fixed view caching, should not be enabled in development
2932 2.3.5 / 2011-05-20
2933 ==================
2935   * Added export `.view` as alias for `.View`
2937 2.3.4 / 2011-05-08
2938 ==================
2940   * Added `./examples/say`
2941   * Fixed `res.sendfile()` bug preventing the transfer of files with spaces
2943 2.3.3 / 2011-05-03
2944 ==================
2946   * Added "case sensitive routes" option.
2947   * Changed; split methods supported per rfc [slaskis]
2948   * Fixed route-specific middleware when using the same callback function several times
2950 2.3.2 / 2011-04-27
2951 ==================
2953   * Fixed view hints
2955 2.3.1 / 2011-04-26
2956 ==================
2958   * Added `app.match()` as `app.match.all()`
2959   * Added `app.lookup()` as `app.lookup.all()`
2960   * Added `app.remove()` for `app.remove.all()`
2961   * Added `app.remove.VERB()`
2962   * Fixed template caching collision issue. Closes #644
2963   * Moved router over from connect and started refactor
2965 2.3.0 / 2011-04-25
2966 ==================
2968   * Added options support to `res.clearCookie()`
2969   * Added `res.helpers()` as alias of `res.locals()`
2970   * Added; json defaults to UTF-8 with `res.send()`. Closes #632. [Daniel   * Dependency `connect >= 1.4.0`
2971   * Changed; auto set Content-Type in res.attachement [Aaron Heckmann]
2972   * Renamed "cache views" to "view cache". Closes #628
2973   * Fixed caching of views when using several apps. Closes #637
2974   * Fixed gotcha invoking `app.param()` callbacks once per route middleware.
2975 Closes #638
2976   * Fixed partial lookup precedence. Closes #631
2977 Shaw]
2979 2.2.2 / 2011-04-12
2980 ==================
2982   * Added second callback support for `res.download()` connection errors
2983   * Fixed `filename` option passing to template engine
2985 2.2.1 / 2011-04-04
2986 ==================
2988   * Added `layout(path)` helper to change the layout within a view. Closes #610
2989   * Fixed `partial()` collection object support.
2990     Previously only anything with `.length` would work.
2991     When `.length` is present one must still be aware of holes,
2992     however now `{ collection: {foo: 'bar'}}` is valid, exposes
2993     `keyInCollection` and `keysInCollection`.
2995   * Performance improved with better view caching
2996   * Removed `request` and `response` locals
2997   * Changed; errorHandler page title is now `Express` instead of `Connect`
2999 2.2.0 / 2011-03-30
3000 ==================
3002   * Added `app.lookup.VERB()`, ex `app.lookup.put('/user/:id')`. Closes #606
3003   * Added `app.match.VERB()`, ex `app.match.put('/user/12')`. Closes #606
3004   * Added `app.VERB(path)` as alias of `app.lookup.VERB()`.
3005   * Dependency `connect >= 1.2.0`
3007 2.1.1 / 2011-03-29
3008 ==================
3010   * Added; expose `err.view` object when failing to locate a view
3011   * Fixed `res.partial()` call `next(err)` when no callback is given [reported by aheckmann]
3012   * Fixed; `res.send(undefined)` responds with 204 [aheckmann]
3014 2.1.0 / 2011-03-24
3015 ==================
3017   * Added `<root>/_?<name>` partial lookup support. Closes #447
3018   * Added `request`, `response`, and `app` local variables
3019   * Added `settings` local variable, containing the app's settings
3020   * Added `req.flash()` exception if `req.session` is not available
3021   * Added `res.send(bool)` support (json response)
3022   * Fixed stylus example for latest version
3023   * Fixed; wrap try/catch around `res.render()`
3025 2.0.0 / 2011-03-17
3026 ==================
3028   * Fixed up index view path alternative.
3029   * Changed; `res.locals()` without object returns the locals
3031 2.0.0rc3 / 2011-03-17
3032 ==================
3034   * Added `res.locals(obj)` to compliment `res.local(key, val)`
3035   * Added `res.partial()` callback support
3036   * Fixed recursive error reporting issue in `res.render()`
3038 2.0.0rc2 / 2011-03-17
3039 ==================
3041   * Changed; `partial()` "locals" are now optional
3042   * Fixed `SlowBuffer` support. Closes #584 [reported by tyrda01]
3043   * Fixed .filename view engine option [reported by drudge]
3044   * Fixed blog example
3045   * Fixed `{req,res}.app` reference when mounting [Ben Weaver]
3047 2.0.0rc / 2011-03-14
3048 ==================
3050   * Fixed; expose `HTTPSServer` constructor
3051   * Fixed express(1) default test charset. Closes #579 [reported by secoif]
3052   * Fixed; default charset to utf-8 instead of utf8 for lame IE [reported by NickP]
3054 2.0.0beta3 / 2011-03-09
3055 ==================
3057   * Added support for `res.contentType()` literal
3058     The original `res.contentType('.json')`,
3059     `res.contentType('application/json')`, and `res.contentType('json')`
3060     will work now.
3061   * Added `res.render()` status option support back
3062   * Added charset option for `res.render()`
3063   * Added `.charset` support (via connect 1.0.4)
3064   * Added view resolution hints when in development and a lookup fails
3065   * Added layout lookup support relative to the page view.
3066     For example while rendering `./views/user/index.jade` if you create
3067     `./views/user/layout.jade` it will be used in favour of the root layout.
3068   * Fixed `res.redirect()`. RFC states absolute url [reported by unlink]
3069   * Fixed; default `res.send()` string charset to utf8
3070   * Removed `Partial` constructor (not currently used)
3072 2.0.0beta2 / 2011-03-07
3073 ==================
3075   * Added res.render() `.locals` support back to aid in migration process
3076   * Fixed flash example
3078 2.0.0beta / 2011-03-03
3079 ==================
3081   * Added HTTPS support
3082   * Added `res.cookie()` maxAge support
3083   * Added `req.header()` _Referrer_ / _Referer_ special-case, either works
3084   * Added mount support for `res.redirect()`, now respects the mount-point
3085   * Added `union()` util, taking place of `merge(clone())` combo
3086   * Added stylus support to express(1) generated app
3087   * Added secret to session middleware used in examples and generated app
3088   * Added `res.local(name, val)` for progressive view locals
3089   * Added default param support to `req.param(name, default)`
3090   * Added `app.disabled()` and `app.enabled()`
3091   * Added `app.register()` support for omitting leading ".", either works
3092   * Added `res.partial()`, using the same interface as `partial()` within a view. Closes #539
3093   * Added `app.param()` to map route params to async/sync logic
3094   * Added; aliased `app.helpers()` as `app.locals()`. Closes #481
3095   * Added extname with no leading "." support to `res.contentType()`
3096   * Added `cache views` setting, defaulting to enabled in "production" env
3097   * Added index file partial resolution, eg: partial('user') may try _views/user/index.jade_.
3098   * Added `req.accepts()` support for extensions
3099   * Changed; `res.download()` and `res.sendfile()` now utilize Connect's
3100     static file server `connect.static.send()`.
3101   * Changed; replaced `connect.utils.mime()` with npm _mime_ module
3102   * Changed; allow `req.query` to be pre-defined (via middleware or other parent
3103   * Changed view partial resolution, now relative to parent view
3104   * Changed view engine signature. no longer `engine.render(str, options, callback)`, now `engine.compile(str, options) -> Function`, the returned function accepts `fn(locals)`.
3105   * Fixed `req.param()` bug returning Array.prototype methods. Closes #552
3106   * Fixed; using `Stream#pipe()` instead of `sys.pump()` in `res.sendfile()`
3107   * Fixed; using _qs_ module instead of _querystring_
3108   * Fixed; strip unsafe chars from jsonp callbacks
3109   * Removed "stream threshold" setting
3111 1.0.8 / 2011-03-01
3112 ==================
3114   * Allow `req.query` to be pre-defined (via middleware or other parent app)
3115   * "connect": ">= 0.5.0 < 1.0.0". Closes #547
3116   * Removed the long deprecated __EXPRESS_ENV__ support
3118 1.0.7 / 2011-02-07
3119 ==================
3121   * Fixed `render()` setting inheritance.
3122     Mounted apps would not inherit "view engine"
3124 1.0.6 / 2011-02-07
3125 ==================
3127   * Fixed `view engine` setting bug when period is in dirname
3129 1.0.5 / 2011-02-05
3130 ==================
3132   * Added secret to generated app `session()` call
3134 1.0.4 / 2011-02-05
3135 ==================
3137   * Added `qs` dependency to _package.json_
3138   * Fixed namespaced `require()`s for latest connect support
3140 1.0.3 / 2011-01-13
3141 ==================
3143   * Remove unsafe characters from JSONP callback names [Ryan Grove]
3145 1.0.2 / 2011-01-10
3146 ==================
3148   * Removed nested require, using `connect.router`
3150 1.0.1 / 2010-12-29
3151 ==================
3153   * Fixed for middleware stacked via `createServer()`
3154     previously the `foo` middleware passed to `createServer(foo)`
3155     would not have access to Express methods such as `res.send()`
3156     or props like `req.query` etc.
3158 1.0.0 / 2010-11-16
3159 ==================
3161   * Added; deduce partial object names from the last segment.
3162     For example by default `partial('forum/post', postObject)` will
3163     give you the _post_ object, providing a meaningful default.
3164   * Added http status code string representation to `res.redirect()` body
3165   * Added; `res.redirect()` supporting _text/plain_ and _text/html_ via __Accept__.
3166   * Added `req.is()` to aid in content negotiation
3167   * Added partial local inheritance [suggested by masylum]. Closes #102
3168     providing access to parent template locals.
3169   * Added _-s, --session[s]_ flag to express(1) to add session related middleware
3170   * Added _--template_ flag to express(1) to specify the
3171     template engine to use.
3172   * Added _--css_ flag to express(1) to specify the
3173     stylesheet engine to use (or just plain css by default).
3174   * Added `app.all()` support [thanks aheckmann]
3175   * Added partial direct object support.
3176     You may now `partial('user', user)` providing the "user" local,
3177     vs previously `partial('user', { object: user })`.
3178   * Added _route-separation_ example since many people question ways
3179     to do this with CommonJS modules. Also view the _blog_ example for
3180     an alternative.
3181   * Performance; caching view path derived partial object names
3182   * Fixed partial local inheritance precedence. [reported by Nick Poulden] Closes #454
3183   * Fixed jsonp support; _text/javascript_ as per mailinglist discussion
3185 1.0.0rc4 / 2010-10-14
3186 ==================
3188   * Added _NODE_ENV_ support, _EXPRESS_ENV_ is deprecated and will be removed in 1.0.0
3189   * Added route-middleware support (very helpful, see the [docs](http://expressjs.com/guide.html#Route-Middleware))
3190   * Added _jsonp callback_ setting to enable/disable jsonp autowrapping [Dav Glass]
3191   * Added callback query check on response.send to autowrap JSON objects for simple webservice implementations [Dav Glass]
3192   * Added `partial()` support for array-like collections. Closes #434
3193   * Added support for swappable querystring parsers
3194   * Added session usage docs. Closes #443
3195   * Added dynamic helper caching. Closes #439 [suggested by maritz]
3196   * Added authentication example
3197   * Added basic Range support to `res.sendfile()` (and `res.download()` etc)
3198   * Changed; `express(1)` generated app using 2 spaces instead of 4
3199   * Default env to "development" again [aheckmann]
3200   * Removed _context_ option is no more, use "scope"
3201   * Fixed; exposing _./support_ libs to examples so they can run without installs
3202   * Fixed mvc example
3204 1.0.0rc3 / 2010-09-20
3205 ==================
3207   * Added confirmation for `express(1)` app generation. Closes #391
3208   * Added extending of flash formatters via `app.flashFormatters`
3209   * Added flash formatter support. Closes #411
3210   * Added streaming support to `res.sendfile()` using `sys.pump()` when >= "stream threshold"
3211   * Added _stream threshold_ setting for `res.sendfile()`
3212   * Added `res.send()` __HEAD__ support
3213   * Added `res.clearCookie()`
3214   * Added `res.cookie()`
3215   * Added `res.render()` headers option
3216   * Added `res.redirect()` response bodies
3217   * Added `res.render()` status option support. Closes #425 [thanks aheckmann]
3218   * Fixed `res.sendfile()` responding with 403 on malicious path
3219   * Fixed `res.download()` bug; when an error occurs remove _Content-Disposition_
3220   * Fixed; mounted apps settings now inherit from parent app [aheckmann]
3221   * Fixed; stripping Content-Length / Content-Type when 204
3222   * Fixed `res.send()` 204. Closes #419
3223   * Fixed multiple _Set-Cookie_ headers via `res.header()`. Closes #402
3224   * Fixed bug messing with error handlers when `listenFD()` is called instead of `listen()`. [thanks guillermo]
3227 1.0.0rc2 / 2010-08-17
3228 ==================
3230   * Added `app.register()` for template engine mapping. Closes #390
3231   * Added `res.render()` callback support as second argument (no options)
3232   * Added callback support to `res.download()`
3233   * Added callback support for `res.sendfile()`
3234   * Added support for middleware access via `express.middlewareName()` vs `connect.middlewareName()`
3235   * Added "partials" setting to docs
3236   * Added default expresso tests to `express(1)` generated app. Closes #384
3237   * Fixed `res.sendfile()` error handling, defer via `next()`
3238   * Fixed `res.render()` callback when a layout is used [thanks guillermo]
3239   * Fixed; `make install` creating ~/.node_libraries when not present
3240   * Fixed issue preventing error handlers from being defined anywhere. Closes #387
3242 1.0.0rc / 2010-07-28
3243 ==================
3245   * Added mounted hook. Closes #369
3246   * Added connect dependency to _package.json_
3248   * Removed "reload views" setting and support code
3249     development env never caches, production always caches.
3251   * Removed _param_ in route callbacks, signature is now
3252     simply (req, res, next), previously (req, res, params, next).
3253     Use _req.params_ for path captures, _req.query_ for GET params.
3255   * Fixed "home" setting
3256   * Fixed middleware/router precedence issue. Closes #366
3257   * Fixed; _configure()_ callbacks called immediately. Closes #368
3259 1.0.0beta2 / 2010-07-23
3260 ==================
3262   * Added more examples
3263   * Added; exporting `Server` constructor
3264   * Added `Server#helpers()` for view locals
3265   * Added `Server#dynamicHelpers()` for dynamic view locals. Closes #349
3266   * Added support for absolute view paths
3267   * Added; _home_ setting defaults to `Server#route` for mounted apps. Closes #363
3268   * Added Guillermo Rauch to the contributor list
3269   * Added support for "as" for non-collection partials. Closes #341
3270   * Fixed _install.sh_, ensuring _~/.node_libraries_ exists. Closes #362 [thanks jf]
3271   * Fixed `res.render()` exceptions, now passed to `next()` when no callback is given [thanks guillermo]
3272   * Fixed instanceof `Array` checks, now `Array.isArray()`
3273   * Fixed express(1) expansion of public dirs. Closes #348
3274   * Fixed middleware precedence. Closes #345
3275   * Fixed view watcher, now async [thanks aheckmann]
3277 1.0.0beta / 2010-07-15
3278 ==================
3280   * Re-write
3281     - much faster
3282     - much lighter
3283     - Check [ExpressJS.com](http://expressjs.com) for migration guide and updated docs
3285 0.14.0 / 2010-06-15
3286 ==================
3288   * Utilize relative requires
3289   * Added Static bufferSize option [aheckmann]
3290   * Fixed caching of view and partial subdirectories [aheckmann]
3291   * Fixed mime.type() comments now that ".ext" is not supported
3292   * Updated haml submodule
3293   * Updated class submodule
3294   * Removed bin/express
3296 0.13.0 / 2010-06-01
3297 ==================
3299   * Added node v0.1.97 compatibility
3300   * Added support for deleting cookies via Request#cookie('key', null)
3301   * Updated haml submodule
3302   * Fixed not-found page, now using using charset utf-8
3303   * Fixed show-exceptions page, now using using charset utf-8
3304   * Fixed view support due to fs.readFile Buffers
3305   * Changed; mime.type() no longer accepts ".type" due to node extname() changes
3307 0.12.0 / 2010-05-22
3308 ==================
3310   * Added node v0.1.96 compatibility
3311   * Added view `helpers` export which act as additional local variables
3312   * Updated haml submodule
3313   * Changed ETag; removed inode, modified time only
3314   * Fixed LF to CRLF for setting multiple cookies
3315   * Fixed cookie compilation; values are now urlencoded
3316   * Fixed cookies parsing; accepts quoted values and url escaped cookies
3318 0.11.0 / 2010-05-06
3319 ==================
3321   * Added support for layouts using different engines
3322     - this.render('page.html.haml', { layout: 'super-cool-layout.html.ejs' })
3323     - this.render('page.html.haml', { layout: 'foo' }) // assumes 'foo.html.haml'
3324     - this.render('page.html.haml', { layout: false }) // no layout
3325   * Updated ext submodule
3326   * Updated haml submodule
3327   * Fixed EJS partial support by passing along the context. Issue #307
3329 0.10.1 / 2010-05-03
3330 ==================
3332   * Fixed binary uploads.
3334 0.10.0 / 2010-04-30
3335 ==================
3337   * Added charset support via Request#charset (automatically assigned to 'UTF-8' when respond()'s
3338     encoding is set to 'utf8' or 'utf-8'.
3339   * Added "encoding" option to Request#render(). Closes #299
3340   * Added "dump exceptions" setting, which is enabled by default.
3341   * Added simple ejs template engine support
3342   * Added error response support for text/plain, application/json. Closes #297
3343   * Added callback function param to Request#error()
3344   * Added Request#sendHead()
3345   * Added Request#stream()
3346   * Added support for Request#respond(304, null) for empty response bodies
3347   * Added ETag support to Request#sendfile()
3348   * Added options to Request#sendfile(), passed to fs.createReadStream()
3349   * Added filename arg to Request#download()
3350   * Performance enhanced due to pre-reversing plugins so that plugins.reverse() is not called on each request
3351   * Performance enhanced by preventing several calls to toLowerCase() in Router#match()
3352   * Changed; Request#sendfile() now streams
3353   * Changed; Renamed Request#halt() to Request#respond(). Closes #289
3354   * Changed; Using sys.inspect() instead of JSON.encode() for error output
3355   * Changed; run() returns the http.Server instance. Closes #298
3356   * Changed; Defaulting Server#host to null (INADDR_ANY)
3357   * Changed; Logger "common" format scale of 0.4f
3358   * Removed Logger "request" format
3359   * Fixed; Catching ENOENT in view caching, preventing error when "views/partials" is not found
3360   * Fixed several issues with http client
3361   * Fixed Logger Content-Length output
3362   * Fixed bug preventing Opera from retaining the generated session id. Closes #292
3364 0.9.0 / 2010-04-14
3365 ==================
3367   * Added DSL level error() route support
3368   * Added DSL level notFound() route support
3369   * Added Request#error()
3370   * Added Request#notFound()
3371   * Added Request#render() callback function. Closes #258
3372   * Added "max upload size" setting
3373   * Added "magic" variables to collection partials (\_\_index\_\_, \_\_length\_\_, \_\_isFirst\_\_, \_\_isLast\_\_). Closes #254
3374   * Added [haml.js](http://github.com/visionmedia/haml.js) submodule; removed haml-js
3375   * Added callback function support to Request#halt() as 3rd/4th arg
3376   * Added preprocessing of route param wildcards using param(). Closes #251
3377   * Added view partial support (with collections etc)
3378   * Fixed bug preventing falsey params (such as ?page=0). Closes #286
3379   * Fixed setting of multiple cookies. Closes #199
3380   * Changed; view naming convention is now NAME.TYPE.ENGINE (for example page.html.haml)
3381   * Changed; session cookie is now httpOnly
3382   * Changed; Request is no longer global
3383   * Changed; Event is no longer global
3384   * Changed; "sys" module is no longer global
3385   * Changed; moved Request#download to Static plugin where it belongs
3386   * Changed; Request instance created before body parsing. Closes #262
3387   * Changed; Pre-caching views in memory when "cache view contents" is enabled. Closes #253
3388   * Changed; Pre-caching view partials in memory when "cache view partials" is enabled
3389   * Updated support to node --version 0.1.90
3390   * Updated dependencies
3391   * Removed set("session cookie") in favour of use(Session, { cookie: { ... }})
3392   * Removed utils.mixin(); use Object#mergeDeep()
3394 0.8.0 / 2010-03-19
3395 ==================
3397   * Added coffeescript example app. Closes #242
3398   * Changed; cache api now async friendly. Closes #240
3399   * Removed deprecated 'express/static' support. Use 'express/plugins/static'
3401 0.7.6 / 2010-03-19
3402 ==================
3404   * Added Request#isXHR. Closes #229
3405   * Added `make install` (for the executable)
3406   * Added `express` executable for setting up simple app templates
3407   * Added "GET /public/*" to Static plugin, defaulting to <root>/public
3408   * Added Static plugin
3409   * Fixed; Request#render() only calls cache.get() once
3410   * Fixed; Namespacing View caches with "view:"
3411   * Fixed; Namespacing Static caches with "static:"
3412   * Fixed; Both example apps now use the Static plugin
3413   * Fixed set("views"). Closes #239
3414   * Fixed missing space for combined log format
3415   * Deprecated Request#sendfile() and 'express/static'
3416   * Removed Server#running
3418 0.7.5 / 2010-03-16
3419 ==================
3421   * Added Request#flash() support without args, now returns all flashes
3422   * Updated ext submodule
3424 0.7.4 / 2010-03-16
3425 ==================
3427   * Fixed session reaper
3428   * Changed; class.js replacing js-oo Class implementation (quite a bit faster, no browser cruft)
3430 0.7.3 / 2010-03-16
3431 ==================
3433   * Added package.json
3434   * Fixed requiring of haml / sass due to kiwi removal
3436 0.7.2 / 2010-03-16
3437 ==================
3439   * Fixed GIT submodules (HAH!)
3441 0.7.1 / 2010-03-16
3442 ==================
3444   * Changed; Express now using submodules again until a PM is adopted
3445   * Changed; chat example using millisecond conversions from ext
3447 0.7.0 / 2010-03-15
3448 ==================
3450   * Added Request#pass() support (finds the next matching route, or the given path)
3451   * Added Logger plugin (default "common" format replaces CommonLogger)
3452   * Removed Profiler plugin
3453   * Removed CommonLogger plugin
3455 0.6.0 / 2010-03-11
3456 ==================
3458   * Added seed.yml for kiwi package management support
3459   * Added HTTP client query string support when method is GET. Closes #205
3461   * Added support for arbitrary view engines.
3462     For example "foo.engine.html" will now require('engine'),
3463     the exports from this module are cached after the first require().
3465   * Added async plugin support
3467   * Removed usage of RESTful route funcs as http client
3468     get() etc, use http.get() and friends
3470   * Removed custom exceptions
3472 0.5.0 / 2010-03-10
3473 ==================
3475   * Added ext dependency (library of js extensions)
3476   * Removed extname() / basename() utils. Use path module
3477   * Removed toArray() util. Use arguments.values
3478   * Removed escapeRegexp() util. Use RegExp.escape()
3479   * Removed process.mixin() dependency. Use utils.mixin()
3480   * Removed Collection
3481   * Removed ElementCollection
3482   * Shameless self promotion of ebook "Advanced JavaScript" (http://dev-mag.com)  ;)
3484 0.4.0 / 2010-02-11
3485 ==================
3487   * Added flash() example to sample upload app
3488   * Added high level restful http client module (express/http)
3489   * Changed; RESTful route functions double as HTTP clients. Closes #69
3490   * Changed; throwing error when routes are added at runtime
3491   * Changed; defaulting render() context to the current Request. Closes #197
3492   * Updated haml submodule
3494 0.3.0 / 2010-02-11
3495 ==================
3497   * Updated haml / sass submodules. Closes #200
3498   * Added flash message support. Closes #64
3499   * Added accepts() now allows multiple args. fixes #117
3500   * Added support for plugins to halt. Closes #189
3501   * Added alternate layout support. Closes #119
3502   * Removed Route#run(). Closes #188
3503   * Fixed broken specs due to use(Cookie) missing
3505 0.2.1 / 2010-02-05
3506 ==================
3508   * Added "plot" format option for Profiler (for gnuplot processing)
3509   * Added request number to Profiler plugin
3510   * Fixed binary encoding for multipart file uploads, was previously defaulting to UTF8
3511   * Fixed issue with routes not firing when not files are present. Closes #184
3512   * Fixed process.Promise -> events.Promise
3514 0.2.0 / 2010-02-03
3515 ==================
3517   * Added parseParam() support for name[] etc. (allows for file inputs with "multiple" attr) Closes #180
3518   * Added Both Cache and Session option "reapInterval" may be "reapEvery". Closes #174
3519   * Added expiration support to cache api with reaper. Closes #133
3520   * Added cache Store.Memory#reap()
3521   * Added Cache; cache api now uses first class Cache instances
3522   * Added abstract session Store. Closes #172
3523   * Changed; cache Memory.Store#get() utilizing Collection
3524   * Renamed MemoryStore -> Store.Memory
3525   * Fixed use() of the same plugin several time will always use latest options. Closes #176
3527 0.1.0 / 2010-02-03
3528 ==================
3530   * Changed; Hooks (before / after) pass request as arg as well as evaluated in their context
3531   * Updated node support to 0.1.27 Closes #169
3532   * Updated dirname(__filename) -> __dirname
3533   * Updated libxmljs support to v0.2.0
3534   * Added session support with memory store / reaping
3535   * Added quick uid() helper
3536   * Added multi-part upload support
3537   * Added Sass.js support / submodule
3538   * Added production env caching view contents and static files
3539   * Added static file caching. Closes #136
3540   * Added cache plugin with memory stores
3541   * Added support to StaticFile so that it works with non-textual files.
3542   * Removed dirname() helper
3543   * Removed several globals (now their modules must be required)
3545 0.0.2 / 2010-01-10
3546 ==================
3548   * Added view benchmarks; currently haml vs ejs
3549   * Added Request#attachment() specs. Closes #116
3550   * Added use of node's parseQuery() util. Closes #123
3551   * Added `make init` for submodules
3552   * Updated Haml
3553   * Updated sample chat app to show messages on load
3554   * Updated libxmljs parseString -> parseHtmlString
3555   * Fixed `make init` to work with older versions of git
3556   * Fixed specs can now run independent specs for those who can't build deps. Closes #127
3557   * Fixed issues introduced by the node url module changes. Closes 126.
3558   * Fixed two assertions failing due to Collection#keys() returning strings
3559   * Fixed faulty Collection#toArray() spec due to keys() returning strings
3560   * Fixed `make test` now builds libxmljs.node before testing
3562 0.0.1 / 2010-01-03
3563 ==================
3565   * Initial release