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