/node_modules/express/History.md

https://bitbucket.org/gagginaspinnata/todo-app-with-angularjs · Markdown · 1014 lines · 809 code · 205 blank · 0 comment · 0 complexity · 7f603e9b7e69f394ab7d6278bf44b160 MD5 · raw file

  1. 3.0.0rc4 / 2012-08-30
  2. ==================
  3. * add `res.jsonp()`. Closes #1307
  4. * add "verbose errors" option to error-pages example
  5. * add another route example to express(1) so people are not so confused
  6. * add redis online user activity tracking example
  7. * update connect dep
  8. * fix etag quoting. Closes #1310
  9. * fix error-pages 404 status
  10. * fix jsonp callback char restrictions
  11. * remove old OPTIONS default response
  12. 3.0.0rc3 / 2012-08-13
  13. ==================
  14. * update connect dep
  15. * fix signed cookies to work with `connect.cookieParser()` ("s:" prefix was missing) [tnydwrds]
  16. * fix `res.render()` clobbering of "locals"
  17. 3.0.0rc2 / 2012-08-03
  18. ==================
  19. * add CORS example
  20. * update connect dep
  21. * deprecate `.createServer()` & remove old stale examples
  22. * fix: escape `res.redirect()` link
  23. * fix vhost example
  24. 3.0.0rc1 / 2012-07-24
  25. ==================
  26. * add more examples to view-locals
  27. * add scheme-relative redirects (`res.redirect("//foo.com")`) support
  28. * update cookie dep
  29. * update connect dep
  30. * update send dep
  31. * fix `express(1)` -h flag, use -H for hogan. Closes #1245
  32. * fix `res.sendfile()` socket error handling regression
  33. 3.0.0beta7 / 2012-07-16
  34. ==================
  35. * update connect dep for `send()` root normalization regression
  36. 3.0.0beta6 / 2012-07-13
  37. ==================
  38. * add `err.view` property for view errors. Closes #1226
  39. * add "jsonp callback name" setting
  40. * add support for "/foo/:bar*" non-greedy matches
  41. * change `res.sendfile()` to use `send()` module
  42. * change `res.send` to use "response-send" module
  43. * remove `app.locals.use` and `res.locals.use`, use regular middleware
  44. 3.0.0beta5 / 2012-07-03
  45. ==================
  46. * add "make check" support
  47. * add route-map example
  48. * add `res.json(obj, status)` support back for BC
  49. * add "methods" dep, remove internal methods module
  50. * update connect dep
  51. * update auth example to utilize cores pbkdf2
  52. * updated tests to use "supertest"
  53. 3.0.0beta4 / 2012-06-25
  54. ==================
  55. * Added `req.auth`
  56. * Added `req.range(size)`
  57. * Added `res.links(obj)`
  58. * Added `res.send(body, status)` support back for backwards compat
  59. * Added `.default()` support to `res.format()`
  60. * Added 2xx / 304 check to `req.fresh`
  61. * Revert "Added + support to the router"
  62. * Fixed `res.send()` freshness check, respect res.statusCode
  63. 3.0.0beta3 / 2012-06-15
  64. ==================
  65. * Added hogan `--hjs` to express(1) [nullfirm]
  66. * Added another example to content-negotiation
  67. * Added `fresh` dep
  68. * Changed: `res.send()` always checks freshness
  69. * Fixed: expose connects mime module. Cloases #1165
  70. 3.0.0beta2 / 2012-06-06
  71. ==================
  72. * Added `+` support to the router
  73. * Added `req.host`
  74. * Changed `req.param()` to check route first
  75. * Update connect dep
  76. 3.0.0beta1 / 2012-06-01
  77. ==================
  78. * Added `res.format()` callback to override default 406 behaviour
  79. * Fixed `res.redirect()` 406. Closes #1154
  80. 3.0.0alpha5 / 2012-05-30
  81. ==================
  82. * Added `req.ip`
  83. * Added `{ signed: true }` option to `res.cookie()`
  84. * Removed `res.signedCookie()`
  85. * Changed: dont reverse `req.ips`
  86. * Fixed "trust proxy" setting check for `req.ips`
  87. 3.0.0alpha4 / 2012-05-09
  88. ==================
  89. * Added: allow `[]` in jsonp callback. Closes #1128
  90. * Added `PORT` env var support in generated template. Closes #1118 [benatkin]
  91. * Updated: connect 2.2.2
  92. 3.0.0alpha3 / 2012-05-04
  93. ==================
  94. * Added public `app.routes`. Closes #887
  95. * Added _view-locals_ example
  96. * Added _mvc_ example
  97. * Added `res.locals.use()`. Closes #1120
  98. * Added conditional-GET support to `res.send()`
  99. * Added: coerce `res.set()` values to strings
  100. * Changed: moved `static()` in generated apps below router
  101. * Changed: `res.send()` only set ETag when not previously set
  102. * Changed connect 2.2.1 dep
  103. * Changed: `make test` now runs unit / acceptance tests
  104. * Fixed req/res proto inheritance
  105. 3.0.0alpha2 / 2012-04-26
  106. ==================
  107. * Added `make benchmark` back
  108. * Added `res.send()` support for `String` objects
  109. * Added client-side data exposing example
  110. * Added `res.header()` and `req.header()` aliases for BC
  111. * Added `express.createServer()` for BC
  112. * Perf: memoize parsed urls
  113. * Perf: connect 2.2.0 dep
  114. * Changed: make `expressInit()` middleware self-aware
  115. * Fixed: use app.get() for all core settings
  116. * Fixed redis session example
  117. * Fixed session example. Closes #1105
  118. * Fixed generated express dep. Closes #1078
  119. 3.0.0alpha1 / 2012-04-15
  120. ==================
  121. * Added `app.locals.use(callback)`
  122. * Added `app.locals` object
  123. * Added `app.locals(obj)`
  124. * Added `res.locals` object
  125. * Added `res.locals(obj)`
  126. * Added `res.format()` for content-negotiation
  127. * Added `app.engine()`
  128. * Added `res.cookie()` JSON cookie support
  129. * Added "trust proxy" setting
  130. * Added `req.subdomains`
  131. * Added `req.protocol`
  132. * Added `req.secure`
  133. * Added `req.path`
  134. * Added `req.ips`
  135. * Added `req.fresh`
  136. * Added `req.stale`
  137. * Added comma-delmited / array support for `req.accepts()`
  138. * Added debug instrumentation
  139. * Added `res.set(obj)`
  140. * Added `res.set(field, value)`
  141. * Added `res.get(field)`
  142. * Added `app.get(setting)`. Closes #842
  143. * Added `req.acceptsLanguage()`
  144. * Added `req.acceptsCharset()`
  145. * Added `req.accepted`
  146. * Added `req.acceptedLanguages`
  147. * Added `req.acceptedCharsets`
  148. * Added "json replacer" setting
  149. * Added "json spaces" setting
  150. * Added X-Forwarded-Proto support to `res.redirect()`. Closes #92
  151. * Added `--less` support to express(1)
  152. * Added `express.response` prototype
  153. * Added `express.request` prototype
  154. * Added `express.application` prototype
  155. * Added `app.path()`
  156. * Added `app.render()`
  157. * Added `res.type()` to replace `res.contentType()`
  158. * Changed: `res.redirect()` to add relative support
  159. * Changed: enable "jsonp callback" by default
  160. * Changed: renamed "case sensitive routes" to "case sensitive routing"
  161. * Rewrite of all tests with mocha
  162. * Removed "root" setting
  163. * Removed `res.redirect('home')` support
  164. * Removed `req.notify()`
  165. * Removed `app.register()`
  166. * Removed `app.redirect()`
  167. * Removed `app.is()`
  168. * Removed `app.helpers()`
  169. * Removed `app.dynamicHelpers()`
  170. * Fixed `res.sendfile()` with non-GET. Closes #723
  171. * Fixed express(1) public dir for windows. Closes #866
  172. 2.5.9/ 2012-04-02
  173. ==================
  174. * Added support for PURGE request method [pbuyle]
  175. * Fixed `express(1)` generated app `app.address()` before `listening` [mmalecki]
  176. 2.5.8 / 2012-02-08
  177. ==================
  178. * Update mkdirp dep. Closes #991
  179. 2.5.7 / 2012-02-06
  180. ==================
  181. * Fixed `app.all` duplicate DELETE requests [mscdex]
  182. 2.5.6 / 2012-01-13
  183. ==================
  184. * Updated hamljs dev dep. Closes #953
  185. 2.5.5 / 2012-01-08
  186. ==================
  187. * Fixed: set `filename` on cached templates [matthewleon]
  188. 2.5.4 / 2012-01-02
  189. ==================
  190. * Fixed `express(1)` eol on 0.4.x. Closes #947
  191. 2.5.3 / 2011-12-30
  192. ==================
  193. * Fixed `req.is()` when a charset is present
  194. 2.5.2 / 2011-12-10
  195. ==================
  196. * Fixed: express(1) LF -> CRLF for windows
  197. 2.5.1 / 2011-11-17
  198. ==================
  199. * Changed: updated connect to 1.8.x
  200. * Removed sass.js support from express(1)
  201. 2.5.0 / 2011-10-24
  202. ==================
  203. * Added ./routes dir for generated app by default
  204. * Added npm install reminder to express(1) app gen
  205. * Added 0.5.x support
  206. * Removed `make test-cov` since it wont work with node 0.5.x
  207. * Fixed express(1) public dir for windows. Closes #866
  208. 2.4.7 / 2011-10-05
  209. ==================
  210. * Added mkdirp to express(1). Closes #795
  211. * Added simple _json-config_ example
  212. * Added shorthand for the parsed request's pathname via `req.path`
  213. * Changed connect dep to 1.7.x to fix npm issue...
  214. * Fixed `res.redirect()` __HEAD__ support. [reported by xerox]
  215. * Fixed `req.flash()`, only escape args
  216. * Fixed absolute path checking on windows. Closes #829 [reported by andrewpmckenzie]
  217. 2.4.6 / 2011-08-22
  218. ==================
  219. * Fixed multiple param callback regression. Closes #824 [reported by TroyGoode]
  220. 2.4.5 / 2011-08-19
  221. ==================
  222. * Added support for routes to handle errors. Closes #809
  223. * Added `app.routes.all()`. Closes #803
  224. * Added "basepath" setting to work in conjunction with reverse proxies etc.
  225. * Refactored `Route` to use a single array of callbacks
  226. * Added support for multiple callbacks for `app.param()`. Closes #801
  227. Closes #805
  228. * Changed: removed .call(self) for route callbacks
  229. * Dependency: `qs >= 0.3.1`
  230. * Fixed `res.redirect()` on windows due to `join()` usage. Closes #808
  231. 2.4.4 / 2011-08-05
  232. ==================
  233. * Fixed `res.header()` intention of a set, even when `undefined`
  234. * Fixed `*`, value no longer required
  235. * Fixed `res.send(204)` support. Closes #771
  236. 2.4.3 / 2011-07-14
  237. ==================
  238. * Added docs for `status` option special-case. Closes #739
  239. * Fixed `options.filename`, exposing the view path to template engines
  240. 2.4.2. / 2011-07-06
  241. ==================
  242. * Revert "removed jsonp stripping" for XSS
  243. 2.4.1 / 2011-07-06
  244. ==================
  245. * Added `res.json()` JSONP support. Closes #737
  246. * Added _extending-templates_ example. Closes #730
  247. * Added "strict routing" setting for trailing slashes
  248. * Added support for multiple envs in `app.configure()` calls. Closes #735
  249. * Changed: `res.send()` using `res.json()`
  250. * Changed: when cookie `path === null` don't default it
  251. * Changed; default cookie path to "home" setting. Closes #731
  252. * Removed _pids/logs_ creation from express(1)
  253. 2.4.0 / 2011-06-28
  254. ==================
  255. * Added chainable `res.status(code)`
  256. * Added `res.json()`, an explicit version of `res.send(obj)`
  257. * Added simple web-service example
  258. 2.3.12 / 2011-06-22
  259. ==================
  260. * \#express is now on freenode! come join!
  261. * Added `req.get(field, param)`
  262. * Added links to Japanese documentation, thanks @hideyukisaito!
  263. * Added; the `express(1)` generated app outputs the env
  264. * Added `content-negotiation` example
  265. * Dependency: connect >= 1.5.1 < 2.0.0
  266. * Fixed view layout bug. Closes #720
  267. * Fixed; ignore body on 304. Closes #701
  268. 2.3.11 / 2011-06-04
  269. ==================
  270. * Added `npm test`
  271. * Removed generation of dummy test file from `express(1)`
  272. * Fixed; `express(1)` adds express as a dep
  273. * Fixed; prune on `prepublish`
  274. 2.3.10 / 2011-05-27
  275. ==================
  276. * Added `req.route`, exposing the current route
  277. * Added _package.json_ generation support to `express(1)`
  278. * Fixed call to `app.param()` function for optional params. Closes #682
  279. 2.3.9 / 2011-05-25
  280. ==================
  281. * Fixed bug-ish with `../' in `res.partial()` calls
  282. 2.3.8 / 2011-05-24
  283. ==================
  284. * Fixed `app.options()`
  285. 2.3.7 / 2011-05-23
  286. ==================
  287. * Added route `Collection`, ex: `app.get('/user/:id').remove();`
  288. * Added support for `app.param(fn)` to define param logic
  289. * Removed `app.param()` support for callback with return value
  290. * Removed module.parent check from express(1) generated app. Closes #670
  291. * Refactored router. Closes #639
  292. 2.3.6 / 2011-05-20
  293. ==================
  294. * Changed; using devDependencies instead of git submodules
  295. * Fixed redis session example
  296. * Fixed markdown example
  297. * Fixed view caching, should not be enabled in development
  298. 2.3.5 / 2011-05-20
  299. ==================
  300. * Added export `.view` as alias for `.View`
  301. 2.3.4 / 2011-05-08
  302. ==================
  303. * Added `./examples/say`
  304. * Fixed `res.sendfile()` bug preventing the transfer of files with spaces
  305. 2.3.3 / 2011-05-03
  306. ==================
  307. * Added "case sensitive routes" option.
  308. * Changed; split methods supported per rfc [slaskis]
  309. * Fixed route-specific middleware when using the same callback function several times
  310. 2.3.2 / 2011-04-27
  311. ==================
  312. * Fixed view hints
  313. 2.3.1 / 2011-04-26
  314. ==================
  315. * Added `app.match()` as `app.match.all()`
  316. * Added `app.lookup()` as `app.lookup.all()`
  317. * Added `app.remove()` for `app.remove.all()`
  318. * Added `app.remove.VERB()`
  319. * Fixed template caching collision issue. Closes #644
  320. * Moved router over from connect and started refactor
  321. 2.3.0 / 2011-04-25
  322. ==================
  323. * Added options support to `res.clearCookie()`
  324. * Added `res.helpers()` as alias of `res.locals()`
  325. * Added; json defaults to UTF-8 with `res.send()`. Closes #632. [Daniel * Dependency `connect >= 1.4.0`
  326. * Changed; auto set Content-Type in res.attachement [Aaron Heckmann]
  327. * Renamed "cache views" to "view cache". Closes #628
  328. * Fixed caching of views when using several apps. Closes #637
  329. * Fixed gotcha invoking `app.param()` callbacks once per route middleware.
  330. Closes #638
  331. * Fixed partial lookup precedence. Closes #631
  332. Shaw]
  333. 2.2.2 / 2011-04-12
  334. ==================
  335. * Added second callback support for `res.download()` connection errors
  336. * Fixed `filename` option passing to template engine
  337. 2.2.1 / 2011-04-04
  338. ==================
  339. * Added `layout(path)` helper to change the layout within a view. Closes #610
  340. * Fixed `partial()` collection object support.
  341. Previously only anything with `.length` would work.
  342. When `.length` is present one must still be aware of holes,
  343. however now `{ collection: {foo: 'bar'}}` is valid, exposes
  344. `keyInCollection` and `keysInCollection`.
  345. * Performance improved with better view caching
  346. * Removed `request` and `response` locals
  347. * Changed; errorHandler page title is now `Express` instead of `Connect`
  348. 2.2.0 / 2011-03-30
  349. ==================
  350. * Added `app.lookup.VERB()`, ex `app.lookup.put('/user/:id')`. Closes #606
  351. * Added `app.match.VERB()`, ex `app.match.put('/user/12')`. Closes #606
  352. * Added `app.VERB(path)` as alias of `app.lookup.VERB()`.
  353. * Dependency `connect >= 1.2.0`
  354. 2.1.1 / 2011-03-29
  355. ==================
  356. * Added; expose `err.view` object when failing to locate a view
  357. * Fixed `res.partial()` call `next(err)` when no callback is given [reported by aheckmann]
  358. * Fixed; `res.send(undefined)` responds with 204 [aheckmann]
  359. 2.1.0 / 2011-03-24
  360. ==================
  361. * Added `<root>/_?<name>` partial lookup support. Closes #447
  362. * Added `request`, `response`, and `app` local variables
  363. * Added `settings` local variable, containing the app's settings
  364. * Added `req.flash()` exception if `req.session` is not available
  365. * Added `res.send(bool)` support (json response)
  366. * Fixed stylus example for latest version
  367. * Fixed; wrap try/catch around `res.render()`
  368. 2.0.0 / 2011-03-17
  369. ==================
  370. * Fixed up index view path alternative.
  371. * Changed; `res.locals()` without object returns the locals
  372. 2.0.0rc3 / 2011-03-17
  373. ==================
  374. * Added `res.locals(obj)` to compliment `res.local(key, val)`
  375. * Added `res.partial()` callback support
  376. * Fixed recursive error reporting issue in `res.render()`
  377. 2.0.0rc2 / 2011-03-17
  378. ==================
  379. * Changed; `partial()` "locals" are now optional
  380. * Fixed `SlowBuffer` support. Closes #584 [reported by tyrda01]
  381. * Fixed .filename view engine option [reported by drudge]
  382. * Fixed blog example
  383. * Fixed `{req,res}.app` reference when mounting [Ben Weaver]
  384. 2.0.0rc / 2011-03-14
  385. ==================
  386. * Fixed; expose `HTTPSServer` constructor
  387. * Fixed express(1) default test charset. Closes #579 [reported by secoif]
  388. * Fixed; default charset to utf-8 instead of utf8 for lame IE [reported by NickP]
  389. 2.0.0beta3 / 2011-03-09
  390. ==================
  391. * Added support for `res.contentType()` literal
  392. The original `res.contentType('.json')`,
  393. `res.contentType('application/json')`, and `res.contentType('json')`
  394. will work now.
  395. * Added `res.render()` status option support back
  396. * Added charset option for `res.render()`
  397. * Added `.charset` support (via connect 1.0.4)
  398. * Added view resolution hints when in development and a lookup fails
  399. * Added layout lookup support relative to the page view.
  400. For example while rendering `./views/user/index.jade` if you create
  401. `./views/user/layout.jade` it will be used in favour of the root layout.
  402. * Fixed `res.redirect()`. RFC states absolute url [reported by unlink]
  403. * Fixed; default `res.send()` string charset to utf8
  404. * Removed `Partial` constructor (not currently used)
  405. 2.0.0beta2 / 2011-03-07
  406. ==================
  407. * Added res.render() `.locals` support back to aid in migration process
  408. * Fixed flash example
  409. 2.0.0beta / 2011-03-03
  410. ==================
  411. * Added HTTPS support
  412. * Added `res.cookie()` maxAge support
  413. * Added `req.header()` _Referrer_ / _Referer_ special-case, either works
  414. * Added mount support for `res.redirect()`, now respects the mount-point
  415. * Added `union()` util, taking place of `merge(clone())` combo
  416. * Added stylus support to express(1) generated app
  417. * Added secret to session middleware used in examples and generated app
  418. * Added `res.local(name, val)` for progressive view locals
  419. * Added default param support to `req.param(name, default)`
  420. * Added `app.disabled()` and `app.enabled()`
  421. * Added `app.register()` support for omitting leading ".", either works
  422. * Added `res.partial()`, using the same interface as `partial()` within a view. Closes #539
  423. * Added `app.param()` to map route params to async/sync logic
  424. * Added; aliased `app.helpers()` as `app.locals()`. Closes #481
  425. * Added extname with no leading "." support to `res.contentType()`
  426. * Added `cache views` setting, defaulting to enabled in "production" env
  427. * Added index file partial resolution, eg: partial('user') may try _views/user/index.jade_.
  428. * Added `req.accepts()` support for extensions
  429. * Changed; `res.download()` and `res.sendfile()` now utilize Connect's
  430. static file server `connect.static.send()`.
  431. * Changed; replaced `connect.utils.mime()` with npm _mime_ module
  432. * Changed; allow `req.query` to be pre-defined (via middleware or other parent
  433. * Changed view partial resolution, now relative to parent view
  434. * Changed view engine signature. no longer `engine.render(str, options, callback)`, now `engine.compile(str, options) -> Function`, the returned function accepts `fn(locals)`.
  435. * Fixed `req.param()` bug returning Array.prototype methods. Closes #552
  436. * Fixed; using `Stream#pipe()` instead of `sys.pump()` in `res.sendfile()`
  437. * Fixed; using _qs_ module instead of _querystring_
  438. * Fixed; strip unsafe chars from jsonp callbacks
  439. * Removed "stream threshold" setting
  440. 1.0.8 / 2011-03-01
  441. ==================
  442. * Allow `req.query` to be pre-defined (via middleware or other parent app)
  443. * "connect": ">= 0.5.0 < 1.0.0". Closes #547
  444. * Removed the long deprecated __EXPRESS_ENV__ support
  445. 1.0.7 / 2011-02-07
  446. ==================
  447. * Fixed `render()` setting inheritance.
  448. Mounted apps would not inherit "view engine"
  449. 1.0.6 / 2011-02-07
  450. ==================
  451. * Fixed `view engine` setting bug when period is in dirname
  452. 1.0.5 / 2011-02-05
  453. ==================
  454. * Added secret to generated app `session()` call
  455. 1.0.4 / 2011-02-05
  456. ==================
  457. * Added `qs` dependency to _package.json_
  458. * Fixed namespaced `require()`s for latest connect support
  459. 1.0.3 / 2011-01-13
  460. ==================
  461. * Remove unsafe characters from JSONP callback names [Ryan Grove]
  462. 1.0.2 / 2011-01-10
  463. ==================
  464. * Removed nested require, using `connect.router`
  465. 1.0.1 / 2010-12-29
  466. ==================
  467. * Fixed for middleware stacked via `createServer()`
  468. previously the `foo` middleware passed to `createServer(foo)`
  469. would not have access to Express methods such as `res.send()`
  470. or props like `req.query` etc.
  471. 1.0.0 / 2010-11-16
  472. ==================
  473. * Added; deduce partial object names from the last segment.
  474. For example by default `partial('forum/post', postObject)` will
  475. give you the _post_ object, providing a meaningful default.
  476. * Added http status code string representation to `res.redirect()` body
  477. * Added; `res.redirect()` supporting _text/plain_ and _text/html_ via __Accept__.
  478. * Added `req.is()` to aid in content negotiation
  479. * Added partial local inheritance [suggested by masylum]. Closes #102
  480. providing access to parent template locals.
  481. * Added _-s, --session[s]_ flag to express(1) to add session related middleware
  482. * Added _--template_ flag to express(1) to specify the
  483. template engine to use.
  484. * Added _--css_ flag to express(1) to specify the
  485. stylesheet engine to use (or just plain css by default).
  486. * Added `app.all()` support [thanks aheckmann]
  487. * Added partial direct object support.
  488. You may now `partial('user', user)` providing the "user" local,
  489. vs previously `partial('user', { object: user })`.
  490. * Added _route-separation_ example since many people question ways
  491. to do this with CommonJS modules. Also view the _blog_ example for
  492. an alternative.
  493. * Performance; caching view path derived partial object names
  494. * Fixed partial local inheritance precedence. [reported by Nick Poulden] Closes #454
  495. * Fixed jsonp support; _text/javascript_ as per mailinglist discussion
  496. 1.0.0rc4 / 2010-10-14
  497. ==================
  498. * Added _NODE_ENV_ support, _EXPRESS_ENV_ is deprecated and will be removed in 1.0.0
  499. * Added route-middleware support (very helpful, see the [docs](http://expressjs.com/guide.html#Route-Middleware))
  500. * Added _jsonp callback_ setting to enable/disable jsonp autowrapping [Dav Glass]
  501. * Added callback query check on response.send to autowrap JSON objects for simple webservice implementations [Dav Glass]
  502. * Added `partial()` support for array-like collections. Closes #434
  503. * Added support for swappable querystring parsers
  504. * Added session usage docs. Closes #443
  505. * Added dynamic helper caching. Closes #439 [suggested by maritz]
  506. * Added authentication example
  507. * Added basic Range support to `res.sendfile()` (and `res.download()` etc)
  508. * Changed; `express(1)` generated app using 2 spaces instead of 4
  509. * Default env to "development" again [aheckmann]
  510. * Removed _context_ option is no more, use "scope"
  511. * Fixed; exposing _./support_ libs to examples so they can run without installs
  512. * Fixed mvc example
  513. 1.0.0rc3 / 2010-09-20
  514. ==================
  515. * Added confirmation for `express(1)` app generation. Closes #391
  516. * Added extending of flash formatters via `app.flashFormatters`
  517. * Added flash formatter support. Closes #411
  518. * Added streaming support to `res.sendfile()` using `sys.pump()` when >= "stream threshold"
  519. * Added _stream threshold_ setting for `res.sendfile()`
  520. * Added `res.send()` __HEAD__ support
  521. * Added `res.clearCookie()`
  522. * Added `res.cookie()`
  523. * Added `res.render()` headers option
  524. * Added `res.redirect()` response bodies
  525. * Added `res.render()` status option support. Closes #425 [thanks aheckmann]
  526. * Fixed `res.sendfile()` responding with 403 on malicious path
  527. * Fixed `res.download()` bug; when an error occurs remove _Content-Disposition_
  528. * Fixed; mounted apps settings now inherit from parent app [aheckmann]
  529. * Fixed; stripping Content-Length / Content-Type when 204
  530. * Fixed `res.send()` 204. Closes #419
  531. * Fixed multiple _Set-Cookie_ headers via `res.header()`. Closes #402
  532. * Fixed bug messing with error handlers when `listenFD()` is called instead of `listen()`. [thanks guillermo]
  533. 1.0.0rc2 / 2010-08-17
  534. ==================
  535. * Added `app.register()` for template engine mapping. Closes #390
  536. * Added `res.render()` callback support as second argument (no options)
  537. * Added callback support to `res.download()`
  538. * Added callback support for `res.sendfile()`
  539. * Added support for middleware access via `express.middlewareName()` vs `connect.middlewareName()`
  540. * Added "partials" setting to docs
  541. * Added default expresso tests to `express(1)` generated app. Closes #384
  542. * Fixed `res.sendfile()` error handling, defer via `next()`
  543. * Fixed `res.render()` callback when a layout is used [thanks guillermo]
  544. * Fixed; `make install` creating ~/.node_libraries when not present
  545. * Fixed issue preventing error handlers from being defined anywhere. Closes #387
  546. 1.0.0rc / 2010-07-28
  547. ==================
  548. * Added mounted hook. Closes #369
  549. * Added connect dependency to _package.json_
  550. * Removed "reload views" setting and support code
  551. development env never caches, production always caches.
  552. * Removed _param_ in route callbacks, signature is now
  553. simply (req, res, next), previously (req, res, params, next).
  554. Use _req.params_ for path captures, _req.query_ for GET params.
  555. * Fixed "home" setting
  556. * Fixed middleware/router precedence issue. Closes #366
  557. * Fixed; _configure()_ callbacks called immediately. Closes #368
  558. 1.0.0beta2 / 2010-07-23
  559. ==================
  560. * Added more examples
  561. * Added; exporting `Server` constructor
  562. * Added `Server#helpers()` for view locals
  563. * Added `Server#dynamicHelpers()` for dynamic view locals. Closes #349
  564. * Added support for absolute view paths
  565. * Added; _home_ setting defaults to `Server#route` for mounted apps. Closes #363
  566. * Added Guillermo Rauch to the contributor list
  567. * Added support for "as" for non-collection partials. Closes #341
  568. * Fixed _install.sh_, ensuring _~/.node_libraries_ exists. Closes #362 [thanks jf]
  569. * Fixed `res.render()` exceptions, now passed to `next()` when no callback is given [thanks guillermo]
  570. * Fixed instanceof `Array` checks, now `Array.isArray()`
  571. * Fixed express(1) expansion of public dirs. Closes #348
  572. * Fixed middleware precedence. Closes #345
  573. * Fixed view watcher, now async [thanks aheckmann]
  574. 1.0.0beta / 2010-07-15
  575. ==================
  576. * Re-write
  577. - much faster
  578. - much lighter
  579. - Check [ExpressJS.com](http://expressjs.com) for migration guide and updated docs
  580. 0.14.0 / 2010-06-15
  581. ==================
  582. * Utilize relative requires
  583. * Added Static bufferSize option [aheckmann]
  584. * Fixed caching of view and partial subdirectories [aheckmann]
  585. * Fixed mime.type() comments now that ".ext" is not supported
  586. * Updated haml submodule
  587. * Updated class submodule
  588. * Removed bin/express
  589. 0.13.0 / 2010-06-01
  590. ==================
  591. * Added node v0.1.97 compatibility
  592. * Added support for deleting cookies via Request#cookie('key', null)
  593. * Updated haml submodule
  594. * Fixed not-found page, now using using charset utf-8
  595. * Fixed show-exceptions page, now using using charset utf-8
  596. * Fixed view support due to fs.readFile Buffers
  597. * Changed; mime.type() no longer accepts ".type" due to node extname() changes
  598. 0.12.0 / 2010-05-22
  599. ==================
  600. * Added node v0.1.96 compatibility
  601. * Added view `helpers` export which act as additional local variables
  602. * Updated haml submodule
  603. * Changed ETag; removed inode, modified time only
  604. * Fixed LF to CRLF for setting multiple cookies
  605. * Fixed cookie complation; values are now urlencoded
  606. * Fixed cookies parsing; accepts quoted values and url escaped cookies
  607. 0.11.0 / 2010-05-06
  608. ==================
  609. * Added support for layouts using different engines
  610. - this.render('page.html.haml', { layout: 'super-cool-layout.html.ejs' })
  611. - this.render('page.html.haml', { layout: 'foo' }) // assumes 'foo.html.haml'
  612. - this.render('page.html.haml', { layout: false }) // no layout
  613. * Updated ext submodule
  614. * Updated haml submodule
  615. * Fixed EJS partial support by passing along the context. Issue #307
  616. 0.10.1 / 2010-05-03
  617. ==================
  618. * Fixed binary uploads.
  619. 0.10.0 / 2010-04-30
  620. ==================
  621. * Added charset support via Request#charset (automatically assigned to 'UTF-8' when respond()'s
  622. encoding is set to 'utf8' or 'utf-8'.
  623. * Added "encoding" option to Request#render(). Closes #299
  624. * Added "dump exceptions" setting, which is enabled by default.
  625. * Added simple ejs template engine support
  626. * Added error reponse support for text/plain, application/json. Closes #297
  627. * Added callback function param to Request#error()
  628. * Added Request#sendHead()
  629. * Added Request#stream()
  630. * Added support for Request#respond(304, null) for empty response bodies
  631. * Added ETag support to Request#sendfile()
  632. * Added options to Request#sendfile(), passed to fs.createReadStream()
  633. * Added filename arg to Request#download()
  634. * Performance enhanced due to pre-reversing plugins so that plugins.reverse() is not called on each request
  635. * Performance enhanced by preventing several calls to toLowerCase() in Router#match()
  636. * Changed; Request#sendfile() now streams
  637. * Changed; Renamed Request#halt() to Request#respond(). Closes #289
  638. * Changed; Using sys.inspect() instead of JSON.encode() for error output
  639. * Changed; run() returns the http.Server instance. Closes #298
  640. * Changed; Defaulting Server#host to null (INADDR_ANY)
  641. * Changed; Logger "common" format scale of 0.4f
  642. * Removed Logger "request" format
  643. * Fixed; Catching ENOENT in view caching, preventing error when "views/partials" is not found
  644. * Fixed several issues with http client
  645. * Fixed Logger Content-Length output
  646. * Fixed bug preventing Opera from retaining the generated session id. Closes #292
  647. 0.9.0 / 2010-04-14
  648. ==================
  649. * Added DSL level error() route support
  650. * Added DSL level notFound() route support
  651. * Added Request#error()
  652. * Added Request#notFound()
  653. * Added Request#render() callback function. Closes #258
  654. * Added "max upload size" setting
  655. * Added "magic" variables to collection partials (\_\_index\_\_, \_\_length\_\_, \_\_isFirst\_\_, \_\_isLast\_\_). Closes #254
  656. * Added [haml.js](http://github.com/visionmedia/haml.js) submodule; removed haml-js
  657. * Added callback function support to Request#halt() as 3rd/4th arg
  658. * Added preprocessing of route param wildcards using param(). Closes #251
  659. * Added view partial support (with collections etc)
  660. * Fixed bug preventing falsey params (such as ?page=0). Closes #286
  661. * Fixed setting of multiple cookies. Closes #199
  662. * Changed; view naming convention is now NAME.TYPE.ENGINE (for example page.html.haml)
  663. * Changed; session cookie is now httpOnly
  664. * Changed; Request is no longer global
  665. * Changed; Event is no longer global
  666. * Changed; "sys" module is no longer global
  667. * Changed; moved Request#download to Static plugin where it belongs
  668. * Changed; Request instance created before body parsing. Closes #262
  669. * Changed; Pre-caching views in memory when "cache view contents" is enabled. Closes #253
  670. * Changed; Pre-caching view partials in memory when "cache view partials" is enabled
  671. * Updated support to node --version 0.1.90
  672. * Updated dependencies
  673. * Removed set("session cookie") in favour of use(Session, { cookie: { ... }})
  674. * Removed utils.mixin(); use Object#mergeDeep()
  675. 0.8.0 / 2010-03-19
  676. ==================
  677. * Added coffeescript example app. Closes #242
  678. * Changed; cache api now async friendly. Closes #240
  679. * Removed deprecated 'express/static' support. Use 'express/plugins/static'
  680. 0.7.6 / 2010-03-19
  681. ==================
  682. * Added Request#isXHR. Closes #229
  683. * Added `make install` (for the executable)
  684. * Added `express` executable for setting up simple app templates
  685. * Added "GET /public/*" to Static plugin, defaulting to <root>/public
  686. * Added Static plugin
  687. * Fixed; Request#render() only calls cache.get() once
  688. * Fixed; Namespacing View caches with "view:"
  689. * Fixed; Namespacing Static caches with "static:"
  690. * Fixed; Both example apps now use the Static plugin
  691. * Fixed set("views"). Closes #239
  692. * Fixed missing space for combined log format
  693. * Deprecated Request#sendfile() and 'express/static'
  694. * Removed Server#running
  695. 0.7.5 / 2010-03-16
  696. ==================
  697. * Added Request#flash() support without args, now returns all flashes
  698. * Updated ext submodule
  699. 0.7.4 / 2010-03-16
  700. ==================
  701. * Fixed session reaper
  702. * Changed; class.js replacing js-oo Class implementation (quite a bit faster, no browser cruft)
  703. 0.7.3 / 2010-03-16
  704. ==================
  705. * Added package.json
  706. * Fixed requiring of haml / sass due to kiwi removal
  707. 0.7.2 / 2010-03-16
  708. ==================
  709. * Fixed GIT submodules (HAH!)
  710. 0.7.1 / 2010-03-16
  711. ==================
  712. * Changed; Express now using submodules again until a PM is adopted
  713. * Changed; chat example using millisecond conversions from ext
  714. 0.7.0 / 2010-03-15
  715. ==================
  716. * Added Request#pass() support (finds the next matching route, or the given path)
  717. * Added Logger plugin (default "common" format replaces CommonLogger)
  718. * Removed Profiler plugin
  719. * Removed CommonLogger plugin
  720. 0.6.0 / 2010-03-11
  721. ==================
  722. * Added seed.yml for kiwi package management support
  723. * Added HTTP client query string support when method is GET. Closes #205
  724. * Added support for arbitrary view engines.
  725. For example "foo.engine.html" will now require('engine'),
  726. the exports from this module are cached after the first require().
  727. * Added async plugin support
  728. * Removed usage of RESTful route funcs as http client
  729. get() etc, use http.get() and friends
  730. * Removed custom exceptions
  731. 0.5.0 / 2010-03-10
  732. ==================
  733. * Added ext dependency (library of js extensions)
  734. * Removed extname() / basename() utils. Use path module
  735. * Removed toArray() util. Use arguments.values
  736. * Removed escapeRegexp() util. Use RegExp.escape()
  737. * Removed process.mixin() dependency. Use utils.mixin()
  738. * Removed Collection
  739. * Removed ElementCollection
  740. * Shameless self promotion of ebook "Advanced JavaScript" (http://dev-mag.com) ;)
  741. 0.4.0 / 2010-02-11
  742. ==================
  743. * Added flash() example to sample upload app
  744. * Added high level restful http client module (express/http)
  745. * Changed; RESTful route functions double as HTTP clients. Closes #69
  746. * Changed; throwing error when routes are added at runtime
  747. * Changed; defaulting render() context to the current Request. Closes #197
  748. * Updated haml submodule
  749. 0.3.0 / 2010-02-11
  750. ==================
  751. * Updated haml / sass submodules. Closes #200
  752. * Added flash message support. Closes #64
  753. * Added accepts() now allows multiple args. fixes #117
  754. * Added support for plugins to halt. Closes #189
  755. * Added alternate layout support. Closes #119
  756. * Removed Route#run(). Closes #188
  757. * Fixed broken specs due to use(Cookie) missing
  758. 0.2.1 / 2010-02-05
  759. ==================
  760. * Added "plot" format option for Profiler (for gnuplot processing)
  761. * Added request number to Profiler plugin
  762. * Fixed binary encoding for multi-part file uploads, was previously defaulting to UTF8
  763. * Fixed issue with routes not firing when not files are present. Closes #184
  764. * Fixed process.Promise -> events.Promise
  765. 0.2.0 / 2010-02-03
  766. ==================
  767. * Added parseParam() support for name[] etc. (allows for file inputs with "multiple" attr) Closes #180
  768. * Added Both Cache and Session option "reapInterval" may be "reapEvery". Closes #174
  769. * Added expiration support to cache api with reaper. Closes #133
  770. * Added cache Store.Memory#reap()
  771. * Added Cache; cache api now uses first class Cache instances
  772. * Added abstract session Store. Closes #172
  773. * Changed; cache Memory.Store#get() utilizing Collection
  774. * Renamed MemoryStore -> Store.Memory
  775. * Fixed use() of the same plugin several time will always use latest options. Closes #176
  776. 0.1.0 / 2010-02-03
  777. ==================
  778. * Changed; Hooks (before / after) pass request as arg as well as evaluated in their context
  779. * Updated node support to 0.1.27 Closes #169
  780. * Updated dirname(__filename) -> __dirname
  781. * Updated libxmljs support to v0.2.0
  782. * Added session support with memory store / reaping
  783. * Added quick uid() helper
  784. * Added multi-part upload support
  785. * Added Sass.js support / submodule
  786. * Added production env caching view contents and static files
  787. * Added static file caching. Closes #136
  788. * Added cache plugin with memory stores
  789. * Added support to StaticFile so that it works with non-textual files.
  790. * Removed dirname() helper
  791. * Removed several globals (now their modules must be required)
  792. 0.0.2 / 2010-01-10
  793. ==================
  794. * Added view benchmarks; currently haml vs ejs
  795. * Added Request#attachment() specs. Closes #116
  796. * Added use of node's parseQuery() util. Closes #123
  797. * Added `make init` for submodules
  798. * Updated Haml
  799. * Updated sample chat app to show messages on load
  800. * Updated libxmljs parseString -> parseHtmlString
  801. * Fixed `make init` to work with older versions of git
  802. * Fixed specs can now run independant specs for those who cant build deps. Closes #127
  803. * Fixed issues introduced by the node url module changes. Closes 126.
  804. * Fixed two assertions failing due to Collection#keys() returning strings
  805. * Fixed faulty Collection#toArray() spec due to keys() returning strings
  806. * Fixed `make test` now builds libxmljs.node before testing
  807. 0.0.1 / 2010-01-03
  808. ==================
  809. * Initial release