github.com/cloudcredo/cloudrocker@v0.0.0-20160108110610-1320f8cc2dfd/sample-apps/node/node_modules/express/History.md (about)

     1  4.8.0 / 2014-08-05
     2  ==================
     3  
     4    * add `res.sendFile`
     5      - accepts a file system path instead of a URL
     6      - requires an absolute path or `root` option specified
     7    * deprecate `res.sendfile` -- use `res.sendFile` instead
     8    * support mounted app as any argument to `app.use()`
     9    * deps: qs@1.0.2
    10      - Complete rewrite
    11      - Limits array length to 20
    12      - Limits object depth to 5
    13      - Limits parameters to 1,000
    14    * deps: send@0.8.1
    15      - Add `extensions` option
    16    * deps: serve-static@~1.5.0
    17      - Add `extensions` option
    18      - deps: send@0.8.1
    19  
    20  4.7.4 / 2014-08-04
    21  ==================
    22  
    23    * fix `res.sendfile` regression for serving directory index files
    24    * deps: send@0.7.4
    25      - Fix incorrect 403 on Windows and Node.js 0.11
    26      - Fix serving index files without root dir
    27    * deps: serve-static@~1.4.4
    28      - deps: send@0.7.4
    29  
    30  4.7.3 / 2014-08-04
    31  ==================
    32  
    33    * deps: send@0.7.3
    34      - Fix incorrect 403 on Windows and Node.js 0.11
    35    * deps: serve-static@~1.4.3
    36      - Fix incorrect 403 on Windows and Node.js 0.11
    37      - deps: send@0.7.3
    38  
    39  4.7.2 / 2014-07-27
    40  ==================
    41  
    42    * deps: depd@0.4.4
    43      - Work-around v8 generating empty stack traces
    44    * deps: send@0.7.2
    45      - deps: depd@0.4.4
    46    * deps: serve-static@~1.4.2
    47  
    48  4.7.1 / 2014-07-26
    49  ==================
    50  
    51    * deps: depd@0.4.3
    52      - Fix exception when global `Error.stackTraceLimit` is too low
    53    * deps: send@0.7.1
    54      - deps: depd@0.4.3
    55    * deps: serve-static@~1.4.1
    56  
    57  4.7.0 / 2014-07-25
    58  ==================
    59  
    60    * fix `req.protocol` for proxy-direct connections
    61    * configurable query parser with `app.set('query parser', parser)`
    62      - `app.set('query parser', 'extended')` parse with "qs" module
    63      - `app.set('query parser', 'simple')` parse with "querystring" core module
    64      - `app.set('query parser', false)` disable query string parsing
    65      - `app.set('query parser', true)` enable simple parsing
    66    * deprecate `res.json(status, obj)` -- use `res.status(status).json(obj)` instead
    67    * deprecate `res.jsonp(status, obj)` -- use `res.status(status).jsonp(obj)` instead
    68    * deprecate `res.send(status, body)` -- use `res.status(status).send(body)` instead
    69    * deps: debug@1.0.4
    70    * deps: depd@0.4.2
    71      - Add `TRACE_DEPRECATION` environment variable
    72      - Remove non-standard grey color from color output
    73      - Support `--no-deprecation` argument
    74      - Support `--trace-deprecation` argument
    75    * deps: finalhandler@0.1.0
    76      - Respond after request fully read
    77      - deps: debug@1.0.4
    78    * deps: parseurl@~1.2.0
    79      - Cache URLs based on original value
    80      - Remove no-longer-needed URL mis-parse work-around
    81      - Simplify the "fast-path" `RegExp`
    82    * deps: send@0.7.0
    83      - Add `dotfiles` option
    84      - Cap `maxAge` value to 1 year
    85      - deps: debug@1.0.4
    86      - deps: depd@0.4.2
    87    * deps: serve-static@~1.4.0
    88      - deps: parseurl@~1.2.0
    89      - deps: send@0.7.0
    90    * perf: prevent multiple `Buffer` creation in `res.send`
    91  
    92  4.6.1 / 2014-07-12
    93  ==================
    94  
    95    * fix `subapp.mountpath` regression for `app.use(subapp)`
    96  
    97  4.6.0 / 2014-07-11
    98  ==================
    99  
   100    * accept multiple callbacks to `app.use()`
   101    * add explicit "Rosetta Flash JSONP abuse" protection
   102      - previous versions are not vulnerable; this is just explicit protection
   103    * catch errors in multiple `req.param(name, fn)` handlers
   104    * deprecate `res.redirect(url, status)` -- use `res.redirect(status, url)` instead
   105    * fix `res.send(status, num)` to send `num` as json (not error)
   106    * remove unnecessary escaping when `res.jsonp` returns JSON response
   107    * support non-string `path` in `app.use(path, fn)`
   108      - supports array of paths
   109      - supports `RegExp`
   110    * router: fix optimization on router exit
   111    * router: refactor location of `try` blocks
   112    * router: speed up standard `app.use(fn)`
   113    * deps: debug@1.0.3
   114      - Add support for multiple wildcards in namespaces
   115    * deps: finalhandler@0.0.3
   116      - deps: debug@1.0.3
   117    * deps: methods@1.1.0
   118      - add `CONNECT`
   119    * deps: parseurl@~1.1.3
   120      - faster parsing of href-only URLs
   121    * deps: path-to-regexp@0.1.3
   122    * deps: send@0.6.0
   123      - deps: debug@1.0.3
   124    * deps: serve-static@~1.3.2
   125      - deps: parseurl@~1.1.3
   126      - deps: send@0.6.0
   127    * perf: fix arguments reassign deopt in some `res` methods
   128  
   129  4.5.1 / 2014-07-06
   130  ==================
   131  
   132   * fix routing regression when altering `req.method`
   133  
   134  4.5.0 / 2014-07-04
   135  ==================
   136  
   137   * add deprecation message to non-plural `req.accepts*`
   138   * add deprecation message to `res.send(body, status)`
   139   * add deprecation message to `res.vary()`
   140   * add `headers` option to `res.sendfile`
   141     - use to set headers on successful file transfer
   142   * add `mergeParams` option to `Router`
   143     - merges `req.params` from parent routes
   144   * add `req.hostname` -- correct name for what `req.host` returns
   145   * deprecate things with `depd` module
   146   * deprecate `req.host` -- use `req.hostname` instead
   147   * fix behavior when handling request without routes
   148   * fix handling when `route.all` is only route
   149   * invoke `router.param()` only when route matches
   150   * restore `req.params` after invoking router
   151   * use `finalhandler` for final response handling
   152   * use `media-typer` to alter content-type charset
   153   * deps: accepts@~1.0.7
   154   * deps: send@0.5.0
   155     - Accept string for `maxage` (converted by `ms`)
   156     - Include link in default redirect response
   157   * deps: serve-static@~1.3.0
   158     - Accept string for `maxAge` (converted by `ms`)
   159     - Add `setHeaders` option
   160     - Include HTML link in redirect response
   161     - deps: send@0.5.0
   162   * deps: type-is@~1.3.2
   163  
   164  4.4.5 / 2014-06-26
   165  ==================
   166  
   167   * deps: cookie-signature@1.0.4
   168     - fix for timing attacks
   169  
   170  4.4.4 / 2014-06-20
   171  ==================
   172  
   173   * fix `res.attachment` Unicode filenames in Safari
   174   * fix "trim prefix" debug message in `express:router`
   175   * deps: accepts@~1.0.5
   176   * deps: buffer-crc32@0.2.3
   177  
   178  4.4.3 / 2014-06-11
   179  ==================
   180  
   181   * fix persistence of modified `req.params[name]` from `app.param()`
   182   * deps: accepts@1.0.3
   183     - deps: negotiator@0.4.6
   184   * deps: debug@1.0.2
   185   * deps: send@0.4.3
   186     - Do not throw un-catchable error on file open race condition
   187     - Use `escape-html` for HTML escaping
   188     - deps: debug@1.0.2
   189     - deps: finished@1.2.2
   190     - deps: fresh@0.2.2
   191   * deps: serve-static@1.2.3
   192     - Do not throw un-catchable error on file open race condition
   193     - deps: send@0.4.3
   194  
   195  4.4.2 / 2014-06-09
   196  ==================
   197  
   198   * fix catching errors from top-level handlers
   199   * use `vary` module for `res.vary`
   200   * deps: debug@1.0.1
   201   * deps: proxy-addr@1.0.1
   202   * deps: send@0.4.2
   203     - fix "event emitter leak" warnings
   204     - deps: debug@1.0.1
   205     - deps: finished@1.2.1
   206   * deps: serve-static@1.2.2
   207     - fix "event emitter leak" warnings
   208     - deps: send@0.4.2
   209   * deps: type-is@1.2.1
   210  
   211  4.4.1 / 2014-06-02
   212  ==================
   213  
   214   * deps: methods@1.0.1
   215   * deps: send@0.4.1
   216     - Send `max-age` in `Cache-Control` in correct format
   217   * deps: serve-static@1.2.1
   218     - use `escape-html` for escaping
   219     - deps: send@0.4.1
   220  
   221  4.4.0 / 2014-05-30
   222  ==================
   223  
   224   * custom etag control with `app.set('etag', val)`
   225     - `app.set('etag', function(body, encoding){ return '"etag"' })` custom etag generation
   226     - `app.set('etag', 'weak')` weak tag
   227     - `app.set('etag', 'strong')` strong etag
   228     - `app.set('etag', false)` turn off
   229     - `app.set('etag', true)` standard etag
   230   * mark `res.send` ETag as weak and reduce collisions
   231   * update accepts to 1.0.2
   232     - Fix interpretation when header not in request
   233   * update send to 0.4.0
   234     - Calculate ETag with md5 for reduced collisions
   235     - Ignore stream errors after request ends
   236     - deps: debug@0.8.1
   237   * update serve-static to 1.2.0
   238     - Calculate ETag with md5 for reduced collisions
   239     - Ignore stream errors after request ends
   240     - deps: send@0.4.0
   241  
   242  4.3.2 / 2014-05-28
   243  ==================
   244  
   245   * fix handling of errors from `router.param()` callbacks
   246  
   247  4.3.1 / 2014-05-23
   248  ==================
   249  
   250   * revert "fix behavior of multiple `app.VERB` for the same path"
   251     - this caused a regression in the order of route execution
   252  
   253  4.3.0 / 2014-05-21
   254  ==================
   255  
   256   * add `req.baseUrl` to access the path stripped from `req.url` in routes
   257   * fix behavior of multiple `app.VERB` for the same path
   258   * fix issue routing requests among sub routers
   259   * invoke `router.param()` only when necessary instead of every match
   260   * proper proxy trust with `app.set('trust proxy', trust)`
   261     - `app.set('trust proxy', 1)` trust first hop
   262     - `app.set('trust proxy', 'loopback')` trust loopback addresses
   263     - `app.set('trust proxy', '10.0.0.1')` trust single IP
   264     - `app.set('trust proxy', '10.0.0.1/16')` trust subnet
   265     - `app.set('trust proxy', '10.0.0.1, 10.0.0.2')` trust list
   266     - `app.set('trust proxy', false)` turn off
   267     - `app.set('trust proxy', true)` trust everything
   268   * set proper `charset` in `Content-Type` for `res.send`
   269   * update type-is to 1.2.0
   270     - support suffix matching
   271  
   272  4.2.0 / 2014-05-11
   273  ==================
   274  
   275   * deprecate `app.del()` -- use `app.delete()` instead
   276   * deprecate `res.json(obj, status)` -- use `res.json(status, obj)` instead
   277     - the edge-case `res.json(status, num)` requires `res.status(status).json(num)`
   278   * deprecate `res.jsonp(obj, status)` -- use `res.jsonp(status, obj)` instead
   279     - the edge-case `res.jsonp(status, num)` requires `res.status(status).jsonp(num)`
   280   * fix `req.next` when inside router instance
   281   * include `ETag` header in `HEAD` requests
   282   * keep previous `Content-Type` for `res.jsonp`
   283   * support PURGE method
   284     - add `app.purge`
   285     - add `router.purge`
   286     - include PURGE in `app.all`
   287   * update debug to 0.8.0
   288     - add `enable()` method
   289     - change from stderr to stdout
   290   * update methods to 1.0.0
   291     - add PURGE
   292  
   293  4.1.2 / 2014-05-08
   294  ==================
   295  
   296   * fix `req.host` for IPv6 literals
   297   * fix `res.jsonp` error if callback param is object
   298  
   299  4.1.1 / 2014-04-27
   300  ==================
   301  
   302   * fix package.json to reflect supported node version
   303  
   304  4.1.0 / 2014-04-24
   305  ==================
   306  
   307   * pass options from `res.sendfile` to `send`
   308   * preserve casing of headers in `res.header` and `res.set`
   309   * support unicode file names in `res.attachment` and `res.download`
   310   * update accepts to 1.0.1
   311     - deps: negotiator@0.4.0
   312   * update cookie to 0.1.2
   313     - Fix for maxAge == 0
   314     - made compat with expires field
   315   * update send to 0.3.0
   316     - Accept API options in options object
   317     - Coerce option types
   318     - Control whether to generate etags
   319     - Default directory access to 403 when index disabled
   320     - Fix sending files with dots without root set
   321     - Include file path in etag
   322     - Make "Can't set headers after they are sent." catchable
   323     - Send full entity-body for multi range requests
   324     - Set etags to "weak"
   325     - Support "If-Range" header
   326     - Support multiple index paths
   327     - deps: mime@1.2.11
   328   * update serve-static to 1.1.0
   329     - Accept options directly to `send` module
   330     - Resolve relative paths at middleware setup
   331     - Use parseurl to parse the URL from request
   332     - deps: send@0.3.0
   333   * update type-is to 1.1.0
   334     - add non-array values support
   335     - add `multipart` as a shorthand
   336  
   337  4.0.0 / 2014-04-09
   338  ==================
   339  
   340   * remove:
   341     - node 0.8 support
   342     - connect and connect's patches except for charset handling
   343     - express(1) - moved to [express-generator](https://github.com/expressjs/generator)
   344     - `express.createServer()` - it has been deprecated for a long time. Use `express()`
   345     - `app.configure` - use logic in your own app code
   346     - `app.router` - is removed
   347     - `req.auth` - use `basic-auth` instead
   348     - `req.accepted*` - use `req.accepts*()` instead
   349     - `res.location` - relative URL resolution is removed
   350     - `res.charset` - include the charset in the content type when using `res.set()`
   351     - all bundled middleware except `static`
   352   * change:
   353     - `app.route` -> `app.mountpath` when mounting an express app in another express app
   354     - `json spaces` no longer enabled by default in development
   355     - `req.accepts*` -> `req.accepts*s` - i.e. `req.acceptsEncoding` -> `req.acceptsEncodings`
   356     - `req.params` is now an object instead of an array
   357     - `res.locals` is no longer a function. It is a plain js object. Treat it as such.
   358     - `res.headerSent` -> `res.headersSent` to match node.js ServerResponse object
   359   * refactor:
   360     - `req.accepts*` with [accepts](https://github.com/expressjs/accepts)
   361     - `req.is` with [type-is](https://github.com/expressjs/type-is)
   362     - [path-to-regexp](https://github.com/component/path-to-regexp)
   363   * add:
   364     - `app.router()` - returns the app Router instance
   365     - `app.route()` - Proxy to the app's `Router#route()` method to create a new route
   366     - Router & Route - public API
   367  
   368  3.16.0 / 2014-08-05
   369  ===================
   370  
   371    * deps: connect@2.25.0
   372      - deps: body-parser@~1.6.0
   373      - deps: compression@~1.0.10
   374      - deps: csurf@~1.4.0
   375      - deps: express-session@~1.7.4
   376      - deps: qs@1.0.2
   377      - deps: serve-static@~1.5.0
   378    * deps: send@0.8.1
   379      - Add `extensions` option
   380  
   381  3.15.3 / 2014-08-04
   382  ===================
   383  
   384    * fix `res.sendfile` regression for serving directory index files
   385    * deps: connect@2.24.3
   386      - deps: serve-index@~1.1.5
   387      - deps: serve-static@~1.4.4
   388    * deps: send@0.7.4
   389      - Fix incorrect 403 on Windows and Node.js 0.11
   390      - Fix serving index files without root dir
   391  
   392  3.15.2 / 2014-07-27
   393  ===================
   394  
   395    * deps: connect@2.24.2
   396      - deps: body-parser@~1.5.2
   397      - deps: depd@0.4.4
   398      - deps: express-session@~1.7.2
   399      - deps: morgan@~1.2.2
   400      - deps: serve-static@~1.4.2
   401    * deps: depd@0.4.4
   402      - Work-around v8 generating empty stack traces
   403    * deps: send@0.7.2
   404      - deps: depd@0.4.4
   405  
   406  3.15.1 / 2014-07-26
   407  ===================
   408  
   409    * deps: connect@2.24.1
   410      - deps: body-parser@~1.5.1
   411      - deps: depd@0.4.3
   412      - deps: express-session@~1.7.1
   413      - deps: morgan@~1.2.1
   414      - deps: serve-index@~1.1.4
   415      - deps: serve-static@~1.4.1
   416    * deps: depd@0.4.3
   417      - Fix exception when global `Error.stackTraceLimit` is too low
   418    * deps: send@0.7.1
   419      - deps: depd@0.4.3
   420  
   421  3.15.0 / 2014-07-22
   422  ===================
   423  
   424    * Fix `req.protocol` for proxy-direct connections
   425    * Pass options from `res.sendfile` to `send`
   426    * deps: connect@2.24.0
   427      - deps: body-parser@~1.5.0
   428      - deps: compression@~1.0.9
   429      - deps: connect-timeout@~1.2.1
   430      - deps: debug@1.0.4
   431      - deps: depd@0.4.2
   432      - deps: express-session@~1.7.0
   433      - deps: finalhandler@0.1.0
   434      - deps: method-override@~2.1.2
   435      - deps: morgan@~1.2.0
   436      - deps: multiparty@3.3.1
   437      - deps: parseurl@~1.2.0
   438      - deps: serve-static@~1.4.0
   439    * deps: debug@1.0.4
   440    * deps: depd@0.4.2
   441      - Add `TRACE_DEPRECATION` environment variable
   442      - Remove non-standard grey color from color output
   443      - Support `--no-deprecation` argument
   444      - Support `--trace-deprecation` argument
   445    * deps: parseurl@~1.2.0
   446      - Cache URLs based on original value
   447      - Remove no-longer-needed URL mis-parse work-around
   448      - Simplify the "fast-path" `RegExp`
   449    * deps: send@0.7.0
   450      - Add `dotfiles` option
   451      - Cap `maxAge` value to 1 year
   452      - deps: debug@1.0.4
   453      - deps: depd@0.4.2
   454  
   455  3.14.0 / 2014-07-11
   456  ===================
   457  
   458   * add explicit "Rosetta Flash JSONP abuse" protection
   459     - previous versions are not vulnerable; this is just explicit protection
   460   * deprecate `res.redirect(url, status)` -- use `res.redirect(status, url)` instead
   461   * fix `res.send(status, num)` to send `num` as json (not error)
   462   * remove unnecessary escaping when `res.jsonp` returns JSON response
   463   * deps: basic-auth@1.0.0
   464     - support empty password
   465     - support empty username
   466   * deps: connect@2.23.0
   467     - deps: debug@1.0.3
   468     - deps: express-session@~1.6.4
   469     - deps: method-override@~2.1.0
   470     - deps: parseurl@~1.1.3
   471     - deps: serve-static@~1.3.1
   472    * deps: debug@1.0.3
   473      - Add support for multiple wildcards in namespaces
   474    * deps: methods@1.1.0
   475      - add `CONNECT`
   476    * deps: parseurl@~1.1.3
   477      - faster parsing of href-only URLs
   478  
   479  3.13.0 / 2014-07-03
   480  ===================
   481  
   482   * add deprecation message to `app.configure`
   483   * add deprecation message to `req.auth`
   484   * use `basic-auth` to parse `Authorization` header
   485   * deps: connect@2.22.0
   486     - deps: csurf@~1.3.0
   487     - deps: express-session@~1.6.1
   488     - deps: multiparty@3.3.0
   489     - deps: serve-static@~1.3.0
   490   * deps: send@0.5.0
   491     - Accept string for `maxage` (converted by `ms`)
   492     - Include link in default redirect response
   493  
   494  3.12.1 / 2014-06-26
   495  ===================
   496  
   497   * deps: connect@2.21.1
   498     - deps: cookie-parser@1.3.2
   499     - deps: cookie-signature@1.0.4
   500     - deps: express-session@~1.5.2
   501     - deps: type-is@~1.3.2
   502   * deps: cookie-signature@1.0.4
   503     - fix for timing attacks
   504  
   505  3.12.0 / 2014-06-21
   506  ===================
   507  
   508   * use `media-typer` to alter content-type charset
   509   * deps: connect@2.21.0
   510     - deprecate `connect(middleware)` -- use `app.use(middleware)` instead
   511     - deprecate `connect.createServer()` -- use `connect()` instead
   512     - fix `res.setHeader()` patch to work with with get -> append -> set pattern
   513     - deps: compression@~1.0.8
   514     - deps: errorhandler@~1.1.1
   515     - deps: express-session@~1.5.0
   516     - deps: serve-index@~1.1.3
   517  
   518  3.11.0 / 2014-06-19
   519  ===================
   520  
   521   * deprecate things with `depd` module
   522   * deps: buffer-crc32@0.2.3
   523   * deps: connect@2.20.2
   524     - deprecate `verify` option to `json` -- use `body-parser` npm module instead
   525     - deprecate `verify` option to `urlencoded` -- use `body-parser` npm module instead
   526     - deprecate things with `depd` module
   527     - use `finalhandler` for final response handling
   528     - use `media-typer` to parse `content-type` for charset
   529     - deps: body-parser@1.4.3
   530     - deps: connect-timeout@1.1.1
   531     - deps: cookie-parser@1.3.1
   532     - deps: csurf@1.2.2
   533     - deps: errorhandler@1.1.0
   534     - deps: express-session@1.4.0
   535     - deps: multiparty@3.2.9
   536     - deps: serve-index@1.1.2
   537     - deps: type-is@1.3.1
   538     - deps: vhost@2.0.0
   539  
   540  3.10.5 / 2014-06-11
   541  ===================
   542  
   543   * deps: connect@2.19.6
   544     - deps: body-parser@1.3.1
   545     - deps: compression@1.0.7
   546     - deps: debug@1.0.2
   547     - deps: serve-index@1.1.1
   548     - deps: serve-static@1.2.3
   549   * deps: debug@1.0.2
   550   * deps: send@0.4.3
   551     - Do not throw un-catchable error on file open race condition
   552     - Use `escape-html` for HTML escaping
   553     - deps: debug@1.0.2
   554     - deps: finished@1.2.2
   555     - deps: fresh@0.2.2
   556  
   557  3.10.4 / 2014-06-09
   558  ===================
   559  
   560   * deps: connect@2.19.5
   561     - fix "event emitter leak" warnings
   562     - deps: csurf@1.2.1
   563     - deps: debug@1.0.1
   564     - deps: serve-static@1.2.2
   565     - deps: type-is@1.2.1
   566   * deps: debug@1.0.1
   567   * deps: send@0.4.2
   568     - fix "event emitter leak" warnings
   569     - deps: finished@1.2.1
   570     - deps: debug@1.0.1
   571  
   572  3.10.3 / 2014-06-05
   573  ===================
   574  
   575   * use `vary` module for `res.vary`
   576   * deps: connect@2.19.4
   577     - deps: errorhandler@1.0.2
   578     - deps: method-override@2.0.2
   579     - deps: serve-favicon@2.0.1
   580   * deps: debug@1.0.0
   581  
   582  3.10.2 / 2014-06-03
   583  ===================
   584  
   585   * deps: connect@2.19.3
   586     - deps: compression@1.0.6
   587  
   588  3.10.1 / 2014-06-03
   589  ===================
   590  
   591   * deps: connect@2.19.2
   592     - deps: compression@1.0.4
   593   * deps: proxy-addr@1.0.1
   594  
   595  3.10.0 / 2014-06-02
   596  ===================
   597  
   598   * deps: connect@2.19.1
   599     - deprecate `methodOverride()` -- use `method-override` npm module instead
   600     - deps: body-parser@1.3.0
   601     - deps: method-override@2.0.1
   602     - deps: multiparty@3.2.8
   603     - deps: response-time@2.0.0
   604     - deps: serve-static@1.2.1
   605   * deps: methods@1.0.1
   606   * deps: send@0.4.1
   607     - Send `max-age` in `Cache-Control` in correct format
   608  
   609  3.9.0 / 2014-05-30
   610  ==================
   611  
   612   * custom etag control with `app.set('etag', val)`
   613     - `app.set('etag', function(body, encoding){ return '"etag"' })` custom etag generation
   614     - `app.set('etag', 'weak')` weak tag
   615     - `app.set('etag', 'strong')` strong etag
   616     - `app.set('etag', false)` turn off
   617     - `app.set('etag', true)` standard etag
   618   * Include ETag in HEAD requests
   619   * mark `res.send` ETag as weak and reduce collisions
   620   * update connect to 2.18.0
   621     - deps: compression@1.0.3
   622     - deps: serve-index@1.1.0
   623     - deps: serve-static@1.2.0
   624   * update send to 0.4.0
   625     - Calculate ETag with md5 for reduced collisions
   626     - Ignore stream errors after request ends
   627     - deps: debug@0.8.1
   628  
   629  3.8.1 / 2014-05-27
   630  ==================
   631  
   632   * update connect to 2.17.3
   633     - deps: body-parser@1.2.2
   634     - deps: express-session@1.2.1
   635     - deps: method-override@1.0.2
   636  
   637  3.8.0 / 2014-05-21
   638  ==================
   639  
   640   * keep previous `Content-Type` for `res.jsonp`
   641   * set proper `charset` in `Content-Type` for `res.send`
   642   * update connect to 2.17.1
   643     - fix `res.charset` appending charset when `content-type` has one
   644     - deps: express-session@1.2.0
   645     - deps: morgan@1.1.1
   646     - deps: serve-index@1.0.3
   647  
   648  3.7.0 / 2014-05-18
   649  ==================
   650  
   651   * proper proxy trust with `app.set('trust proxy', trust)`
   652     - `app.set('trust proxy', 1)` trust first hop
   653     - `app.set('trust proxy', 'loopback')` trust loopback addresses
   654     - `app.set('trust proxy', '10.0.0.1')` trust single IP
   655     - `app.set('trust proxy', '10.0.0.1/16')` trust subnet
   656     - `app.set('trust proxy', '10.0.0.1, 10.0.0.2')` trust list
   657     - `app.set('trust proxy', false)` turn off
   658     - `app.set('trust proxy', true)` trust everything
   659   * update connect to 2.16.2
   660     - deprecate `res.headerSent` -- use `res.headersSent`
   661     - deprecate `res.on("header")` -- use on-headers module instead
   662     - fix edge-case in `res.appendHeader` that would append in wrong order
   663     - json: use body-parser
   664     - urlencoded: use body-parser
   665     - dep: bytes@1.0.0
   666     - dep: cookie-parser@1.1.0
   667     - dep: csurf@1.2.0
   668     - dep: express-session@1.1.0
   669     - dep: method-override@1.0.1
   670  
   671  3.6.0 / 2014-05-09
   672  ==================
   673  
   674   * deprecate `app.del()` -- use `app.delete()` instead
   675   * deprecate `res.json(obj, status)` -- use `res.json(status, obj)` instead
   676     - the edge-case `res.json(status, num)` requires `res.status(status).json(num)`
   677   * deprecate `res.jsonp(obj, status)` -- use `res.jsonp(status, obj)` instead
   678     - the edge-case `res.jsonp(status, num)` requires `res.status(status).jsonp(num)`
   679   * support PURGE method
   680     - add `app.purge`
   681     - add `router.purge`
   682     - include PURGE in `app.all`
   683   * update connect to 2.15.0
   684     * Add `res.appendHeader`
   685     * Call error stack even when response has been sent
   686     * Patch `res.headerSent` to return Boolean
   687     * Patch `res.headersSent` for node.js 0.8
   688     * Prevent default 404 handler after response sent
   689     * dep: compression@1.0.2
   690     * dep: connect-timeout@1.1.0
   691     * dep: debug@^0.8.0
   692     * dep: errorhandler@1.0.1
   693     * dep: express-session@1.0.4
   694     * dep: morgan@1.0.1
   695     * dep: serve-favicon@2.0.0
   696     * dep: serve-index@1.0.2
   697   * update debug to 0.8.0
   698     * add `enable()` method
   699     * change from stderr to stdout
   700   * update methods to 1.0.0
   701     - add PURGE
   702   * update mkdirp to 0.5.0
   703  
   704  3.5.3 / 2014-05-08
   705  ==================
   706  
   707   * fix `req.host` for IPv6 literals
   708   * fix `res.jsonp` error if callback param is object
   709  
   710  3.5.2 / 2014-04-24
   711  ==================
   712  
   713   * update connect to 2.14.5
   714   * update cookie to 0.1.2
   715   * update mkdirp to 0.4.0
   716   * update send to 0.3.0
   717  
   718  3.5.1 / 2014-03-25
   719  ==================
   720  
   721   * pin less-middleware in generated app
   722  
   723  3.5.0 / 2014-03-06
   724  ==================
   725  
   726   * bump deps
   727  
   728  3.4.8 / 2014-01-13
   729  ==================
   730  
   731   * prevent incorrect automatic OPTIONS responses #1868 @dpatti
   732   * update binary and examples for jade 1.0 #1876 @yossi, #1877 @reqshark, #1892 @matheusazzi
   733   * throw 400 in case of malformed paths @rlidwka
   734  
   735  3.4.7 / 2013-12-10
   736  ==================
   737  
   738   * update connect
   739  
   740  3.4.6 / 2013-12-01
   741  ==================
   742  
   743   * update connect (raw-body)
   744  
   745  3.4.5 / 2013-11-27
   746  ==================
   747  
   748   * update connect
   749   * res.location: remove leading ./ #1802 @kapouer
   750   * res.redirect: fix `res.redirect('toString') #1829 @michaelficarra
   751   * res.send: always send ETag when content-length > 0
   752   * router: add Router.all() method
   753  
   754  3.4.4 / 2013-10-29
   755  ==================
   756  
   757   * update connect
   758   * update supertest
   759   * update methods
   760   * express(1): replace bodyParser() with urlencoded() and json() #1795 @chirag04
   761  
   762  3.4.3 / 2013-10-23
   763  ==================
   764  
   765   * update connect
   766  
   767  3.4.2 / 2013-10-18
   768  ==================
   769  
   770   * update connect
   771   * downgrade commander
   772  
   773  3.4.1 / 2013-10-15
   774  ==================
   775  
   776   * update connect
   777   * update commander
   778   * jsonp: check if callback is a function
   779   * router: wrap encodeURIComponent in a try/catch #1735 (@lxe)
   780   * res.format: now includes chraset @1747 (@sorribas)
   781   * res.links: allow multiple calls @1746 (@sorribas)
   782  
   783  3.4.0 / 2013-09-07
   784  ==================
   785  
   786   * add res.vary(). Closes #1682
   787   * update connect
   788  
   789  3.3.8 / 2013-09-02
   790  ==================
   791  
   792   * update connect
   793  
   794  3.3.7 / 2013-08-28
   795  ==================
   796  
   797   * update connect
   798  
   799  3.3.6 / 2013-08-27
   800  ==================
   801  
   802   * Revert "remove charset from json responses. Closes #1631" (causes issues in some clients)
   803   * add: req.accepts take an argument list
   804  
   805  3.3.4 / 2013-07-08
   806  ==================
   807  
   808   * update send and connect
   809  
   810  3.3.3 / 2013-07-04
   811  ==================
   812  
   813   * update connect
   814  
   815  3.3.2 / 2013-07-03
   816  ==================
   817  
   818   * update connect
   819   * update send
   820   * remove .version export
   821  
   822  3.3.1 / 2013-06-27
   823  ==================
   824  
   825   * update connect
   826  
   827  3.3.0 / 2013-06-26
   828  ==================
   829  
   830   * update connect
   831   * add support for multiple X-Forwarded-Proto values. Closes #1646
   832   * change: remove charset from json responses. Closes #1631
   833   * change: return actual booleans from req.accept* functions
   834   * fix jsonp callback array throw
   835  
   836  3.2.6 / 2013-06-02
   837  ==================
   838  
   839   * update connect
   840  
   841  3.2.5 / 2013-05-21
   842  ==================
   843  
   844   * update connect
   845   * update node-cookie
   846   * add: throw a meaningful error when there is no default engine
   847   * change generation of ETags with res.send() to GET requests only. Closes #1619
   848  
   849  3.2.4 / 2013-05-09
   850  ==================
   851  
   852    * fix `req.subdomains` when no Host is present
   853    * fix `req.host` when no Host is present, return undefined
   854  
   855  3.2.3 / 2013-05-07
   856  ==================
   857  
   858    * update connect / qs
   859  
   860  3.2.2 / 2013-05-03
   861  ==================
   862  
   863    * update qs
   864  
   865  3.2.1 / 2013-04-29
   866  ==================
   867  
   868    * add app.VERB() paths array deprecation warning
   869    * update connect
   870    * update qs and remove all ~ semver crap
   871    * fix: accept number as value of Signed Cookie
   872  
   873  3.2.0 / 2013-04-15
   874  ==================
   875  
   876    * add "view" constructor setting to override view behaviour
   877    * add req.acceptsEncoding(name)
   878    * add req.acceptedEncodings
   879    * revert cookie signature change causing session race conditions
   880    * fix sorting of Accept values of the same quality
   881  
   882  3.1.2 / 2013-04-12
   883  ==================
   884  
   885    * add support for custom Accept parameters
   886    * update cookie-signature
   887  
   888  3.1.1 / 2013-04-01
   889  ==================
   890  
   891    * add X-Forwarded-Host support to `req.host`
   892    * fix relative redirects
   893    * update mkdirp
   894    * update buffer-crc32
   895    * remove legacy app.configure() method from app template.
   896  
   897  3.1.0 / 2013-01-25
   898  ==================
   899  
   900    * add support for leading "." in "view engine" setting
   901    * add array support to `res.set()`
   902    * add node 0.8.x to travis.yml
   903    * add "subdomain offset" setting for tweaking `req.subdomains`
   904    * add `res.location(url)` implementing `res.redirect()`-like setting of Location
   905    * use app.get() for x-powered-by setting for inheritance
   906    * fix colons in passwords for `req.auth`
   907  
   908  3.0.6 / 2013-01-04
   909  ==================
   910  
   911    * add http verb methods to Router
   912    * update connect
   913    * fix mangling of the `res.cookie()` options object
   914    * fix jsonp whitespace escape. Closes #1132
   915  
   916  3.0.5 / 2012-12-19
   917  ==================
   918  
   919    * add throwing when a non-function is passed to a route
   920    * fix: explicitly remove Transfer-Encoding header from 204 and 304 responses
   921    * revert "add 'etag' option"
   922  
   923  3.0.4 / 2012-12-05
   924  ==================
   925  
   926    * add 'etag' option to disable `res.send()` Etags
   927    * add escaping of urls in text/plain in `res.redirect()`
   928      for old browsers interpreting as html
   929    * change crc32 module for a more liberal license
   930    * update connect
   931  
   932  3.0.3 / 2012-11-13
   933  ==================
   934  
   935    * update connect
   936    * update cookie module
   937    * fix cookie max-age
   938  
   939  3.0.2 / 2012-11-08
   940  ==================
   941  
   942    * add OPTIONS to cors example. Closes #1398
   943    * fix route chaining regression. Closes #1397
   944  
   945  3.0.1 / 2012-11-01
   946  ==================
   947  
   948    * update connect
   949  
   950  3.0.0 / 2012-10-23
   951  ==================
   952  
   953    * add `make clean`
   954    * add "Basic" check to req.auth
   955    * add `req.auth` test coverage
   956    * add cb && cb(payload) to `res.jsonp()`. Closes #1374
   957    * add backwards compat for `res.redirect()` status. Closes #1336
   958    * add support for `res.json()` to retain previously defined Content-Types. Closes #1349
   959    * update connect
   960    * change `res.redirect()` to utilize a pathname-relative Location again. Closes #1382
   961    * remove non-primitive string support for `res.send()`
   962    * fix view-locals example. Closes #1370
   963    * fix route-separation example
   964  
   965  3.0.0rc5 / 2012-09-18
   966  ==================
   967  
   968    * update connect
   969    * add redis search example
   970    * add static-files example
   971    * add "x-powered-by" setting (`app.disable('x-powered-by')`)
   972    * add "application/octet-stream" redirect Accept test case. Closes #1317
   973  
   974  3.0.0rc4 / 2012-08-30
   975  ==================
   976  
   977    * add `res.jsonp()`. Closes #1307
   978    * add "verbose errors" option to error-pages example
   979    * add another route example to express(1) so people are not so confused
   980    * add redis online user activity tracking example
   981    * update connect dep
   982    * fix etag quoting. Closes #1310
   983    * fix error-pages 404 status
   984    * fix jsonp callback char restrictions
   985    * remove old OPTIONS default response
   986  
   987  3.0.0rc3 / 2012-08-13
   988  ==================
   989  
   990    * update connect dep
   991    * fix signed cookies to work with `connect.cookieParser()` ("s:" prefix was missing) [tnydwrds]
   992    * fix `res.render()` clobbering of "locals"
   993  
   994  3.0.0rc2 / 2012-08-03
   995  ==================
   996  
   997    * add CORS example
   998    * update connect dep
   999    * deprecate `.createServer()` & remove old stale examples
  1000    * fix: escape `res.redirect()` link
  1001    * fix vhost example
  1002  
  1003  3.0.0rc1 / 2012-07-24
  1004  ==================
  1005  
  1006    * add more examples to view-locals
  1007    * add scheme-relative redirects (`res.redirect("//foo.com")`) support
  1008    * update cookie dep
  1009    * update connect dep
  1010    * update send dep
  1011    * fix `express(1)` -h flag, use -H for hogan. Closes #1245
  1012    * fix `res.sendfile()` socket error handling regression
  1013  
  1014  3.0.0beta7 / 2012-07-16
  1015  ==================
  1016  
  1017    * update connect dep for `send()` root normalization regression
  1018  
  1019  3.0.0beta6 / 2012-07-13
  1020  ==================
  1021  
  1022    * add `err.view` property for view errors. Closes #1226
  1023    * add "jsonp callback name" setting
  1024    * add support for "/foo/:bar*" non-greedy matches
  1025    * change `res.sendfile()` to use `send()` module
  1026    * change `res.send` to use "response-send" module
  1027    * remove `app.locals.use` and `res.locals.use`, use regular middleware
  1028  
  1029  3.0.0beta5 / 2012-07-03
  1030  ==================
  1031  
  1032    * add "make check" support
  1033    * add route-map example
  1034    * add `res.json(obj, status)` support back for BC
  1035    * add "methods" dep, remove internal methods module
  1036    * update connect dep
  1037    * update auth example to utilize cores pbkdf2
  1038    * updated tests to use "supertest"
  1039  
  1040  3.0.0beta4 / 2012-06-25
  1041  ==================
  1042  
  1043    * Added `req.auth`
  1044    * Added `req.range(size)`
  1045    * Added `res.links(obj)`
  1046    * Added `res.send(body, status)` support back for backwards compat
  1047    * Added `.default()` support to `res.format()`
  1048    * Added 2xx / 304 check to `req.fresh`
  1049    * Revert "Added + support to the router"
  1050    * Fixed `res.send()` freshness check, respect res.statusCode
  1051  
  1052  3.0.0beta3 / 2012-06-15
  1053  ==================
  1054  
  1055    * Added hogan `--hjs` to express(1) [nullfirm]
  1056    * Added another example to content-negotiation
  1057    * Added `fresh` dep
  1058    * Changed: `res.send()` always checks freshness
  1059    * Fixed: expose connects mime module. Cloases #1165
  1060  
  1061  3.0.0beta2 / 2012-06-06
  1062  ==================
  1063  
  1064    * Added `+` support to the router
  1065    * Added `req.host`
  1066    * Changed `req.param()` to check route first
  1067    * Update connect dep
  1068  
  1069  3.0.0beta1 / 2012-06-01
  1070  ==================
  1071  
  1072    * Added `res.format()` callback to override default 406 behaviour
  1073    * Fixed `res.redirect()` 406. Closes #1154
  1074  
  1075  3.0.0alpha5 / 2012-05-30
  1076  ==================
  1077  
  1078    * Added `req.ip`
  1079    * Added `{ signed: true }` option to `res.cookie()`
  1080    * Removed `res.signedCookie()`
  1081    * Changed: dont reverse `req.ips`
  1082    * Fixed "trust proxy" setting check for `req.ips`
  1083  
  1084  3.0.0alpha4 / 2012-05-09
  1085  ==================
  1086  
  1087    * Added: allow `[]` in jsonp callback. Closes #1128
  1088    * Added `PORT` env var support in generated template. Closes #1118 [benatkin]
  1089    * Updated: connect 2.2.2
  1090  
  1091  3.0.0alpha3 / 2012-05-04
  1092  ==================
  1093  
  1094    * Added public `app.routes`. Closes #887
  1095    * Added _view-locals_ example
  1096    * Added _mvc_ example
  1097    * Added `res.locals.use()`. Closes #1120
  1098    * Added conditional-GET support to `res.send()`
  1099    * Added: coerce `res.set()` values to strings
  1100    * Changed: moved `static()` in generated apps below router
  1101    * Changed: `res.send()` only set ETag when not previously set
  1102    * Changed connect 2.2.1 dep
  1103    * Changed: `make test` now runs unit / acceptance tests
  1104    * Fixed req/res proto inheritance
  1105  
  1106  3.0.0alpha2 / 2012-04-26
  1107  ==================
  1108  
  1109    * Added `make benchmark` back
  1110    * Added `res.send()` support for `String` objects
  1111    * Added client-side data exposing example
  1112    * Added `res.header()` and `req.header()` aliases for BC
  1113    * Added `express.createServer()` for BC
  1114    * Perf: memoize parsed urls
  1115    * Perf: connect 2.2.0 dep
  1116    * Changed: make `expressInit()` middleware self-aware
  1117    * Fixed: use app.get() for all core settings
  1118    * Fixed redis session example
  1119    * Fixed session example. Closes #1105
  1120    * Fixed generated express dep. Closes #1078
  1121  
  1122  3.0.0alpha1 / 2012-04-15
  1123  ==================
  1124  
  1125    * Added `app.locals.use(callback)`
  1126    * Added `app.locals` object
  1127    * Added `app.locals(obj)`
  1128    * Added `res.locals` object
  1129    * Added `res.locals(obj)`
  1130    * Added `res.format()` for content-negotiation
  1131    * Added `app.engine()`
  1132    * Added `res.cookie()` JSON cookie support
  1133    * Added "trust proxy" setting
  1134    * Added `req.subdomains`
  1135    * Added `req.protocol`
  1136    * Added `req.secure`
  1137    * Added `req.path`
  1138    * Added `req.ips`
  1139    * Added `req.fresh`
  1140    * Added `req.stale`
  1141    * Added comma-delmited / array support for `req.accepts()`
  1142    * Added debug instrumentation
  1143    * Added `res.set(obj)`
  1144    * Added `res.set(field, value)`
  1145    * Added `res.get(field)`
  1146    * Added `app.get(setting)`. Closes #842
  1147    * Added `req.acceptsLanguage()`
  1148    * Added `req.acceptsCharset()`
  1149    * Added `req.accepted`
  1150    * Added `req.acceptedLanguages`
  1151    * Added `req.acceptedCharsets`
  1152    * Added "json replacer" setting
  1153    * Added "json spaces" setting
  1154    * Added X-Forwarded-Proto support to `res.redirect()`. Closes #92
  1155    * Added `--less` support to express(1)
  1156    * Added `express.response` prototype
  1157    * Added `express.request` prototype
  1158    * Added `express.application` prototype
  1159    * Added `app.path()`
  1160    * Added `app.render()`
  1161    * Added `res.type()` to replace `res.contentType()`
  1162    * Changed: `res.redirect()` to add relative support
  1163    * Changed: enable "jsonp callback" by default
  1164    * Changed: renamed "case sensitive routes" to "case sensitive routing"
  1165    * Rewrite of all tests with mocha
  1166    * Removed "root" setting
  1167    * Removed `res.redirect('home')` support
  1168    * Removed `req.notify()`
  1169    * Removed `app.register()`
  1170    * Removed `app.redirect()`
  1171    * Removed `app.is()`
  1172    * Removed `app.helpers()`
  1173    * Removed `app.dynamicHelpers()`
  1174    * Fixed `res.sendfile()` with non-GET. Closes #723
  1175    * Fixed express(1) public dir for windows. Closes #866
  1176  
  1177  2.5.9/ 2012-04-02
  1178  ==================
  1179  
  1180    * Added support for PURGE request method [pbuyle]
  1181    * Fixed `express(1)` generated app `app.address()` before `listening` [mmalecki]
  1182  
  1183  2.5.8 / 2012-02-08
  1184  ==================
  1185  
  1186    * Update mkdirp dep. Closes #991
  1187  
  1188  2.5.7 / 2012-02-06
  1189  ==================
  1190  
  1191    * Fixed `app.all` duplicate DELETE requests [mscdex]
  1192  
  1193  2.5.6 / 2012-01-13
  1194  ==================
  1195  
  1196    * Updated hamljs dev dep. Closes #953
  1197  
  1198  2.5.5 / 2012-01-08
  1199  ==================
  1200  
  1201    * Fixed: set `filename` on cached templates [matthewleon]
  1202  
  1203  2.5.4 / 2012-01-02
  1204  ==================
  1205  
  1206    * Fixed `express(1)` eol on 0.4.x. Closes #947
  1207  
  1208  2.5.3 / 2011-12-30
  1209  ==================
  1210  
  1211    * Fixed `req.is()` when a charset is present
  1212  
  1213  2.5.2 / 2011-12-10
  1214  ==================
  1215  
  1216    * Fixed: express(1) LF -> CRLF for windows
  1217  
  1218  2.5.1 / 2011-11-17
  1219  ==================
  1220  
  1221    * Changed: updated connect to 1.8.x
  1222    * Removed sass.js support from express(1)
  1223  
  1224  2.5.0 / 2011-10-24
  1225  ==================
  1226  
  1227    * Added ./routes dir for generated app by default
  1228    * Added npm install reminder to express(1) app gen
  1229    * Added 0.5.x support
  1230    * Removed `make test-cov` since it wont work with node 0.5.x
  1231    * Fixed express(1) public dir for windows. Closes #866
  1232  
  1233  2.4.7 / 2011-10-05
  1234  ==================
  1235  
  1236    * Added mkdirp to express(1). Closes #795
  1237    * Added simple _json-config_ example
  1238    * Added  shorthand for the parsed request's pathname via `req.path`
  1239    * Changed connect dep to 1.7.x to fix npm issue...
  1240    * Fixed `res.redirect()` __HEAD__ support. [reported by xerox]
  1241    * Fixed `req.flash()`, only escape args
  1242    * Fixed absolute path checking on windows. Closes #829 [reported by andrewpmckenzie]
  1243  
  1244  2.4.6 / 2011-08-22
  1245  ==================
  1246  
  1247    * Fixed multiple param callback regression. Closes #824 [reported by TroyGoode]
  1248  
  1249  2.4.5 / 2011-08-19
  1250  ==================
  1251  
  1252    * Added support for routes to handle errors. Closes #809
  1253    * Added `app.routes.all()`. Closes #803
  1254    * Added "basepath" setting to work in conjunction with reverse proxies etc.
  1255    * Refactored `Route` to use a single array of callbacks
  1256    * Added support for multiple callbacks for `app.param()`. Closes #801
  1257  Closes #805
  1258    * Changed: removed .call(self) for route callbacks
  1259    * Dependency: `qs >= 0.3.1`
  1260    * Fixed `res.redirect()` on windows due to `join()` usage. Closes #808
  1261  
  1262  2.4.4 / 2011-08-05
  1263  ==================
  1264  
  1265    * Fixed `res.header()` intention of a set, even when `undefined`
  1266    * Fixed `*`, value no longer required
  1267    * Fixed `res.send(204)` support. Closes #771
  1268  
  1269  2.4.3 / 2011-07-14
  1270  ==================
  1271  
  1272    * Added docs for `status` option special-case. Closes #739
  1273    * Fixed `options.filename`, exposing the view path to template engines
  1274  
  1275  2.4.2. / 2011-07-06
  1276  ==================
  1277  
  1278    * Revert "removed jsonp stripping" for XSS
  1279  
  1280  2.4.1 / 2011-07-06
  1281  ==================
  1282  
  1283    * Added `res.json()` JSONP support. Closes #737
  1284    * Added _extending-templates_ example. Closes #730
  1285    * Added "strict routing" setting for trailing slashes
  1286    * Added support for multiple envs in `app.configure()` calls. Closes #735
  1287    * Changed: `res.send()` using `res.json()`
  1288    * Changed: when cookie `path === null` don't default it
  1289    * Changed; default cookie path to "home" setting. Closes #731
  1290    * Removed _pids/logs_ creation from express(1)
  1291  
  1292  2.4.0 / 2011-06-28
  1293  ==================
  1294  
  1295    * Added chainable `res.status(code)`
  1296    * Added `res.json()`, an explicit version of `res.send(obj)`
  1297    * Added simple web-service example
  1298  
  1299  2.3.12 / 2011-06-22
  1300  ==================
  1301  
  1302    * \#express is now on freenode! come join!
  1303    * Added `req.get(field, param)`
  1304    * Added links to Japanese documentation, thanks @hideyukisaito!
  1305    * Added; the `express(1)` generated app outputs the env
  1306    * Added `content-negotiation` example
  1307    * Dependency: connect >= 1.5.1 < 2.0.0
  1308    * Fixed view layout bug. Closes #720
  1309    * Fixed; ignore body on 304. Closes #701
  1310  
  1311  2.3.11 / 2011-06-04
  1312  ==================
  1313  
  1314    * Added `npm test`
  1315    * Removed generation of dummy test file from `express(1)`
  1316    * Fixed; `express(1)` adds express as a dep
  1317    * Fixed; prune on `prepublish`
  1318  
  1319  2.3.10 / 2011-05-27
  1320  ==================
  1321  
  1322    * Added `req.route`, exposing the current route
  1323    * Added _package.json_ generation support to `express(1)`
  1324    * Fixed call to `app.param()` function for optional params. Closes #682
  1325  
  1326  2.3.9 / 2011-05-25
  1327  ==================
  1328  
  1329    * Fixed bug-ish with `../' in `res.partial()` calls
  1330  
  1331  2.3.8 / 2011-05-24
  1332  ==================
  1333  
  1334    * Fixed `app.options()`
  1335  
  1336  2.3.7 / 2011-05-23
  1337  ==================
  1338  
  1339    * Added route `Collection`, ex: `app.get('/user/:id').remove();`
  1340    * Added support for `app.param(fn)` to define param logic
  1341    * Removed `app.param()` support for callback with return value
  1342    * Removed module.parent check from express(1) generated app. Closes #670
  1343    * Refactored router. Closes #639
  1344  
  1345  2.3.6 / 2011-05-20
  1346  ==================
  1347  
  1348    * Changed; using devDependencies instead of git submodules
  1349    * Fixed redis session example
  1350    * Fixed markdown example
  1351    * Fixed view caching, should not be enabled in development
  1352  
  1353  2.3.5 / 2011-05-20
  1354  ==================
  1355  
  1356    * Added export `.view` as alias for `.View`
  1357  
  1358  2.3.4 / 2011-05-08
  1359  ==================
  1360  
  1361    * Added `./examples/say`
  1362    * Fixed `res.sendfile()` bug preventing the transfer of files with spaces
  1363  
  1364  2.3.3 / 2011-05-03
  1365  ==================
  1366  
  1367    * Added "case sensitive routes" option.
  1368    * Changed; split methods supported per rfc [slaskis]
  1369    * Fixed route-specific middleware when using the same callback function several times
  1370  
  1371  2.3.2 / 2011-04-27
  1372  ==================
  1373  
  1374    * Fixed view hints
  1375  
  1376  2.3.1 / 2011-04-26
  1377  ==================
  1378  
  1379    * Added `app.match()` as `app.match.all()`
  1380    * Added `app.lookup()` as `app.lookup.all()`
  1381    * Added `app.remove()` for `app.remove.all()`
  1382    * Added `app.remove.VERB()`
  1383    * Fixed template caching collision issue. Closes #644
  1384    * Moved router over from connect and started refactor
  1385  
  1386  2.3.0 / 2011-04-25
  1387  ==================
  1388  
  1389    * Added options support to `res.clearCookie()`
  1390    * Added `res.helpers()` as alias of `res.locals()`
  1391    * Added; json defaults to UTF-8 with `res.send()`. Closes #632. [Daniel   * Dependency `connect >= 1.4.0`
  1392    * Changed; auto set Content-Type in res.attachement [Aaron Heckmann]
  1393    * Renamed "cache views" to "view cache". Closes #628
  1394    * Fixed caching of views when using several apps. Closes #637
  1395    * Fixed gotcha invoking `app.param()` callbacks once per route middleware.
  1396  Closes #638
  1397    * Fixed partial lookup precedence. Closes #631
  1398  Shaw]
  1399  
  1400  2.2.2 / 2011-04-12
  1401  ==================
  1402  
  1403    * Added second callback support for `res.download()` connection errors
  1404    * Fixed `filename` option passing to template engine
  1405  
  1406  2.2.1 / 2011-04-04
  1407  ==================
  1408  
  1409    * Added `layout(path)` helper to change the layout within a view. Closes #610
  1410    * Fixed `partial()` collection object support.
  1411      Previously only anything with `.length` would work.
  1412      When `.length` is present one must still be aware of holes,
  1413      however now `{ collection: {foo: 'bar'}}` is valid, exposes
  1414      `keyInCollection` and `keysInCollection`.
  1415  
  1416    * Performance improved with better view caching
  1417    * Removed `request` and `response` locals
  1418    * Changed; errorHandler page title is now `Express` instead of `Connect`
  1419  
  1420  2.2.0 / 2011-03-30
  1421  ==================
  1422  
  1423    * Added `app.lookup.VERB()`, ex `app.lookup.put('/user/:id')`. Closes #606
  1424    * Added `app.match.VERB()`, ex `app.match.put('/user/12')`. Closes #606
  1425    * Added `app.VERB(path)` as alias of `app.lookup.VERB()`.
  1426    * Dependency `connect >= 1.2.0`
  1427  
  1428  2.1.1 / 2011-03-29
  1429  ==================
  1430  
  1431    * Added; expose `err.view` object when failing to locate a view
  1432    * Fixed `res.partial()` call `next(err)` when no callback is given [reported by aheckmann]
  1433    * Fixed; `res.send(undefined)` responds with 204 [aheckmann]
  1434  
  1435  2.1.0 / 2011-03-24
  1436  ==================
  1437  
  1438    * Added `<root>/_?<name>` partial lookup support. Closes #447
  1439    * Added `request`, `response`, and `app` local variables
  1440    * Added `settings` local variable, containing the app's settings
  1441    * Added `req.flash()` exception if `req.session` is not available
  1442    * Added `res.send(bool)` support (json response)
  1443    * Fixed stylus example for latest version
  1444    * Fixed; wrap try/catch around `res.render()`
  1445  
  1446  2.0.0 / 2011-03-17
  1447  ==================
  1448  
  1449    * Fixed up index view path alternative.
  1450    * Changed; `res.locals()` without object returns the locals
  1451  
  1452  2.0.0rc3 / 2011-03-17
  1453  ==================
  1454  
  1455    * Added `res.locals(obj)` to compliment `res.local(key, val)`
  1456    * Added `res.partial()` callback support
  1457    * Fixed recursive error reporting issue in `res.render()`
  1458  
  1459  2.0.0rc2 / 2011-03-17
  1460  ==================
  1461  
  1462    * Changed; `partial()` "locals" are now optional
  1463    * Fixed `SlowBuffer` support. Closes #584 [reported by tyrda01]
  1464    * Fixed .filename view engine option [reported by drudge]
  1465    * Fixed blog example
  1466    * Fixed `{req,res}.app` reference when mounting [Ben Weaver]
  1467  
  1468  2.0.0rc / 2011-03-14
  1469  ==================
  1470  
  1471    * Fixed; expose `HTTPSServer` constructor
  1472    * Fixed express(1) default test charset. Closes #579 [reported by secoif]
  1473    * Fixed; default charset to utf-8 instead of utf8 for lame IE [reported by NickP]
  1474  
  1475  2.0.0beta3 / 2011-03-09
  1476  ==================
  1477  
  1478    * Added support for `res.contentType()` literal
  1479      The original `res.contentType('.json')`,
  1480      `res.contentType('application/json')`, and `res.contentType('json')`
  1481      will work now.
  1482    * Added `res.render()` status option support back
  1483    * Added charset option for `res.render()`
  1484    * Added `.charset` support (via connect 1.0.4)
  1485    * Added view resolution hints when in development and a lookup fails
  1486    * Added layout lookup support relative to the page view.
  1487      For example while rendering `./views/user/index.jade` if you create
  1488      `./views/user/layout.jade` it will be used in favour of the root layout.
  1489    * Fixed `res.redirect()`. RFC states absolute url [reported by unlink]
  1490    * Fixed; default `res.send()` string charset to utf8
  1491    * Removed `Partial` constructor (not currently used)
  1492  
  1493  2.0.0beta2 / 2011-03-07
  1494  ==================
  1495  
  1496    * Added res.render() `.locals` support back to aid in migration process
  1497    * Fixed flash example
  1498  
  1499  2.0.0beta / 2011-03-03
  1500  ==================
  1501  
  1502    * Added HTTPS support
  1503    * Added `res.cookie()` maxAge support
  1504    * Added `req.header()` _Referrer_ / _Referer_ special-case, either works
  1505    * Added mount support for `res.redirect()`, now respects the mount-point
  1506    * Added `union()` util, taking place of `merge(clone())` combo
  1507    * Added stylus support to express(1) generated app
  1508    * Added secret to session middleware used in examples and generated app
  1509    * Added `res.local(name, val)` for progressive view locals
  1510    * Added default param support to `req.param(name, default)`
  1511    * Added `app.disabled()` and `app.enabled()`
  1512    * Added `app.register()` support for omitting leading ".", either works
  1513    * Added `res.partial()`, using the same interface as `partial()` within a view. Closes #539
  1514    * Added `app.param()` to map route params to async/sync logic
  1515    * Added; aliased `app.helpers()` as `app.locals()`. Closes #481
  1516    * Added extname with no leading "." support to `res.contentType()`
  1517    * Added `cache views` setting, defaulting to enabled in "production" env
  1518    * Added index file partial resolution, eg: partial('user') may try _views/user/index.jade_.
  1519    * Added `req.accepts()` support for extensions
  1520    * Changed; `res.download()` and `res.sendfile()` now utilize Connect's
  1521      static file server `connect.static.send()`.
  1522    * Changed; replaced `connect.utils.mime()` with npm _mime_ module
  1523    * Changed; allow `req.query` to be pre-defined (via middleware or other parent
  1524    * Changed view partial resolution, now relative to parent view
  1525    * Changed view engine signature. no longer `engine.render(str, options, callback)`, now `engine.compile(str, options) -> Function`, the returned function accepts `fn(locals)`.
  1526    * Fixed `req.param()` bug returning Array.prototype methods. Closes #552
  1527    * Fixed; using `Stream#pipe()` instead of `sys.pump()` in `res.sendfile()`
  1528    * Fixed; using _qs_ module instead of _querystring_
  1529    * Fixed; strip unsafe chars from jsonp callbacks
  1530    * Removed "stream threshold" setting
  1531  
  1532  1.0.8 / 2011-03-01
  1533  ==================
  1534  
  1535    * Allow `req.query` to be pre-defined (via middleware or other parent app)
  1536    * "connect": ">= 0.5.0 < 1.0.0". Closes #547
  1537    * Removed the long deprecated __EXPRESS_ENV__ support
  1538  
  1539  1.0.7 / 2011-02-07
  1540  ==================
  1541  
  1542    * Fixed `render()` setting inheritance.
  1543      Mounted apps would not inherit "view engine"
  1544  
  1545  1.0.6 / 2011-02-07
  1546  ==================
  1547  
  1548    * Fixed `view engine` setting bug when period is in dirname
  1549  
  1550  1.0.5 / 2011-02-05
  1551  ==================
  1552  
  1553    * Added secret to generated app `session()` call
  1554  
  1555  1.0.4 / 2011-02-05
  1556  ==================
  1557  
  1558    * Added `qs` dependency to _package.json_
  1559    * Fixed namespaced `require()`s for latest connect support
  1560  
  1561  1.0.3 / 2011-01-13
  1562  ==================
  1563  
  1564    * Remove unsafe characters from JSONP callback names [Ryan Grove]
  1565  
  1566  1.0.2 / 2011-01-10
  1567  ==================
  1568  
  1569    * Removed nested require, using `connect.router`
  1570  
  1571  1.0.1 / 2010-12-29
  1572  ==================
  1573  
  1574    * Fixed for middleware stacked via `createServer()`
  1575      previously the `foo` middleware passed to `createServer(foo)`
  1576      would not have access to Express methods such as `res.send()`
  1577      or props like `req.query` etc.
  1578  
  1579  1.0.0 / 2010-11-16
  1580  ==================
  1581  
  1582    * Added; deduce partial object names from the last segment.
  1583      For example by default `partial('forum/post', postObject)` will
  1584      give you the _post_ object, providing a meaningful default.
  1585    * Added http status code string representation to `res.redirect()` body
  1586    * Added; `res.redirect()` supporting _text/plain_ and _text/html_ via __Accept__.
  1587    * Added `req.is()` to aid in content negotiation
  1588    * Added partial local inheritance [suggested by masylum]. Closes #102
  1589      providing access to parent template locals.
  1590    * Added _-s, --session[s]_ flag to express(1) to add session related middleware
  1591    * Added _--template_ flag to express(1) to specify the
  1592      template engine to use.
  1593    * Added _--css_ flag to express(1) to specify the
  1594      stylesheet engine to use (or just plain css by default).
  1595    * Added `app.all()` support [thanks aheckmann]
  1596    * Added partial direct object support.
  1597      You may now `partial('user', user)` providing the "user" local,
  1598      vs previously `partial('user', { object: user })`.
  1599    * Added _route-separation_ example since many people question ways
  1600      to do this with CommonJS modules. Also view the _blog_ example for
  1601      an alternative.
  1602    * Performance; caching view path derived partial object names
  1603    * Fixed partial local inheritance precedence. [reported by Nick Poulden] Closes #454
  1604    * Fixed jsonp support; _text/javascript_ as per mailinglist discussion
  1605  
  1606  1.0.0rc4 / 2010-10-14
  1607  ==================
  1608  
  1609    * Added _NODE_ENV_ support, _EXPRESS_ENV_ is deprecated and will be removed in 1.0.0
  1610    * Added route-middleware support (very helpful, see the [docs](http://expressjs.com/guide.html#Route-Middleware))
  1611    * Added _jsonp callback_ setting to enable/disable jsonp autowrapping [Dav Glass]
  1612    * Added callback query check on response.send to autowrap JSON objects for simple webservice implementations [Dav Glass]
  1613    * Added `partial()` support for array-like collections. Closes #434
  1614    * Added support for swappable querystring parsers
  1615    * Added session usage docs. Closes #443
  1616    * Added dynamic helper caching. Closes #439 [suggested by maritz]
  1617    * Added authentication example
  1618    * Added basic Range support to `res.sendfile()` (and `res.download()` etc)
  1619    * Changed; `express(1)` generated app using 2 spaces instead of 4
  1620    * Default env to "development" again [aheckmann]
  1621    * Removed _context_ option is no more, use "scope"
  1622    * Fixed; exposing _./support_ libs to examples so they can run without installs
  1623    * Fixed mvc example
  1624  
  1625  1.0.0rc3 / 2010-09-20
  1626  ==================
  1627  
  1628    * Added confirmation for `express(1)` app generation. Closes #391
  1629    * Added extending of flash formatters via `app.flashFormatters`
  1630    * Added flash formatter support. Closes #411
  1631    * Added streaming support to `res.sendfile()` using `sys.pump()` when >= "stream threshold"
  1632    * Added _stream threshold_ setting for `res.sendfile()`
  1633    * Added `res.send()` __HEAD__ support
  1634    * Added `res.clearCookie()`
  1635    * Added `res.cookie()`
  1636    * Added `res.render()` headers option
  1637    * Added `res.redirect()` response bodies
  1638    * Added `res.render()` status option support. Closes #425 [thanks aheckmann]
  1639    * Fixed `res.sendfile()` responding with 403 on malicious path
  1640    * Fixed `res.download()` bug; when an error occurs remove _Content-Disposition_
  1641    * Fixed; mounted apps settings now inherit from parent app [aheckmann]
  1642    * Fixed; stripping Content-Length / Content-Type when 204
  1643    * Fixed `res.send()` 204. Closes #419
  1644    * Fixed multiple _Set-Cookie_ headers via `res.header()`. Closes #402
  1645    * Fixed bug messing with error handlers when `listenFD()` is called instead of `listen()`. [thanks guillermo]
  1646  
  1647  
  1648  1.0.0rc2 / 2010-08-17
  1649  ==================
  1650  
  1651    * Added `app.register()` for template engine mapping. Closes #390
  1652    * Added `res.render()` callback support as second argument (no options)
  1653    * Added callback support to `res.download()`
  1654    * Added callback support for `res.sendfile()`
  1655    * Added support for middleware access via `express.middlewareName()` vs `connect.middlewareName()`
  1656    * Added "partials" setting to docs
  1657    * Added default expresso tests to `express(1)` generated app. Closes #384
  1658    * Fixed `res.sendfile()` error handling, defer via `next()`
  1659    * Fixed `res.render()` callback when a layout is used [thanks guillermo]
  1660    * Fixed; `make install` creating ~/.node_libraries when not present
  1661    * Fixed issue preventing error handlers from being defined anywhere. Closes #387
  1662  
  1663  1.0.0rc / 2010-07-28
  1664  ==================
  1665  
  1666    * Added mounted hook. Closes #369
  1667    * Added connect dependency to _package.json_
  1668  
  1669    * Removed "reload views" setting and support code
  1670      development env never caches, production always caches.
  1671  
  1672    * Removed _param_ in route callbacks, signature is now
  1673      simply (req, res, next), previously (req, res, params, next).
  1674      Use _req.params_ for path captures, _req.query_ for GET params.
  1675  
  1676    * Fixed "home" setting
  1677    * Fixed middleware/router precedence issue. Closes #366
  1678    * Fixed; _configure()_ callbacks called immediately. Closes #368
  1679  
  1680  1.0.0beta2 / 2010-07-23
  1681  ==================
  1682  
  1683    * Added more examples
  1684    * Added; exporting `Server` constructor
  1685    * Added `Server#helpers()` for view locals
  1686    * Added `Server#dynamicHelpers()` for dynamic view locals. Closes #349
  1687    * Added support for absolute view paths
  1688    * Added; _home_ setting defaults to `Server#route` for mounted apps. Closes #363
  1689    * Added Guillermo Rauch to the contributor list
  1690    * Added support for "as" for non-collection partials. Closes #341
  1691    * Fixed _install.sh_, ensuring _~/.node_libraries_ exists. Closes #362 [thanks jf]
  1692    * Fixed `res.render()` exceptions, now passed to `next()` when no callback is given [thanks guillermo]
  1693    * Fixed instanceof `Array` checks, now `Array.isArray()`
  1694    * Fixed express(1) expansion of public dirs. Closes #348
  1695    * Fixed middleware precedence. Closes #345
  1696    * Fixed view watcher, now async [thanks aheckmann]
  1697  
  1698  1.0.0beta / 2010-07-15
  1699  ==================
  1700  
  1701    * Re-write
  1702      - much faster
  1703      - much lighter
  1704      - Check [ExpressJS.com](http://expressjs.com) for migration guide and updated docs
  1705  
  1706  0.14.0 / 2010-06-15
  1707  ==================
  1708  
  1709    * Utilize relative requires
  1710    * Added Static bufferSize option [aheckmann]
  1711    * Fixed caching of view and partial subdirectories [aheckmann]
  1712    * Fixed mime.type() comments now that ".ext" is not supported
  1713    * Updated haml submodule
  1714    * Updated class submodule
  1715    * Removed bin/express
  1716  
  1717  0.13.0 / 2010-06-01
  1718  ==================
  1719  
  1720    * Added node v0.1.97 compatibility
  1721    * Added support for deleting cookies via Request#cookie('key', null)
  1722    * Updated haml submodule
  1723    * Fixed not-found page, now using using charset utf-8
  1724    * Fixed show-exceptions page, now using using charset utf-8
  1725    * Fixed view support due to fs.readFile Buffers
  1726    * Changed; mime.type() no longer accepts ".type" due to node extname() changes
  1727  
  1728  0.12.0 / 2010-05-22
  1729  ==================
  1730  
  1731    * Added node v0.1.96 compatibility
  1732    * Added view `helpers` export which act as additional local variables
  1733    * Updated haml submodule
  1734    * Changed ETag; removed inode, modified time only
  1735    * Fixed LF to CRLF for setting multiple cookies
  1736    * Fixed cookie complation; values are now urlencoded
  1737    * Fixed cookies parsing; accepts quoted values and url escaped cookies
  1738  
  1739  0.11.0 / 2010-05-06
  1740  ==================
  1741  
  1742    * Added support for layouts using different engines
  1743      - this.render('page.html.haml', { layout: 'super-cool-layout.html.ejs' })
  1744      - this.render('page.html.haml', { layout: 'foo' }) // assumes 'foo.html.haml'
  1745      - this.render('page.html.haml', { layout: false }) // no layout
  1746    * Updated ext submodule
  1747    * Updated haml submodule
  1748    * Fixed EJS partial support by passing along the context. Issue #307
  1749  
  1750  0.10.1 / 2010-05-03
  1751  ==================
  1752  
  1753    * Fixed binary uploads.
  1754  
  1755  0.10.0 / 2010-04-30
  1756  ==================
  1757  
  1758    * Added charset support via Request#charset (automatically assigned to 'UTF-8' when respond()'s
  1759      encoding is set to 'utf8' or 'utf-8'.
  1760    * Added "encoding" option to Request#render(). Closes #299
  1761    * Added "dump exceptions" setting, which is enabled by default.
  1762    * Added simple ejs template engine support
  1763    * Added error reponse support for text/plain, application/json. Closes #297
  1764    * Added callback function param to Request#error()
  1765    * Added Request#sendHead()
  1766    * Added Request#stream()
  1767    * Added support for Request#respond(304, null) for empty response bodies
  1768    * Added ETag support to Request#sendfile()
  1769    * Added options to Request#sendfile(), passed to fs.createReadStream()
  1770    * Added filename arg to Request#download()
  1771    * Performance enhanced due to pre-reversing plugins so that plugins.reverse() is not called on each request
  1772    * Performance enhanced by preventing several calls to toLowerCase() in Router#match()
  1773    * Changed; Request#sendfile() now streams
  1774    * Changed; Renamed Request#halt() to Request#respond(). Closes #289
  1775    * Changed; Using sys.inspect() instead of JSON.encode() for error output
  1776    * Changed; run() returns the http.Server instance. Closes #298
  1777    * Changed; Defaulting Server#host to null (INADDR_ANY)
  1778    * Changed; Logger "common" format scale of 0.4f
  1779    * Removed Logger "request" format
  1780    * Fixed; Catching ENOENT in view caching, preventing error when "views/partials" is not found
  1781    * Fixed several issues with http client
  1782    * Fixed Logger Content-Length output
  1783    * Fixed bug preventing Opera from retaining the generated session id. Closes #292
  1784  
  1785  0.9.0 / 2010-04-14
  1786  ==================
  1787  
  1788    * Added DSL level error() route support
  1789    * Added DSL level notFound() route support
  1790    * Added Request#error()
  1791    * Added Request#notFound()
  1792    * Added Request#render() callback function. Closes #258
  1793    * Added "max upload size" setting
  1794    * Added "magic" variables to collection partials (\_\_index\_\_, \_\_length\_\_, \_\_isFirst\_\_, \_\_isLast\_\_). Closes #254
  1795    * Added [haml.js](http://github.com/visionmedia/haml.js) submodule; removed haml-js
  1796    * Added callback function support to Request#halt() as 3rd/4th arg
  1797    * Added preprocessing of route param wildcards using param(). Closes #251
  1798    * Added view partial support (with collections etc)
  1799    * Fixed bug preventing falsey params (such as ?page=0). Closes #286
  1800    * Fixed setting of multiple cookies. Closes #199
  1801    * Changed; view naming convention is now NAME.TYPE.ENGINE (for example page.html.haml)
  1802    * Changed; session cookie is now httpOnly
  1803    * Changed; Request is no longer global
  1804    * Changed; Event is no longer global
  1805    * Changed; "sys" module is no longer global
  1806    * Changed; moved Request#download to Static plugin where it belongs
  1807    * Changed; Request instance created before body parsing. Closes #262
  1808    * Changed; Pre-caching views in memory when "cache view contents" is enabled. Closes #253
  1809    * Changed; Pre-caching view partials in memory when "cache view partials" is enabled
  1810    * Updated support to node --version 0.1.90
  1811    * Updated dependencies
  1812    * Removed set("session cookie") in favour of use(Session, { cookie: { ... }})
  1813    * Removed utils.mixin(); use Object#mergeDeep()
  1814  
  1815  0.8.0 / 2010-03-19
  1816  ==================
  1817  
  1818    * Added coffeescript example app. Closes #242
  1819    * Changed; cache api now async friendly. Closes #240
  1820    * Removed deprecated 'express/static' support. Use 'express/plugins/static'
  1821  
  1822  0.7.6 / 2010-03-19
  1823  ==================
  1824  
  1825    * Added Request#isXHR. Closes #229
  1826    * Added `make install` (for the executable)
  1827    * Added `express` executable for setting up simple app templates
  1828    * Added "GET /public/*" to Static plugin, defaulting to <root>/public
  1829    * Added Static plugin
  1830    * Fixed; Request#render() only calls cache.get() once
  1831    * Fixed; Namespacing View caches with "view:"
  1832    * Fixed; Namespacing Static caches with "static:"
  1833    * Fixed; Both example apps now use the Static plugin
  1834    * Fixed set("views"). Closes #239
  1835    * Fixed missing space for combined log format
  1836    * Deprecated Request#sendfile() and 'express/static'
  1837    * Removed Server#running
  1838  
  1839  0.7.5 / 2010-03-16
  1840  ==================
  1841  
  1842    * Added Request#flash() support without args, now returns all flashes
  1843    * Updated ext submodule
  1844  
  1845  0.7.4 / 2010-03-16
  1846  ==================
  1847  
  1848    * Fixed session reaper
  1849    * Changed; class.js replacing js-oo Class implementation (quite a bit faster, no browser cruft)
  1850  
  1851  0.7.3 / 2010-03-16
  1852  ==================
  1853  
  1854    * Added package.json
  1855    * Fixed requiring of haml / sass due to kiwi removal
  1856  
  1857  0.7.2 / 2010-03-16
  1858  ==================
  1859  
  1860    * Fixed GIT submodules (HAH!)
  1861  
  1862  0.7.1 / 2010-03-16
  1863  ==================
  1864  
  1865    * Changed; Express now using submodules again until a PM is adopted
  1866    * Changed; chat example using millisecond conversions from ext
  1867  
  1868  0.7.0 / 2010-03-15
  1869  ==================
  1870  
  1871    * Added Request#pass() support (finds the next matching route, or the given path)
  1872    * Added Logger plugin (default "common" format replaces CommonLogger)
  1873    * Removed Profiler plugin
  1874    * Removed CommonLogger plugin
  1875  
  1876  0.6.0 / 2010-03-11
  1877  ==================
  1878  
  1879    * Added seed.yml for kiwi package management support
  1880    * Added HTTP client query string support when method is GET. Closes #205
  1881  
  1882    * Added support for arbitrary view engines.
  1883      For example "foo.engine.html" will now require('engine'),
  1884      the exports from this module are cached after the first require().
  1885  
  1886    * Added async plugin support
  1887  
  1888    * Removed usage of RESTful route funcs as http client
  1889      get() etc, use http.get() and friends
  1890  
  1891    * Removed custom exceptions
  1892  
  1893  0.5.0 / 2010-03-10
  1894  ==================
  1895  
  1896    * Added ext dependency (library of js extensions)
  1897    * Removed extname() / basename() utils. Use path module
  1898    * Removed toArray() util. Use arguments.values
  1899    * Removed escapeRegexp() util. Use RegExp.escape()
  1900    * Removed process.mixin() dependency. Use utils.mixin()
  1901    * Removed Collection
  1902    * Removed ElementCollection
  1903    * Shameless self promotion of ebook "Advanced JavaScript" (http://dev-mag.com)  ;)
  1904  
  1905  0.4.0 / 2010-02-11
  1906  ==================
  1907  
  1908    * Added flash() example to sample upload app
  1909    * Added high level restful http client module (express/http)
  1910    * Changed; RESTful route functions double as HTTP clients. Closes #69
  1911    * Changed; throwing error when routes are added at runtime
  1912    * Changed; defaulting render() context to the current Request. Closes #197
  1913    * Updated haml submodule
  1914  
  1915  0.3.0 / 2010-02-11
  1916  ==================
  1917  
  1918    * Updated haml / sass submodules. Closes #200
  1919    * Added flash message support. Closes #64
  1920    * Added accepts() now allows multiple args. fixes #117
  1921    * Added support for plugins to halt. Closes #189
  1922    * Added alternate layout support. Closes #119
  1923    * Removed Route#run(). Closes #188
  1924    * Fixed broken specs due to use(Cookie) missing
  1925  
  1926  0.2.1 / 2010-02-05
  1927  ==================
  1928  
  1929    * Added "plot" format option for Profiler (for gnuplot processing)
  1930    * Added request number to Profiler plugin
  1931    * Fixed binary encoding for multi-part file uploads, was previously defaulting to UTF8
  1932    * Fixed issue with routes not firing when not files are present. Closes #184
  1933    * Fixed process.Promise -> events.Promise
  1934  
  1935  0.2.0 / 2010-02-03
  1936  ==================
  1937  
  1938    * Added parseParam() support for name[] etc. (allows for file inputs with "multiple" attr) Closes #180
  1939    * Added Both Cache and Session option "reapInterval" may be "reapEvery". Closes #174
  1940    * Added expiration support to cache api with reaper. Closes #133
  1941    * Added cache Store.Memory#reap()
  1942    * Added Cache; cache api now uses first class Cache instances
  1943    * Added abstract session Store. Closes #172
  1944    * Changed; cache Memory.Store#get() utilizing Collection
  1945    * Renamed MemoryStore -> Store.Memory
  1946    * Fixed use() of the same plugin several time will always use latest options. Closes #176
  1947  
  1948  0.1.0 / 2010-02-03
  1949  ==================
  1950  
  1951    * Changed; Hooks (before / after) pass request as arg as well as evaluated in their context
  1952    * Updated node support to 0.1.27 Closes #169
  1953    * Updated dirname(__filename) -> __dirname
  1954    * Updated libxmljs support to v0.2.0
  1955    * Added session support with memory store / reaping
  1956    * Added quick uid() helper
  1957    * Added multi-part upload support
  1958    * Added Sass.js support / submodule
  1959    * Added production env caching view contents and static files
  1960    * Added static file caching. Closes #136
  1961    * Added cache plugin with memory stores
  1962    * Added support to StaticFile so that it works with non-textual files.
  1963    * Removed dirname() helper
  1964    * Removed several globals (now their modules must be required)
  1965  
  1966  0.0.2 / 2010-01-10
  1967  ==================
  1968  
  1969    * Added view benchmarks; currently haml vs ejs
  1970    * Added Request#attachment() specs. Closes #116
  1971    * Added use of node's parseQuery() util. Closes #123
  1972    * Added `make init` for submodules
  1973    * Updated Haml
  1974    * Updated sample chat app to show messages on load
  1975    * Updated libxmljs parseString -> parseHtmlString
  1976    * Fixed `make init` to work with older versions of git
  1977    * Fixed specs can now run independant specs for those who cant build deps. Closes #127
  1978    * Fixed issues introduced by the node url module changes. Closes 126.
  1979    * Fixed two assertions failing due to Collection#keys() returning strings
  1980    * Fixed faulty Collection#toArray() spec due to keys() returning strings
  1981    * Fixed `make test` now builds libxmljs.node before testing
  1982  
  1983  0.0.1 / 2010-01-03
  1984  ==================
  1985  
  1986    * Initial release