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