rc@73: 4.4.5 / 2014-06-26 rc@73: ================== rc@73: rc@73: * deps: cookie-signature@1.0.4 rc@73: - fix for timing attacks rc@73: rc@73: 4.4.4 / 2014-06-20 rc@73: ================== rc@73: rc@73: * fix `res.attachment` Unicode filenames in Safari rc@73: * fix "trim prefix" debug message in `express:router` rc@73: * deps: accepts@~1.0.5 rc@73: * deps: buffer-crc32@0.2.3 rc@73: rc@73: 4.4.3 / 2014-06-11 rc@73: ================== rc@73: rc@73: * fix persistence of modified `req.params[name]` from `app.param()` rc@73: * deps: accepts@1.0.3 rc@73: - deps: negotiator@0.4.6 rc@73: * deps: debug@1.0.2 rc@73: * deps: send@0.4.3 rc@73: - Do not throw un-catchable error on file open race condition rc@73: - Use `escape-html` for HTML escaping rc@73: - deps: debug@1.0.2 rc@73: - deps: finished@1.2.2 rc@73: - deps: fresh@0.2.2 rc@73: * deps: serve-static@1.2.3 rc@73: - Do not throw un-catchable error on file open race condition rc@73: - deps: send@0.4.3 rc@73: rc@73: 4.4.2 / 2014-06-09 rc@73: ================== rc@73: rc@73: * fix catching errors from top-level handlers rc@73: * use `vary` module for `res.vary` rc@73: * deps: debug@1.0.1 rc@73: * deps: proxy-addr@1.0.1 rc@73: * deps: send@0.4.2 rc@73: - fix "event emitter leak" warnings rc@73: - deps: debug@1.0.1 rc@73: - deps: finished@1.2.1 rc@73: * deps: serve-static@1.2.2 rc@73: - fix "event emitter leak" warnings rc@73: - deps: send@0.4.2 rc@73: * deps: type-is@1.2.1 rc@73: rc@73: 4.4.1 / 2014-06-02 rc@73: ================== rc@73: rc@73: * deps: methods@1.0.1 rc@73: * deps: send@0.4.1 rc@73: - Send `max-age` in `Cache-Control` in correct format rc@73: * deps: serve-static@1.2.1 rc@73: - use `escape-html` for escaping rc@73: - deps: send@0.4.1 rc@73: rc@73: 4.4.0 / 2014-05-30 rc@73: ================== rc@73: rc@73: * custom etag control with `app.set('etag', val)` rc@73: - `app.set('etag', function(body, encoding){ return '"etag"' })` custom etag generation rc@73: - `app.set('etag', 'weak')` weak tag rc@73: - `app.set('etag', 'strong')` strong etag rc@73: - `app.set('etag', false)` turn off rc@73: - `app.set('etag', true)` standard etag rc@73: * mark `res.send` ETag as weak and reduce collisions rc@73: * update accepts to 1.0.2 rc@73: - Fix interpretation when header not in request rc@73: * update send to 0.4.0 rc@73: - Calculate ETag with md5 for reduced collisions rc@73: - Ignore stream errors after request ends rc@73: - deps: debug@0.8.1 rc@73: * update serve-static to 1.2.0 rc@73: - Calculate ETag with md5 for reduced collisions rc@73: - Ignore stream errors after request ends rc@73: - deps: send@0.4.0 rc@73: rc@73: 4.3.2 / 2014-05-28 rc@73: ================== rc@73: rc@73: * fix handling of errors from `router.param()` callbacks rc@73: rc@73: 4.3.1 / 2014-05-23 rc@73: ================== rc@73: rc@73: * revert "fix behavior of multiple `app.VERB` for the same path" rc@73: - this caused a regression in the order of route execution rc@73: rc@73: 4.3.0 / 2014-05-21 rc@73: ================== rc@73: rc@73: * add `req.baseUrl` to access the path stripped from `req.url` in routes rc@73: * fix behavior of multiple `app.VERB` for the same path rc@73: * fix issue routing requests among sub routers rc@73: * invoke `router.param()` only when necessary instead of every match rc@73: * proper proxy trust with `app.set('trust proxy', trust)` rc@73: - `app.set('trust proxy', 1)` trust first hop rc@73: - `app.set('trust proxy', 'loopback')` trust loopback addresses rc@73: - `app.set('trust proxy', '10.0.0.1')` trust single IP rc@73: - `app.set('trust proxy', '10.0.0.1/16')` trust subnet rc@73: - `app.set('trust proxy', '10.0.0.1, 10.0.0.2')` trust list rc@73: - `app.set('trust proxy', false)` turn off rc@73: - `app.set('trust proxy', true)` trust everything rc@73: * set proper `charset` in `Content-Type` for `res.send` rc@73: * update type-is to 1.2.0 rc@73: - support suffix matching rc@73: rc@73: 4.2.0 / 2014-05-11 rc@73: ================== rc@73: rc@73: * deprecate `app.del()` -- use `app.delete()` instead rc@73: * deprecate `res.json(obj, status)` -- use `res.json(status, obj)` instead rc@73: - the edge-case `res.json(status, num)` requires `res.status(status).json(num)` rc@73: * deprecate `res.jsonp(obj, status)` -- use `res.jsonp(status, obj)` instead rc@73: - the edge-case `res.jsonp(status, num)` requires `res.status(status).jsonp(num)` rc@73: * fix `req.next` when inside router instance rc@73: * include `ETag` header in `HEAD` requests rc@73: * keep previous `Content-Type` for `res.jsonp` rc@73: * support PURGE method rc@73: - add `app.purge` rc@73: - add `router.purge` rc@73: - include PURGE in `app.all` rc@73: * update debug to 0.8.0 rc@73: - add `enable()` method rc@73: - change from stderr to stdout rc@73: * update methods to 1.0.0 rc@73: - add PURGE rc@73: rc@73: 4.1.2 / 2014-05-08 rc@73: ================== rc@73: rc@73: * fix `req.host` for IPv6 literals rc@73: * fix `res.jsonp` error if callback param is object rc@73: rc@73: 4.1.1 / 2014-04-27 rc@73: ================== rc@73: rc@73: * fix package.json to reflect supported node version rc@73: rc@73: 4.1.0 / 2014-04-24 rc@73: ================== rc@73: rc@73: * pass options from `res.sendfile` to `send` rc@73: * preserve casing of headers in `res.header` and `res.set` rc@73: * support unicode file names in `res.attachment` and `res.download` rc@73: * update accepts to 1.0.1 rc@73: - deps: negotiator@0.4.0 rc@73: * update cookie to 0.1.2 rc@73: - Fix for maxAge == 0 rc@73: - made compat with expires field rc@73: * update send to 0.3.0 rc@73: - Accept API options in options object rc@73: - Coerce option types rc@73: - Control whether to generate etags rc@73: - Default directory access to 403 when index disabled rc@73: - Fix sending files with dots without root set rc@73: - Include file path in etag rc@73: - Make "Can't set headers after they are sent." catchable rc@73: - Send full entity-body for multi range requests rc@73: - Set etags to "weak" rc@73: - Support "If-Range" header rc@73: - Support multiple index paths rc@73: - deps: mime@1.2.11 rc@73: * update serve-static to 1.1.0 rc@73: - Accept options directly to `send` module rc@73: - Resolve relative paths at middleware setup rc@73: - Use parseurl to parse the URL from request rc@73: - deps: send@0.3.0 rc@73: * update type-is to 1.1.0 rc@73: - add non-array values support rc@73: - add `multipart` as a shorthand rc@73: rc@73: 4.0.0 / 2014-04-09 rc@73: ================== rc@73: rc@73: * remove: rc@73: - node 0.8 support rc@73: - connect and connect's patches except for charset handling rc@73: - express(1) - moved to [express-generator](https://github.com/expressjs/generator) rc@73: - `express.createServer()` - it has been deprecated for a long time. Use `express()` rc@73: - `app.configure` - use logic in your own app code rc@73: - `app.router` - is removed rc@73: - `req.auth` - use `basic-auth` instead rc@73: - `req.accepted*` - use `req.accepts*()` instead rc@73: - `res.location` - relative URL resolution is removed rc@73: - `res.charset` - include the charset in the content type when using `res.set()` rc@73: - all bundled middleware except `static` rc@73: * change: rc@73: - `app.route` -> `app.mountpath` when mounting an express app in another express app rc@73: - `json spaces` no longer enabled by default in development rc@73: - `req.accepts*` -> `req.accepts*s` - i.e. `req.acceptsEncoding` -> `req.acceptsEncodings` rc@73: - `req.params` is now an object instead of an array rc@73: - `res.locals` is no longer a function. It is a plain js object. Treat it as such. rc@73: - `res.headerSent` -> `res.headersSent` to match node.js ServerResponse object rc@73: * refactor: rc@73: - `req.accepts*` with [accepts](https://github.com/expressjs/accepts) rc@73: - `req.is` with [type-is](https://github.com/expressjs/type-is) rc@73: - [path-to-regexp](https://github.com/component/path-to-regexp) rc@73: * add: rc@73: - `app.router()` - returns the app Router instance rc@73: - `app.route()` - Proxy to the app's `Router#route()` method to create a new route rc@73: - Router & Route - public API rc@73: rc@73: 3.10.5 / 2014-06-11 rc@73: =================== rc@73: rc@73: * deps: connect@2.19.6 rc@73: - deps: body-parser@1.3.1 rc@73: - deps: compression@1.0.7 rc@73: - deps: debug@1.0.2 rc@73: - deps: serve-index@1.1.1 rc@73: - deps: serve-static@1.2.3 rc@73: * deps: debug@1.0.2 rc@73: * deps: send@0.4.3 rc@73: - Do not throw un-catchable error on file open race condition rc@73: - Use `escape-html` for HTML escaping rc@73: - deps: debug@1.0.2 rc@73: - deps: finished@1.2.2 rc@73: - deps: fresh@0.2.2 rc@73: rc@73: 3.10.4 / 2014-06-09 rc@73: =================== rc@73: rc@73: * deps: connect@2.19.5 rc@73: - fix "event emitter leak" warnings rc@73: - deps: csurf@1.2.1 rc@73: - deps: debug@1.0.1 rc@73: - deps: serve-static@1.2.2 rc@73: - deps: type-is@1.2.1 rc@73: * deps: debug@1.0.1 rc@73: * deps: send@0.4.2 rc@73: - fix "event emitter leak" warnings rc@73: - deps: finished@1.2.1 rc@73: - deps: debug@1.0.1 rc@73: rc@73: 3.10.3 / 2014-06-05 rc@73: =================== rc@73: rc@73: * use `vary` module for `res.vary` rc@73: * deps: connect@2.19.4 rc@73: - deps: errorhandler@1.0.2 rc@73: - deps: method-override@2.0.2 rc@73: - deps: serve-favicon@2.0.1 rc@73: * deps: debug@1.0.0 rc@73: rc@73: 3.10.2 / 2014-06-03 rc@73: =================== rc@73: rc@73: * deps: connect@2.19.3 rc@73: - deps: compression@1.0.6 rc@73: rc@73: 3.10.1 / 2014-06-03 rc@73: =================== rc@73: rc@73: * deps: connect@2.19.2 rc@73: - deps: compression@1.0.4 rc@73: * deps: proxy-addr@1.0.1 rc@73: rc@73: 3.10.0 / 2014-06-02 rc@73: =================== rc@73: rc@73: * deps: connect@2.19.1 rc@73: - deprecate `methodOverride()` -- use `method-override` module directly rc@73: - deps: body-parser@1.3.0 rc@73: - deps: method-override@2.0.1 rc@73: - deps: multiparty@3.2.8 rc@73: - deps: response-time@2.0.0 rc@73: - deps: serve-static@1.2.1 rc@73: * deps: methods@1.0.1 rc@73: * deps: send@0.4.1 rc@73: - Send `max-age` in `Cache-Control` in correct format rc@73: rc@73: 3.9.0 / 2014-05-30 rc@73: ================== rc@73: rc@73: * custom etag control with `app.set('etag', val)` rc@73: - `app.set('etag', function(body, encoding){ return '"etag"' })` custom etag generation rc@73: - `app.set('etag', 'weak')` weak tag rc@73: - `app.set('etag', 'strong')` strong etag rc@73: - `app.set('etag', false)` turn off rc@73: - `app.set('etag', true)` standard etag rc@73: * Include ETag in HEAD requests rc@73: * mark `res.send` ETag as weak and reduce collisions rc@73: * update connect to 2.18.0 rc@73: - deps: compression@1.0.3 rc@73: - deps: serve-index@1.1.0 rc@73: - deps: serve-static@1.2.0 rc@73: * update send to 0.4.0 rc@73: - Calculate ETag with md5 for reduced collisions rc@73: - Ignore stream errors after request ends rc@73: - deps: debug@0.8.1 rc@73: rc@73: 3.8.1 / 2014-05-27 rc@73: ================== rc@73: rc@73: * update connect to 2.17.3 rc@73: - deps: body-parser@1.2.2 rc@73: - deps: express-session@1.2.1 rc@73: - deps: method-override@1.0.2 rc@73: rc@73: 3.8.0 / 2014-05-21 rc@73: ================== rc@73: rc@73: * keep previous `Content-Type` for `res.jsonp` rc@73: * set proper `charset` in `Content-Type` for `res.send` rc@73: * update connect to 2.17.1 rc@73: - fix `res.charset` appending charset when `content-type` has one rc@73: - deps: express-session@1.2.0 rc@73: - deps: morgan@1.1.1 rc@73: - deps: serve-index@1.0.3 rc@73: rc@73: 3.7.0 / 2014-05-18 rc@73: ================== rc@73: rc@73: * proper proxy trust with `app.set('trust proxy', trust)` rc@73: - `app.set('trust proxy', 1)` trust first hop rc@73: - `app.set('trust proxy', 'loopback')` trust loopback addresses rc@73: - `app.set('trust proxy', '10.0.0.1')` trust single IP rc@73: - `app.set('trust proxy', '10.0.0.1/16')` trust subnet rc@73: - `app.set('trust proxy', '10.0.0.1, 10.0.0.2')` trust list rc@73: - `app.set('trust proxy', false)` turn off rc@73: - `app.set('trust proxy', true)` trust everything rc@73: * update connect to 2.16.2 rc@73: - deprecate `res.headerSent` -- use `res.headersSent` rc@73: - deprecate `res.on("header")` -- use on-headers module instead rc@73: - fix edge-case in `res.appendHeader` that would append in wrong order rc@73: - json: use body-parser rc@73: - urlencoded: use body-parser rc@73: - dep: bytes@1.0.0 rc@73: - dep: cookie-parser@1.1.0 rc@73: - dep: csurf@1.2.0 rc@73: - dep: express-session@1.1.0 rc@73: - dep: method-override@1.0.1 rc@73: rc@73: 3.6.0 / 2014-05-09 rc@73: ================== rc@73: rc@73: * deprecate `app.del()` -- use `app.delete()` instead rc@73: * deprecate `res.json(obj, status)` -- use `res.json(status, obj)` instead rc@73: - the edge-case `res.json(status, num)` requires `res.status(status).json(num)` rc@73: * deprecate `res.jsonp(obj, status)` -- use `res.jsonp(status, obj)` instead rc@73: - the edge-case `res.jsonp(status, num)` requires `res.status(status).jsonp(num)` rc@73: * support PURGE method rc@73: - add `app.purge` rc@73: - add `router.purge` rc@73: - include PURGE in `app.all` rc@73: * update connect to 2.15.0 rc@73: * Add `res.appendHeader` rc@73: * Call error stack even when response has been sent rc@73: * Patch `res.headerSent` to return Boolean rc@73: * Patch `res.headersSent` for node.js 0.8 rc@73: * Prevent default 404 handler after response sent rc@73: * dep: compression@1.0.2 rc@73: * dep: connect-timeout@1.1.0 rc@73: * dep: debug@^0.8.0 rc@73: * dep: errorhandler@1.0.1 rc@73: * dep: express-session@1.0.4 rc@73: * dep: morgan@1.0.1 rc@73: * dep: serve-favicon@2.0.0 rc@73: * dep: serve-index@1.0.2 rc@73: * update debug to 0.8.0 rc@73: * add `enable()` method rc@73: * change from stderr to stdout rc@73: * update methods to 1.0.0 rc@73: - add PURGE rc@73: * update mkdirp to 0.5.0 rc@73: rc@73: 3.5.3 / 2014-05-08 rc@73: ================== rc@73: rc@73: * fix `req.host` for IPv6 literals rc@73: * fix `res.jsonp` error if callback param is object rc@73: rc@73: 3.5.2 / 2014-04-24 rc@73: ================== rc@73: rc@73: * update connect to 2.14.5 rc@73: * update cookie to 0.1.2 rc@73: * update mkdirp to 0.4.0 rc@73: * update send to 0.3.0 rc@73: rc@73: 3.5.1 / 2014-03-25 rc@73: ================== rc@73: rc@73: * pin less-middleware in generated app rc@73: rc@73: 3.5.0 / 2014-03-06 rc@73: ================== rc@73: rc@73: * bump deps rc@73: rc@73: 3.4.8 / 2014-01-13 rc@73: ================== rc@73: rc@73: * prevent incorrect automatic OPTIONS responses #1868 @dpatti rc@73: * update binary and examples for jade 1.0 #1876 @yossi, #1877 @reqshark, #1892 @matheusazzi rc@73: * throw 400 in case of malformed paths @rlidwka rc@73: rc@73: 3.4.7 / 2013-12-10 rc@73: ================== rc@73: rc@73: * update connect rc@73: rc@73: 3.4.6 / 2013-12-01 rc@73: ================== rc@73: rc@73: * update connect (raw-body) rc@73: rc@73: 3.4.5 / 2013-11-27 rc@73: ================== rc@73: rc@73: * update connect rc@73: * res.location: remove leading ./ #1802 @kapouer rc@73: * res.redirect: fix `res.redirect('toString') #1829 @michaelficarra rc@73: * res.send: always send ETag when content-length > 0 rc@73: * router: add Router.all() method rc@73: rc@73: 3.4.4 / 2013-10-29 rc@73: ================== rc@73: rc@73: * update connect rc@73: * update supertest rc@73: * update methods rc@73: * express(1): replace bodyParser() with urlencoded() and json() #1795 @chirag04 rc@73: rc@73: 3.4.3 / 2013-10-23 rc@73: ================== rc@73: rc@73: * update connect rc@73: rc@73: 3.4.2 / 2013-10-18 rc@73: ================== rc@73: rc@73: * update connect rc@73: * downgrade commander rc@73: rc@73: 3.4.1 / 2013-10-15 rc@73: ================== rc@73: rc@73: * update connect rc@73: * update commander rc@73: * jsonp: check if callback is a function rc@73: * router: wrap encodeURIComponent in a try/catch #1735 (@lxe) rc@73: * res.format: now includes chraset @1747 (@sorribas) rc@73: * res.links: allow multiple calls @1746 (@sorribas) rc@73: rc@73: 3.4.0 / 2013-09-07 rc@73: ================== rc@73: rc@73: * add res.vary(). Closes #1682 rc@73: * update connect rc@73: rc@73: 3.3.8 / 2013-09-02 rc@73: ================== rc@73: rc@73: * update connect rc@73: rc@73: 3.3.7 / 2013-08-28 rc@73: ================== rc@73: rc@73: * update connect rc@73: rc@73: 3.3.6 / 2013-08-27 rc@73: ================== rc@73: rc@73: * Revert "remove charset from json responses. Closes #1631" (causes issues in some clients) rc@73: * add: req.accepts take an argument list rc@73: rc@73: 3.3.4 / 2013-07-08 rc@73: ================== rc@73: rc@73: * update send and connect rc@73: rc@73: 3.3.3 / 2013-07-04 rc@73: ================== rc@73: rc@73: * update connect rc@73: rc@73: 3.3.2 / 2013-07-03 rc@73: ================== rc@73: rc@73: * update connect rc@73: * update send rc@73: * remove .version export rc@73: rc@73: 3.3.1 / 2013-06-27 rc@73: ================== rc@73: rc@73: * update connect rc@73: rc@73: 3.3.0 / 2013-06-26 rc@73: ================== rc@73: rc@73: * update connect rc@73: * add support for multiple X-Forwarded-Proto values. Closes #1646 rc@73: * change: remove charset from json responses. Closes #1631 rc@73: * change: return actual booleans from req.accept* functions rc@73: * fix jsonp callback array throw rc@73: rc@73: 3.2.6 / 2013-06-02 rc@73: ================== rc@73: rc@73: * update connect rc@73: rc@73: 3.2.5 / 2013-05-21 rc@73: ================== rc@73: rc@73: * update connect rc@73: * update node-cookie rc@73: * add: throw a meaningful error when there is no default engine rc@73: * change generation of ETags with res.send() to GET requests only. Closes #1619 rc@73: rc@73: 3.2.4 / 2013-05-09 rc@73: ================== rc@73: rc@73: * fix `req.subdomains` when no Host is present rc@73: * fix `req.host` when no Host is present, return undefined rc@73: rc@73: 3.2.3 / 2013-05-07 rc@73: ================== rc@73: rc@73: * update connect / qs rc@73: rc@73: 3.2.2 / 2013-05-03 rc@73: ================== rc@73: rc@73: * update qs rc@73: rc@73: 3.2.1 / 2013-04-29 rc@73: ================== rc@73: rc@73: * add app.VERB() paths array deprecation warning rc@73: * update connect rc@73: * update qs and remove all ~ semver crap rc@73: * fix: accept number as value of Signed Cookie rc@73: rc@73: 3.2.0 / 2013-04-15 rc@73: ================== rc@73: rc@73: * add "view" constructor setting to override view behaviour rc@73: * add req.acceptsEncoding(name) rc@73: * add req.acceptedEncodings rc@73: * revert cookie signature change causing session race conditions rc@73: * fix sorting of Accept values of the same quality rc@73: rc@73: 3.1.2 / 2013-04-12 rc@73: ================== rc@73: rc@73: * add support for custom Accept parameters rc@73: * update cookie-signature rc@73: rc@73: 3.1.1 / 2013-04-01 rc@73: ================== rc@73: rc@73: * add X-Forwarded-Host support to `req.host` rc@73: * fix relative redirects rc@73: * update mkdirp rc@73: * update buffer-crc32 rc@73: * remove legacy app.configure() method from app template. rc@73: rc@73: 3.1.0 / 2013-01-25 rc@73: ================== rc@73: rc@73: * add support for leading "." in "view engine" setting rc@73: * add array support to `res.set()` rc@73: * add node 0.8.x to travis.yml rc@73: * add "subdomain offset" setting for tweaking `req.subdomains` rc@73: * add `res.location(url)` implementing `res.redirect()`-like setting of Location rc@73: * use app.get() for x-powered-by setting for inheritance rc@73: * fix colons in passwords for `req.auth` rc@73: rc@73: 3.0.6 / 2013-01-04 rc@73: ================== rc@73: rc@73: * add http verb methods to Router rc@73: * update connect rc@73: * fix mangling of the `res.cookie()` options object rc@73: * fix jsonp whitespace escape. Closes #1132 rc@73: rc@73: 3.0.5 / 2012-12-19 rc@73: ================== rc@73: rc@73: * add throwing when a non-function is passed to a route rc@73: * fix: explicitly remove Transfer-Encoding header from 204 and 304 responses rc@73: * revert "add 'etag' option" rc@73: rc@73: 3.0.4 / 2012-12-05 rc@73: ================== rc@73: rc@73: * add 'etag' option to disable `res.send()` Etags rc@73: * add escaping of urls in text/plain in `res.redirect()` rc@73: for old browsers interpreting as html rc@73: * change crc32 module for a more liberal license rc@73: * update connect rc@73: rc@73: 3.0.3 / 2012-11-13 rc@73: ================== rc@73: rc@73: * update connect rc@73: * update cookie module rc@73: * fix cookie max-age rc@73: rc@73: 3.0.2 / 2012-11-08 rc@73: ================== rc@73: rc@73: * add OPTIONS to cors example. Closes #1398 rc@73: * fix route chaining regression. Closes #1397 rc@73: rc@73: 3.0.1 / 2012-11-01 rc@73: ================== rc@73: rc@73: * update connect rc@73: rc@73: 3.0.0 / 2012-10-23 rc@73: ================== rc@73: rc@73: * add `make clean` rc@73: * add "Basic" check to req.auth rc@73: * add `req.auth` test coverage rc@73: * add cb && cb(payload) to `res.jsonp()`. Closes #1374 rc@73: * add backwards compat for `res.redirect()` status. Closes #1336 rc@73: * add support for `res.json()` to retain previously defined Content-Types. Closes #1349 rc@73: * update connect rc@73: * change `res.redirect()` to utilize a pathname-relative Location again. Closes #1382 rc@73: * remove non-primitive string support for `res.send()` rc@73: * fix view-locals example. Closes #1370 rc@73: * fix route-separation example rc@73: rc@73: 3.0.0rc5 / 2012-09-18 rc@73: ================== rc@73: rc@73: * update connect rc@73: * add redis search example rc@73: * add static-files example rc@73: * add "x-powered-by" setting (`app.disable('x-powered-by')`) rc@73: * add "application/octet-stream" redirect Accept test case. Closes #1317 rc@73: rc@73: 3.0.0rc4 / 2012-08-30 rc@73: ================== rc@73: rc@73: * add `res.jsonp()`. Closes #1307 rc@73: * add "verbose errors" option to error-pages example rc@73: * add another route example to express(1) so people are not so confused rc@73: * add redis online user activity tracking example rc@73: * update connect dep rc@73: * fix etag quoting. Closes #1310 rc@73: * fix error-pages 404 status rc@73: * fix jsonp callback char restrictions rc@73: * remove old OPTIONS default response rc@73: rc@73: 3.0.0rc3 / 2012-08-13 rc@73: ================== rc@73: rc@73: * update connect dep rc@73: * fix signed cookies to work with `connect.cookieParser()` ("s:" prefix was missing) [tnydwrds] rc@73: * fix `res.render()` clobbering of "locals" rc@73: rc@73: 3.0.0rc2 / 2012-08-03 rc@73: ================== rc@73: rc@73: * add CORS example rc@73: * update connect dep rc@73: * deprecate `.createServer()` & remove old stale examples rc@73: * fix: escape `res.redirect()` link rc@73: * fix vhost example rc@73: rc@73: 3.0.0rc1 / 2012-07-24 rc@73: ================== rc@73: rc@73: * add more examples to view-locals rc@73: * add scheme-relative redirects (`res.redirect("//foo.com")`) support rc@73: * update cookie dep rc@73: * update connect dep rc@73: * update send dep rc@73: * fix `express(1)` -h flag, use -H for hogan. Closes #1245 rc@73: * fix `res.sendfile()` socket error handling regression rc@73: rc@73: 3.0.0beta7 / 2012-07-16 rc@73: ================== rc@73: rc@73: * update connect dep for `send()` root normalization regression rc@73: rc@73: 3.0.0beta6 / 2012-07-13 rc@73: ================== rc@73: rc@73: * add `err.view` property for view errors. Closes #1226 rc@73: * add "jsonp callback name" setting rc@73: * add support for "/foo/:bar*" non-greedy matches rc@73: * change `res.sendfile()` to use `send()` module rc@73: * change `res.send` to use "response-send" module rc@73: * remove `app.locals.use` and `res.locals.use`, use regular middleware rc@73: rc@73: 3.0.0beta5 / 2012-07-03 rc@73: ================== rc@73: rc@73: * add "make check" support rc@73: * add route-map example rc@73: * add `res.json(obj, status)` support back for BC rc@73: * add "methods" dep, remove internal methods module rc@73: * update connect dep rc@73: * update auth example to utilize cores pbkdf2 rc@73: * updated tests to use "supertest" rc@73: rc@73: 3.0.0beta4 / 2012-06-25 rc@73: ================== rc@73: rc@73: * Added `req.auth` rc@73: * Added `req.range(size)` rc@73: * Added `res.links(obj)` rc@73: * Added `res.send(body, status)` support back for backwards compat rc@73: * Added `.default()` support to `res.format()` rc@73: * Added 2xx / 304 check to `req.fresh` rc@73: * Revert "Added + support to the router" rc@73: * Fixed `res.send()` freshness check, respect res.statusCode rc@73: rc@73: 3.0.0beta3 / 2012-06-15 rc@73: ================== rc@73: rc@73: * Added hogan `--hjs` to express(1) [nullfirm] rc@73: * Added another example to content-negotiation rc@73: * Added `fresh` dep rc@73: * Changed: `res.send()` always checks freshness rc@73: * Fixed: expose connects mime module. Cloases #1165 rc@73: rc@73: 3.0.0beta2 / 2012-06-06 rc@73: ================== rc@73: rc@73: * Added `+` support to the router rc@73: * Added `req.host` rc@73: * Changed `req.param()` to check route first rc@73: * Update connect dep rc@73: rc@73: 3.0.0beta1 / 2012-06-01 rc@73: ================== rc@73: rc@73: * Added `res.format()` callback to override default 406 behaviour rc@73: * Fixed `res.redirect()` 406. Closes #1154 rc@73: rc@73: 3.0.0alpha5 / 2012-05-30 rc@73: ================== rc@73: rc@73: * Added `req.ip` rc@73: * Added `{ signed: true }` option to `res.cookie()` rc@73: * Removed `res.signedCookie()` rc@73: * Changed: dont reverse `req.ips` rc@73: * Fixed "trust proxy" setting check for `req.ips` rc@73: rc@73: 3.0.0alpha4 / 2012-05-09 rc@73: ================== rc@73: rc@73: * Added: allow `[]` in jsonp callback. Closes #1128 rc@73: * Added `PORT` env var support in generated template. Closes #1118 [benatkin] rc@73: * Updated: connect 2.2.2 rc@73: rc@73: 3.0.0alpha3 / 2012-05-04 rc@73: ================== rc@73: rc@73: * Added public `app.routes`. Closes #887 rc@73: * Added _view-locals_ example rc@73: * Added _mvc_ example rc@73: * Added `res.locals.use()`. Closes #1120 rc@73: * Added conditional-GET support to `res.send()` rc@73: * Added: coerce `res.set()` values to strings rc@73: * Changed: moved `static()` in generated apps below router rc@73: * Changed: `res.send()` only set ETag when not previously set rc@73: * Changed connect 2.2.1 dep rc@73: * Changed: `make test` now runs unit / acceptance tests rc@73: * Fixed req/res proto inheritance rc@73: rc@73: 3.0.0alpha2 / 2012-04-26 rc@73: ================== rc@73: rc@73: * Added `make benchmark` back rc@73: * Added `res.send()` support for `String` objects rc@73: * Added client-side data exposing example rc@73: * Added `res.header()` and `req.header()` aliases for BC rc@73: * Added `express.createServer()` for BC rc@73: * Perf: memoize parsed urls rc@73: * Perf: connect 2.2.0 dep rc@73: * Changed: make `expressInit()` middleware self-aware rc@73: * Fixed: use app.get() for all core settings rc@73: * Fixed redis session example rc@73: * Fixed session example. Closes #1105 rc@73: * Fixed generated express dep. Closes #1078 rc@73: rc@73: 3.0.0alpha1 / 2012-04-15 rc@73: ================== rc@73: rc@73: * Added `app.locals.use(callback)` rc@73: * Added `app.locals` object rc@73: * Added `app.locals(obj)` rc@73: * Added `res.locals` object rc@73: * Added `res.locals(obj)` rc@73: * Added `res.format()` for content-negotiation rc@73: * Added `app.engine()` rc@73: * Added `res.cookie()` JSON cookie support rc@73: * Added "trust proxy" setting rc@73: * Added `req.subdomains` rc@73: * Added `req.protocol` rc@73: * Added `req.secure` rc@73: * Added `req.path` rc@73: * Added `req.ips` rc@73: * Added `req.fresh` rc@73: * Added `req.stale` rc@73: * Added comma-delmited / array support for `req.accepts()` rc@73: * Added debug instrumentation rc@73: * Added `res.set(obj)` rc@73: * Added `res.set(field, value)` rc@73: * Added `res.get(field)` rc@73: * Added `app.get(setting)`. Closes #842 rc@73: * Added `req.acceptsLanguage()` rc@73: * Added `req.acceptsCharset()` rc@73: * Added `req.accepted` rc@73: * Added `req.acceptedLanguages` rc@73: * Added `req.acceptedCharsets` rc@73: * Added "json replacer" setting rc@73: * Added "json spaces" setting rc@73: * Added X-Forwarded-Proto support to `res.redirect()`. Closes #92 rc@73: * Added `--less` support to express(1) rc@73: * Added `express.response` prototype rc@73: * Added `express.request` prototype rc@73: * Added `express.application` prototype rc@73: * Added `app.path()` rc@73: * Added `app.render()` rc@73: * Added `res.type()` to replace `res.contentType()` rc@73: * Changed: `res.redirect()` to add relative support rc@73: * Changed: enable "jsonp callback" by default rc@73: * Changed: renamed "case sensitive routes" to "case sensitive routing" rc@73: * Rewrite of all tests with mocha rc@73: * Removed "root" setting rc@73: * Removed `res.redirect('home')` support rc@73: * Removed `req.notify()` rc@73: * Removed `app.register()` rc@73: * Removed `app.redirect()` rc@73: * Removed `app.is()` rc@73: * Removed `app.helpers()` rc@73: * Removed `app.dynamicHelpers()` rc@73: * Fixed `res.sendfile()` with non-GET. Closes #723 rc@73: * Fixed express(1) public dir for windows. Closes #866 rc@73: rc@73: 2.5.9/ 2012-04-02 rc@73: ================== rc@73: rc@73: * Added support for PURGE request method [pbuyle] rc@73: * Fixed `express(1)` generated app `app.address()` before `listening` [mmalecki] rc@73: rc@73: 2.5.8 / 2012-02-08 rc@73: ================== rc@73: rc@73: * Update mkdirp dep. Closes #991 rc@73: rc@73: 2.5.7 / 2012-02-06 rc@73: ================== rc@73: rc@73: * Fixed `app.all` duplicate DELETE requests [mscdex] rc@73: rc@73: 2.5.6 / 2012-01-13 rc@73: ================== rc@73: rc@73: * Updated hamljs dev dep. Closes #953 rc@73: rc@73: 2.5.5 / 2012-01-08 rc@73: ================== rc@73: rc@73: * Fixed: set `filename` on cached templates [matthewleon] rc@73: rc@73: 2.5.4 / 2012-01-02 rc@73: ================== rc@73: rc@73: * Fixed `express(1)` eol on 0.4.x. Closes #947 rc@73: rc@73: 2.5.3 / 2011-12-30 rc@73: ================== rc@73: rc@73: * Fixed `req.is()` when a charset is present rc@73: rc@73: 2.5.2 / 2011-12-10 rc@73: ================== rc@73: rc@73: * Fixed: express(1) LF -> CRLF for windows rc@73: rc@73: 2.5.1 / 2011-11-17 rc@73: ================== rc@73: rc@73: * Changed: updated connect to 1.8.x rc@73: * Removed sass.js support from express(1) rc@73: rc@73: 2.5.0 / 2011-10-24 rc@73: ================== rc@73: rc@73: * Added ./routes dir for generated app by default rc@73: * Added npm install reminder to express(1) app gen rc@73: * Added 0.5.x support rc@73: * Removed `make test-cov` since it wont work with node 0.5.x rc@73: * Fixed express(1) public dir for windows. Closes #866 rc@73: rc@73: 2.4.7 / 2011-10-05 rc@73: ================== rc@73: rc@73: * Added mkdirp to express(1). Closes #795 rc@73: * Added simple _json-config_ example rc@73: * Added shorthand for the parsed request's pathname via `req.path` rc@73: * Changed connect dep to 1.7.x to fix npm issue... rc@73: * Fixed `res.redirect()` __HEAD__ support. [reported by xerox] rc@73: * Fixed `req.flash()`, only escape args rc@73: * Fixed absolute path checking on windows. Closes #829 [reported by andrewpmckenzie] rc@73: rc@73: 2.4.6 / 2011-08-22 rc@73: ================== rc@73: rc@73: * Fixed multiple param callback regression. Closes #824 [reported by TroyGoode] rc@73: rc@73: 2.4.5 / 2011-08-19 rc@73: ================== rc@73: rc@73: * Added support for routes to handle errors. Closes #809 rc@73: * Added `app.routes.all()`. Closes #803 rc@73: * Added "basepath" setting to work in conjunction with reverse proxies etc. rc@73: * Refactored `Route` to use a single array of callbacks rc@73: * Added support for multiple callbacks for `app.param()`. Closes #801 rc@73: Closes #805 rc@73: * Changed: removed .call(self) for route callbacks rc@73: * Dependency: `qs >= 0.3.1` rc@73: * Fixed `res.redirect()` on windows due to `join()` usage. Closes #808 rc@73: rc@73: 2.4.4 / 2011-08-05 rc@73: ================== rc@73: rc@73: * Fixed `res.header()` intention of a set, even when `undefined` rc@73: * Fixed `*`, value no longer required rc@73: * Fixed `res.send(204)` support. Closes #771 rc@73: rc@73: 2.4.3 / 2011-07-14 rc@73: ================== rc@73: rc@73: * Added docs for `status` option special-case. Closes #739 rc@73: * Fixed `options.filename`, exposing the view path to template engines rc@73: rc@73: 2.4.2. / 2011-07-06 rc@73: ================== rc@73: rc@73: * Revert "removed jsonp stripping" for XSS rc@73: rc@73: 2.4.1 / 2011-07-06 rc@73: ================== rc@73: rc@73: * Added `res.json()` JSONP support. Closes #737 rc@73: * Added _extending-templates_ example. Closes #730 rc@73: * Added "strict routing" setting for trailing slashes rc@73: * Added support for multiple envs in `app.configure()` calls. Closes #735 rc@73: * Changed: `res.send()` using `res.json()` rc@73: * Changed: when cookie `path === null` don't default it rc@73: * Changed; default cookie path to "home" setting. Closes #731 rc@73: * Removed _pids/logs_ creation from express(1) rc@73: rc@73: 2.4.0 / 2011-06-28 rc@73: ================== rc@73: rc@73: * Added chainable `res.status(code)` rc@73: * Added `res.json()`, an explicit version of `res.send(obj)` rc@73: * Added simple web-service example rc@73: rc@73: 2.3.12 / 2011-06-22 rc@73: ================== rc@73: rc@73: * \#express is now on freenode! come join! rc@73: * Added `req.get(field, param)` rc@73: * Added links to Japanese documentation, thanks @hideyukisaito! rc@73: * Added; the `express(1)` generated app outputs the env rc@73: * Added `content-negotiation` example rc@73: * Dependency: connect >= 1.5.1 < 2.0.0 rc@73: * Fixed view layout bug. Closes #720 rc@73: * Fixed; ignore body on 304. Closes #701 rc@73: rc@73: 2.3.11 / 2011-06-04 rc@73: ================== rc@73: rc@73: * Added `npm test` rc@73: * Removed generation of dummy test file from `express(1)` rc@73: * Fixed; `express(1)` adds express as a dep rc@73: * Fixed; prune on `prepublish` rc@73: rc@73: 2.3.10 / 2011-05-27 rc@73: ================== rc@73: rc@73: * Added `req.route`, exposing the current route rc@73: * Added _package.json_ generation support to `express(1)` rc@73: * Fixed call to `app.param()` function for optional params. Closes #682 rc@73: rc@73: 2.3.9 / 2011-05-25 rc@73: ================== rc@73: rc@73: * Fixed bug-ish with `../' in `res.partial()` calls rc@73: rc@73: 2.3.8 / 2011-05-24 rc@73: ================== rc@73: rc@73: * Fixed `app.options()` rc@73: rc@73: 2.3.7 / 2011-05-23 rc@73: ================== rc@73: rc@73: * Added route `Collection`, ex: `app.get('/user/:id').remove();` rc@73: * Added support for `app.param(fn)` to define param logic rc@73: * Removed `app.param()` support for callback with return value rc@73: * Removed module.parent check from express(1) generated app. Closes #670 rc@73: * Refactored router. Closes #639 rc@73: rc@73: 2.3.6 / 2011-05-20 rc@73: ================== rc@73: rc@73: * Changed; using devDependencies instead of git submodules rc@73: * Fixed redis session example rc@73: * Fixed markdown example rc@73: * Fixed view caching, should not be enabled in development rc@73: rc@73: 2.3.5 / 2011-05-20 rc@73: ================== rc@73: rc@73: * Added export `.view` as alias for `.View` rc@73: rc@73: 2.3.4 / 2011-05-08 rc@73: ================== rc@73: rc@73: * Added `./examples/say` rc@73: * Fixed `res.sendfile()` bug preventing the transfer of files with spaces rc@73: rc@73: 2.3.3 / 2011-05-03 rc@73: ================== rc@73: rc@73: * Added "case sensitive routes" option. rc@73: * Changed; split methods supported per rfc [slaskis] rc@73: * Fixed route-specific middleware when using the same callback function several times rc@73: rc@73: 2.3.2 / 2011-04-27 rc@73: ================== rc@73: rc@73: * Fixed view hints rc@73: rc@73: 2.3.1 / 2011-04-26 rc@73: ================== rc@73: rc@73: * Added `app.match()` as `app.match.all()` rc@73: * Added `app.lookup()` as `app.lookup.all()` rc@73: * Added `app.remove()` for `app.remove.all()` rc@73: * Added `app.remove.VERB()` rc@73: * Fixed template caching collision issue. Closes #644 rc@73: * Moved router over from connect and started refactor rc@73: rc@73: 2.3.0 / 2011-04-25 rc@73: ================== rc@73: rc@73: * Added options support to `res.clearCookie()` rc@73: * Added `res.helpers()` as alias of `res.locals()` rc@73: * Added; json defaults to UTF-8 with `res.send()`. Closes #632. [Daniel * Dependency `connect >= 1.4.0` rc@73: * Changed; auto set Content-Type in res.attachement [Aaron Heckmann] rc@73: * Renamed "cache views" to "view cache". Closes #628 rc@73: * Fixed caching of views when using several apps. Closes #637 rc@73: * Fixed gotcha invoking `app.param()` callbacks once per route middleware. rc@73: Closes #638 rc@73: * Fixed partial lookup precedence. Closes #631 rc@73: Shaw] rc@73: rc@73: 2.2.2 / 2011-04-12 rc@73: ================== rc@73: rc@73: * Added second callback support for `res.download()` connection errors rc@73: * Fixed `filename` option passing to template engine rc@73: rc@73: 2.2.1 / 2011-04-04 rc@73: ================== rc@73: rc@73: * Added `layout(path)` helper to change the layout within a view. Closes #610 rc@73: * Fixed `partial()` collection object support. rc@73: Previously only anything with `.length` would work. rc@73: When `.length` is present one must still be aware of holes, rc@73: however now `{ collection: {foo: 'bar'}}` is valid, exposes rc@73: `keyInCollection` and `keysInCollection`. rc@73: rc@73: * Performance improved with better view caching rc@73: * Removed `request` and `response` locals rc@73: * Changed; errorHandler page title is now `Express` instead of `Connect` rc@73: rc@73: 2.2.0 / 2011-03-30 rc@73: ================== rc@73: rc@73: * Added `app.lookup.VERB()`, ex `app.lookup.put('/user/:id')`. Closes #606 rc@73: * Added `app.match.VERB()`, ex `app.match.put('/user/12')`. Closes #606 rc@73: * Added `app.VERB(path)` as alias of `app.lookup.VERB()`. rc@73: * Dependency `connect >= 1.2.0` rc@73: rc@73: 2.1.1 / 2011-03-29 rc@73: ================== rc@73: rc@73: * Added; expose `err.view` object when failing to locate a view rc@73: * Fixed `res.partial()` call `next(err)` when no callback is given [reported by aheckmann] rc@73: * Fixed; `res.send(undefined)` responds with 204 [aheckmann] rc@73: rc@73: 2.1.0 / 2011-03-24 rc@73: ================== rc@73: rc@73: * Added `/_?` partial lookup support. Closes #447 rc@73: * Added `request`, `response`, and `app` local variables rc@73: * Added `settings` local variable, containing the app's settings rc@73: * Added `req.flash()` exception if `req.session` is not available rc@73: * Added `res.send(bool)` support (json response) rc@73: * Fixed stylus example for latest version rc@73: * Fixed; wrap try/catch around `res.render()` rc@73: rc@73: 2.0.0 / 2011-03-17 rc@73: ================== rc@73: rc@73: * Fixed up index view path alternative. rc@73: * Changed; `res.locals()` without object returns the locals rc@73: rc@73: 2.0.0rc3 / 2011-03-17 rc@73: ================== rc@73: rc@73: * Added `res.locals(obj)` to compliment `res.local(key, val)` rc@73: * Added `res.partial()` callback support rc@73: * Fixed recursive error reporting issue in `res.render()` rc@73: rc@73: 2.0.0rc2 / 2011-03-17 rc@73: ================== rc@73: rc@73: * Changed; `partial()` "locals" are now optional rc@73: * Fixed `SlowBuffer` support. Closes #584 [reported by tyrda01] rc@73: * Fixed .filename view engine option [reported by drudge] rc@73: * Fixed blog example rc@73: * Fixed `{req,res}.app` reference when mounting [Ben Weaver] rc@73: rc@73: 2.0.0rc / 2011-03-14 rc@73: ================== rc@73: rc@73: * Fixed; expose `HTTPSServer` constructor rc@73: * Fixed express(1) default test charset. Closes #579 [reported by secoif] rc@73: * Fixed; default charset to utf-8 instead of utf8 for lame IE [reported by NickP] rc@73: rc@73: 2.0.0beta3 / 2011-03-09 rc@73: ================== rc@73: rc@73: * Added support for `res.contentType()` literal rc@73: The original `res.contentType('.json')`, rc@73: `res.contentType('application/json')`, and `res.contentType('json')` rc@73: will work now. rc@73: * Added `res.render()` status option support back rc@73: * Added charset option for `res.render()` rc@73: * Added `.charset` support (via connect 1.0.4) rc@73: * Added view resolution hints when in development and a lookup fails rc@73: * Added layout lookup support relative to the page view. rc@73: For example while rendering `./views/user/index.jade` if you create rc@73: `./views/user/layout.jade` it will be used in favour of the root layout. rc@73: * Fixed `res.redirect()`. RFC states absolute url [reported by unlink] rc@73: * Fixed; default `res.send()` string charset to utf8 rc@73: * Removed `Partial` constructor (not currently used) rc@73: rc@73: 2.0.0beta2 / 2011-03-07 rc@73: ================== rc@73: rc@73: * Added res.render() `.locals` support back to aid in migration process rc@73: * Fixed flash example rc@73: rc@73: 2.0.0beta / 2011-03-03 rc@73: ================== rc@73: rc@73: * Added HTTPS support rc@73: * Added `res.cookie()` maxAge support rc@73: * Added `req.header()` _Referrer_ / _Referer_ special-case, either works rc@73: * Added mount support for `res.redirect()`, now respects the mount-point rc@73: * Added `union()` util, taking place of `merge(clone())` combo rc@73: * Added stylus support to express(1) generated app rc@73: * Added secret to session middleware used in examples and generated app rc@73: * Added `res.local(name, val)` for progressive view locals rc@73: * Added default param support to `req.param(name, default)` rc@73: * Added `app.disabled()` and `app.enabled()` rc@73: * Added `app.register()` support for omitting leading ".", either works rc@73: * Added `res.partial()`, using the same interface as `partial()` within a view. Closes #539 rc@73: * Added `app.param()` to map route params to async/sync logic rc@73: * Added; aliased `app.helpers()` as `app.locals()`. Closes #481 rc@73: * Added extname with no leading "." support to `res.contentType()` rc@73: * Added `cache views` setting, defaulting to enabled in "production" env rc@73: * Added index file partial resolution, eg: partial('user') may try _views/user/index.jade_. rc@73: * Added `req.accepts()` support for extensions rc@73: * Changed; `res.download()` and `res.sendfile()` now utilize Connect's rc@73: static file server `connect.static.send()`. rc@73: * Changed; replaced `connect.utils.mime()` with npm _mime_ module rc@73: * Changed; allow `req.query` to be pre-defined (via middleware or other parent rc@73: * Changed view partial resolution, now relative to parent view rc@73: * Changed view engine signature. no longer `engine.render(str, options, callback)`, now `engine.compile(str, options) -> Function`, the returned function accepts `fn(locals)`. rc@73: * Fixed `req.param()` bug returning Array.prototype methods. Closes #552 rc@73: * Fixed; using `Stream#pipe()` instead of `sys.pump()` in `res.sendfile()` rc@73: * Fixed; using _qs_ module instead of _querystring_ rc@73: * Fixed; strip unsafe chars from jsonp callbacks rc@73: * Removed "stream threshold" setting rc@73: rc@73: 1.0.8 / 2011-03-01 rc@73: ================== rc@73: rc@73: * Allow `req.query` to be pre-defined (via middleware or other parent app) rc@73: * "connect": ">= 0.5.0 < 1.0.0". Closes #547 rc@73: * Removed the long deprecated __EXPRESS_ENV__ support rc@73: rc@73: 1.0.7 / 2011-02-07 rc@73: ================== rc@73: rc@73: * Fixed `render()` setting inheritance. rc@73: Mounted apps would not inherit "view engine" rc@73: rc@73: 1.0.6 / 2011-02-07 rc@73: ================== rc@73: rc@73: * Fixed `view engine` setting bug when period is in dirname rc@73: rc@73: 1.0.5 / 2011-02-05 rc@73: ================== rc@73: rc@73: * Added secret to generated app `session()` call rc@73: rc@73: 1.0.4 / 2011-02-05 rc@73: ================== rc@73: rc@73: * Added `qs` dependency to _package.json_ rc@73: * Fixed namespaced `require()`s for latest connect support rc@73: rc@73: 1.0.3 / 2011-01-13 rc@73: ================== rc@73: rc@73: * Remove unsafe characters from JSONP callback names [Ryan Grove] rc@73: rc@73: 1.0.2 / 2011-01-10 rc@73: ================== rc@73: rc@73: * Removed nested require, using `connect.router` rc@73: rc@73: 1.0.1 / 2010-12-29 rc@73: ================== rc@73: rc@73: * Fixed for middleware stacked via `createServer()` rc@73: previously the `foo` middleware passed to `createServer(foo)` rc@73: would not have access to Express methods such as `res.send()` rc@73: or props like `req.query` etc. rc@73: rc@73: 1.0.0 / 2010-11-16 rc@73: ================== rc@73: rc@73: * Added; deduce partial object names from the last segment. rc@73: For example by default `partial('forum/post', postObject)` will rc@73: give you the _post_ object, providing a meaningful default. rc@73: * Added http status code string representation to `res.redirect()` body rc@73: * Added; `res.redirect()` supporting _text/plain_ and _text/html_ via __Accept__. rc@73: * Added `req.is()` to aid in content negotiation rc@73: * Added partial local inheritance [suggested by masylum]. Closes #102 rc@73: providing access to parent template locals. rc@73: * Added _-s, --session[s]_ flag to express(1) to add session related middleware rc@73: * Added _--template_ flag to express(1) to specify the rc@73: template engine to use. rc@73: * Added _--css_ flag to express(1) to specify the rc@73: stylesheet engine to use (or just plain css by default). rc@73: * Added `app.all()` support [thanks aheckmann] rc@73: * Added partial direct object support. rc@73: You may now `partial('user', user)` providing the "user" local, rc@73: vs previously `partial('user', { object: user })`. rc@73: * Added _route-separation_ example since many people question ways rc@73: to do this with CommonJS modules. Also view the _blog_ example for rc@73: an alternative. rc@73: * Performance; caching view path derived partial object names rc@73: * Fixed partial local inheritance precedence. [reported by Nick Poulden] Closes #454 rc@73: * Fixed jsonp support; _text/javascript_ as per mailinglist discussion rc@73: rc@73: 1.0.0rc4 / 2010-10-14 rc@73: ================== rc@73: rc@73: * Added _NODE_ENV_ support, _EXPRESS_ENV_ is deprecated and will be removed in 1.0.0 rc@73: * Added route-middleware support (very helpful, see the [docs](http://expressjs.com/guide.html#Route-Middleware)) rc@73: * Added _jsonp callback_ setting to enable/disable jsonp autowrapping [Dav Glass] rc@73: * Added callback query check on response.send to autowrap JSON objects for simple webservice implementations [Dav Glass] rc@73: * Added `partial()` support for array-like collections. Closes #434 rc@73: * Added support for swappable querystring parsers rc@73: * Added session usage docs. Closes #443 rc@73: * Added dynamic helper caching. Closes #439 [suggested by maritz] rc@73: * Added authentication example rc@73: * Added basic Range support to `res.sendfile()` (and `res.download()` etc) rc@73: * Changed; `express(1)` generated app using 2 spaces instead of 4 rc@73: * Default env to "development" again [aheckmann] rc@73: * Removed _context_ option is no more, use "scope" rc@73: * Fixed; exposing _./support_ libs to examples so they can run without installs rc@73: * Fixed mvc example rc@73: rc@73: 1.0.0rc3 / 2010-09-20 rc@73: ================== rc@73: rc@73: * Added confirmation for `express(1)` app generation. Closes #391 rc@73: * Added extending of flash formatters via `app.flashFormatters` rc@73: * Added flash formatter support. Closes #411 rc@73: * Added streaming support to `res.sendfile()` using `sys.pump()` when >= "stream threshold" rc@73: * Added _stream threshold_ setting for `res.sendfile()` rc@73: * Added `res.send()` __HEAD__ support rc@73: * Added `res.clearCookie()` rc@73: * Added `res.cookie()` rc@73: * Added `res.render()` headers option rc@73: * Added `res.redirect()` response bodies rc@73: * Added `res.render()` status option support. Closes #425 [thanks aheckmann] rc@73: * Fixed `res.sendfile()` responding with 403 on malicious path rc@73: * Fixed `res.download()` bug; when an error occurs remove _Content-Disposition_ rc@73: * Fixed; mounted apps settings now inherit from parent app [aheckmann] rc@73: * Fixed; stripping Content-Length / Content-Type when 204 rc@73: * Fixed `res.send()` 204. Closes #419 rc@73: * Fixed multiple _Set-Cookie_ headers via `res.header()`. Closes #402 rc@73: * Fixed bug messing with error handlers when `listenFD()` is called instead of `listen()`. [thanks guillermo] rc@73: rc@73: rc@73: 1.0.0rc2 / 2010-08-17 rc@73: ================== rc@73: rc@73: * Added `app.register()` for template engine mapping. Closes #390 rc@73: * Added `res.render()` callback support as second argument (no options) rc@73: * Added callback support to `res.download()` rc@73: * Added callback support for `res.sendfile()` rc@73: * Added support for middleware access via `express.middlewareName()` vs `connect.middlewareName()` rc@73: * Added "partials" setting to docs rc@73: * Added default expresso tests to `express(1)` generated app. Closes #384 rc@73: * Fixed `res.sendfile()` error handling, defer via `next()` rc@73: * Fixed `res.render()` callback when a layout is used [thanks guillermo] rc@73: * Fixed; `make install` creating ~/.node_libraries when not present rc@73: * Fixed issue preventing error handlers from being defined anywhere. Closes #387 rc@73: rc@73: 1.0.0rc / 2010-07-28 rc@73: ================== rc@73: rc@73: * Added mounted hook. Closes #369 rc@73: * Added connect dependency to _package.json_ rc@73: rc@73: * Removed "reload views" setting and support code rc@73: development env never caches, production always caches. rc@73: rc@73: * Removed _param_ in route callbacks, signature is now rc@73: simply (req, res, next), previously (req, res, params, next). rc@73: Use _req.params_ for path captures, _req.query_ for GET params. rc@73: rc@73: * Fixed "home" setting rc@73: * Fixed middleware/router precedence issue. Closes #366 rc@73: * Fixed; _configure()_ callbacks called immediately. Closes #368 rc@73: rc@73: 1.0.0beta2 / 2010-07-23 rc@73: ================== rc@73: rc@73: * Added more examples rc@73: * Added; exporting `Server` constructor rc@73: * Added `Server#helpers()` for view locals rc@73: * Added `Server#dynamicHelpers()` for dynamic view locals. Closes #349 rc@73: * Added support for absolute view paths rc@73: * Added; _home_ setting defaults to `Server#route` for mounted apps. Closes #363 rc@73: * Added Guillermo Rauch to the contributor list rc@73: * Added support for "as" for non-collection partials. Closes #341 rc@73: * Fixed _install.sh_, ensuring _~/.node_libraries_ exists. Closes #362 [thanks jf] rc@73: * Fixed `res.render()` exceptions, now passed to `next()` when no callback is given [thanks guillermo] rc@73: * Fixed instanceof `Array` checks, now `Array.isArray()` rc@73: * Fixed express(1) expansion of public dirs. Closes #348 rc@73: * Fixed middleware precedence. Closes #345 rc@73: * Fixed view watcher, now async [thanks aheckmann] rc@73: rc@73: 1.0.0beta / 2010-07-15 rc@73: ================== rc@73: rc@73: * Re-write rc@73: - much faster rc@73: - much lighter rc@73: - Check [ExpressJS.com](http://expressjs.com) for migration guide and updated docs rc@73: rc@73: 0.14.0 / 2010-06-15 rc@73: ================== rc@73: rc@73: * Utilize relative requires rc@73: * Added Static bufferSize option [aheckmann] rc@73: * Fixed caching of view and partial subdirectories [aheckmann] rc@73: * Fixed mime.type() comments now that ".ext" is not supported rc@73: * Updated haml submodule rc@73: * Updated class submodule rc@73: * Removed bin/express rc@73: rc@73: 0.13.0 / 2010-06-01 rc@73: ================== rc@73: rc@73: * Added node v0.1.97 compatibility rc@73: * Added support for deleting cookies via Request#cookie('key', null) rc@73: * Updated haml submodule rc@73: * Fixed not-found page, now using using charset utf-8 rc@73: * Fixed show-exceptions page, now using using charset utf-8 rc@73: * Fixed view support due to fs.readFile Buffers rc@73: * Changed; mime.type() no longer accepts ".type" due to node extname() changes rc@73: rc@73: 0.12.0 / 2010-05-22 rc@73: ================== rc@73: rc@73: * Added node v0.1.96 compatibility rc@73: * Added view `helpers` export which act as additional local variables rc@73: * Updated haml submodule rc@73: * Changed ETag; removed inode, modified time only rc@73: * Fixed LF to CRLF for setting multiple cookies rc@73: * Fixed cookie complation; values are now urlencoded rc@73: * Fixed cookies parsing; accepts quoted values and url escaped cookies rc@73: rc@73: 0.11.0 / 2010-05-06 rc@73: ================== rc@73: rc@73: * Added support for layouts using different engines rc@73: - this.render('page.html.haml', { layout: 'super-cool-layout.html.ejs' }) rc@73: - this.render('page.html.haml', { layout: 'foo' }) // assumes 'foo.html.haml' rc@73: - this.render('page.html.haml', { layout: false }) // no layout rc@73: * Updated ext submodule rc@73: * Updated haml submodule rc@73: * Fixed EJS partial support by passing along the context. Issue #307 rc@73: rc@73: 0.10.1 / 2010-05-03 rc@73: ================== rc@73: rc@73: * Fixed binary uploads. rc@73: rc@73: 0.10.0 / 2010-04-30 rc@73: ================== rc@73: rc@73: * Added charset support via Request#charset (automatically assigned to 'UTF-8' when respond()'s rc@73: encoding is set to 'utf8' or 'utf-8'. rc@73: * Added "encoding" option to Request#render(). Closes #299 rc@73: * Added "dump exceptions" setting, which is enabled by default. rc@73: * Added simple ejs template engine support rc@73: * Added error reponse support for text/plain, application/json. Closes #297 rc@73: * Added callback function param to Request#error() rc@73: * Added Request#sendHead() rc@73: * Added Request#stream() rc@73: * Added support for Request#respond(304, null) for empty response bodies rc@73: * Added ETag support to Request#sendfile() rc@73: * Added options to Request#sendfile(), passed to fs.createReadStream() rc@73: * Added filename arg to Request#download() rc@73: * Performance enhanced due to pre-reversing plugins so that plugins.reverse() is not called on each request rc@73: * Performance enhanced by preventing several calls to toLowerCase() in Router#match() rc@73: * Changed; Request#sendfile() now streams rc@73: * Changed; Renamed Request#halt() to Request#respond(). Closes #289 rc@73: * Changed; Using sys.inspect() instead of JSON.encode() for error output rc@73: * Changed; run() returns the http.Server instance. Closes #298 rc@73: * Changed; Defaulting Server#host to null (INADDR_ANY) rc@73: * Changed; Logger "common" format scale of 0.4f rc@73: * Removed Logger "request" format rc@73: * Fixed; Catching ENOENT in view caching, preventing error when "views/partials" is not found rc@73: * Fixed several issues with http client rc@73: * Fixed Logger Content-Length output rc@73: * Fixed bug preventing Opera from retaining the generated session id. Closes #292 rc@73: rc@73: 0.9.0 / 2010-04-14 rc@73: ================== rc@73: rc@73: * Added DSL level error() route support rc@73: * Added DSL level notFound() route support rc@73: * Added Request#error() rc@73: * Added Request#notFound() rc@73: * Added Request#render() callback function. Closes #258 rc@73: * Added "max upload size" setting rc@73: * Added "magic" variables to collection partials (\_\_index\_\_, \_\_length\_\_, \_\_isFirst\_\_, \_\_isLast\_\_). Closes #254 rc@73: * Added [haml.js](http://github.com/visionmedia/haml.js) submodule; removed haml-js rc@73: * Added callback function support to Request#halt() as 3rd/4th arg rc@73: * Added preprocessing of route param wildcards using param(). Closes #251 rc@73: * Added view partial support (with collections etc) rc@73: * Fixed bug preventing falsey params (such as ?page=0). Closes #286 rc@73: * Fixed setting of multiple cookies. Closes #199 rc@73: * Changed; view naming convention is now NAME.TYPE.ENGINE (for example page.html.haml) rc@73: * Changed; session cookie is now httpOnly rc@73: * Changed; Request is no longer global rc@73: * Changed; Event is no longer global rc@73: * Changed; "sys" module is no longer global rc@73: * Changed; moved Request#download to Static plugin where it belongs rc@73: * Changed; Request instance created before body parsing. Closes #262 rc@73: * Changed; Pre-caching views in memory when "cache view contents" is enabled. Closes #253 rc@73: * Changed; Pre-caching view partials in memory when "cache view partials" is enabled rc@73: * Updated support to node --version 0.1.90 rc@73: * Updated dependencies rc@73: * Removed set("session cookie") in favour of use(Session, { cookie: { ... }}) rc@73: * Removed utils.mixin(); use Object#mergeDeep() rc@73: rc@73: 0.8.0 / 2010-03-19 rc@73: ================== rc@73: rc@73: * Added coffeescript example app. Closes #242 rc@73: * Changed; cache api now async friendly. Closes #240 rc@73: * Removed deprecated 'express/static' support. Use 'express/plugins/static' rc@73: rc@73: 0.7.6 / 2010-03-19 rc@73: ================== rc@73: rc@73: * Added Request#isXHR. Closes #229 rc@73: * Added `make install` (for the executable) rc@73: * Added `express` executable for setting up simple app templates rc@73: * Added "GET /public/*" to Static plugin, defaulting to /public rc@73: * Added Static plugin rc@73: * Fixed; Request#render() only calls cache.get() once rc@73: * Fixed; Namespacing View caches with "view:" rc@73: * Fixed; Namespacing Static caches with "static:" rc@73: * Fixed; Both example apps now use the Static plugin rc@73: * Fixed set("views"). Closes #239 rc@73: * Fixed missing space for combined log format rc@73: * Deprecated Request#sendfile() and 'express/static' rc@73: * Removed Server#running rc@73: rc@73: 0.7.5 / 2010-03-16 rc@73: ================== rc@73: rc@73: * Added Request#flash() support without args, now returns all flashes rc@73: * Updated ext submodule rc@73: rc@73: 0.7.4 / 2010-03-16 rc@73: ================== rc@73: rc@73: * Fixed session reaper rc@73: * Changed; class.js replacing js-oo Class implementation (quite a bit faster, no browser cruft) rc@73: rc@73: 0.7.3 / 2010-03-16 rc@73: ================== rc@73: rc@73: * Added package.json rc@73: * Fixed requiring of haml / sass due to kiwi removal rc@73: rc@73: 0.7.2 / 2010-03-16 rc@73: ================== rc@73: rc@73: * Fixed GIT submodules (HAH!) rc@73: rc@73: 0.7.1 / 2010-03-16 rc@73: ================== rc@73: rc@73: * Changed; Express now using submodules again until a PM is adopted rc@73: * Changed; chat example using millisecond conversions from ext rc@73: rc@73: 0.7.0 / 2010-03-15 rc@73: ================== rc@73: rc@73: * Added Request#pass() support (finds the next matching route, or the given path) rc@73: * Added Logger plugin (default "common" format replaces CommonLogger) rc@73: * Removed Profiler plugin rc@73: * Removed CommonLogger plugin rc@73: rc@73: 0.6.0 / 2010-03-11 rc@73: ================== rc@73: rc@73: * Added seed.yml for kiwi package management support rc@73: * Added HTTP client query string support when method is GET. Closes #205 rc@73: rc@73: * Added support for arbitrary view engines. rc@73: For example "foo.engine.html" will now require('engine'), rc@73: the exports from this module are cached after the first require(). rc@73: rc@73: * Added async plugin support rc@73: rc@73: * Removed usage of RESTful route funcs as http client rc@73: get() etc, use http.get() and friends rc@73: rc@73: * Removed custom exceptions rc@73: rc@73: 0.5.0 / 2010-03-10 rc@73: ================== rc@73: rc@73: * Added ext dependency (library of js extensions) rc@73: * Removed extname() / basename() utils. Use path module rc@73: * Removed toArray() util. Use arguments.values rc@73: * Removed escapeRegexp() util. Use RegExp.escape() rc@73: * Removed process.mixin() dependency. Use utils.mixin() rc@73: * Removed Collection rc@73: * Removed ElementCollection rc@73: * Shameless self promotion of ebook "Advanced JavaScript" (http://dev-mag.com) ;) rc@73: rc@73: 0.4.0 / 2010-02-11 rc@73: ================== rc@73: rc@73: * Added flash() example to sample upload app rc@73: * Added high level restful http client module (express/http) rc@73: * Changed; RESTful route functions double as HTTP clients. Closes #69 rc@73: * Changed; throwing error when routes are added at runtime rc@73: * Changed; defaulting render() context to the current Request. Closes #197 rc@73: * Updated haml submodule rc@73: rc@73: 0.3.0 / 2010-02-11 rc@73: ================== rc@73: rc@73: * Updated haml / sass submodules. Closes #200 rc@73: * Added flash message support. Closes #64 rc@73: * Added accepts() now allows multiple args. fixes #117 rc@73: * Added support for plugins to halt. Closes #189 rc@73: * Added alternate layout support. Closes #119 rc@73: * Removed Route#run(). Closes #188 rc@73: * Fixed broken specs due to use(Cookie) missing rc@73: rc@73: 0.2.1 / 2010-02-05 rc@73: ================== rc@73: rc@73: * Added "plot" format option for Profiler (for gnuplot processing) rc@73: * Added request number to Profiler plugin rc@73: * Fixed binary encoding for multi-part file uploads, was previously defaulting to UTF8 rc@73: * Fixed issue with routes not firing when not files are present. Closes #184 rc@73: * Fixed process.Promise -> events.Promise rc@73: rc@73: 0.2.0 / 2010-02-03 rc@73: ================== rc@73: rc@73: * Added parseParam() support for name[] etc. (allows for file inputs with "multiple" attr) Closes #180 rc@73: * Added Both Cache and Session option "reapInterval" may be "reapEvery". Closes #174 rc@73: * Added expiration support to cache api with reaper. Closes #133 rc@73: * Added cache Store.Memory#reap() rc@73: * Added Cache; cache api now uses first class Cache instances rc@73: * Added abstract session Store. Closes #172 rc@73: * Changed; cache Memory.Store#get() utilizing Collection rc@73: * Renamed MemoryStore -> Store.Memory rc@73: * Fixed use() of the same plugin several time will always use latest options. Closes #176 rc@73: rc@73: 0.1.0 / 2010-02-03 rc@73: ================== rc@73: rc@73: * Changed; Hooks (before / after) pass request as arg as well as evaluated in their context rc@73: * Updated node support to 0.1.27 Closes #169 rc@73: * Updated dirname(__filename) -> __dirname rc@73: * Updated libxmljs support to v0.2.0 rc@73: * Added session support with memory store / reaping rc@73: * Added quick uid() helper rc@73: * Added multi-part upload support rc@73: * Added Sass.js support / submodule rc@73: * Added production env caching view contents and static files rc@73: * Added static file caching. Closes #136 rc@73: * Added cache plugin with memory stores rc@73: * Added support to StaticFile so that it works with non-textual files. rc@73: * Removed dirname() helper rc@73: * Removed several globals (now their modules must be required) rc@73: rc@73: 0.0.2 / 2010-01-10 rc@73: ================== rc@73: rc@73: * Added view benchmarks; currently haml vs ejs rc@73: * Added Request#attachment() specs. Closes #116 rc@73: * Added use of node's parseQuery() util. Closes #123 rc@73: * Added `make init` for submodules rc@73: * Updated Haml rc@73: * Updated sample chat app to show messages on load rc@73: * Updated libxmljs parseString -> parseHtmlString rc@73: * Fixed `make init` to work with older versions of git rc@73: * Fixed specs can now run independant specs for those who cant build deps. Closes #127 rc@73: * Fixed issues introduced by the node url module changes. Closes 126. rc@73: * Fixed two assertions failing due to Collection#keys() returning strings rc@73: * Fixed faulty Collection#toArray() spec due to keys() returning strings rc@73: * Fixed `make test` now builds libxmljs.node before testing rc@73: rc@73: 0.0.1 / 2010-01-03 rc@73: ================== rc@73: rc@73: * Initial release