annotate node_modules/express/History.md @ 101:52e44ee1c791 tip master

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