UNPKG

107 kBMarkdownView Raw
14.16.2 / 2017-10-09
2===================
3
4 * Fix `TypeError` in `res.send` when given `Buffer` and `ETag` header set
5 * perf: skip parsing of entire `X-Forwarded-Proto` header
6
74.16.1 / 2017-09-29
8===================
9
10 * deps: send@0.16.1
11 * deps: serve-static@1.13.1
12 - Fix regression when `root` is incorrectly set to a file
13 - deps: send@0.16.1
14
154.16.0 / 2017-09-28
16===================
17
18 * Add `"json escape"` setting for `res.json` and `res.jsonp`
19 * Add `express.json` and `express.urlencoded` to parse bodies
20 * Add `options` argument to `res.download`
21 * Improve error message when autoloading invalid view engine
22 * Improve error messages when non-function provided as middleware
23 * Skip `Buffer` encoding when not generating ETag for small response
24 * Use `safe-buffer` for improved Buffer API
25 * deps: accepts@~1.3.4
26 - deps: mime-types@~2.1.16
27 * deps: content-type@~1.0.4
28 - perf: remove argument reassignment
29 - perf: skip parameter parsing when no parameters
30 * deps: etag@~1.8.1
31 - perf: replace regular expression with substring
32 * deps: finalhandler@1.1.0
33 - Use `res.headersSent` when available
34 * deps: parseurl@~1.3.2
35 - perf: reduce overhead for full URLs
36 - perf: unroll the "fast-path" `RegExp`
37 * deps: proxy-addr@~2.0.2
38 - Fix trimming leading / trailing OWS in `X-Forwarded-For`
39 - deps: forwarded@~0.1.2
40 - deps: ipaddr.js@1.5.2
41 - perf: reduce overhead when no `X-Forwarded-For` header
42 * deps: qs@6.5.1
43 - Fix parsing & compacting very deep objects
44 * deps: send@0.16.0
45 - Add 70 new types for file extensions
46 - Add `immutable` option
47 - Fix missing `</html>` in default error & redirects
48 - Set charset as "UTF-8" for .js and .json
49 - Use instance methods on steam to check for listeners
50 - deps: mime@1.4.1
51 - perf: improve path validation speed
52 * deps: serve-static@1.13.0
53 - Add 70 new types for file extensions
54 - Add `immutable` option
55 - Set charset as "UTF-8" for .js and .json
56 - deps: send@0.16.0
57 * deps: setprototypeof@1.1.0
58 * deps: utils-merge@1.0.1
59 * deps: vary@~1.1.2
60 - perf: improve header token parsing speed
61 * perf: re-use options object when generating ETags
62 * perf: remove dead `.charset` set in `res.jsonp`
63
644.15.5 / 2017-09-24
65===================
66
67 * deps: debug@2.6.9
68 * deps: finalhandler@~1.0.6
69 - deps: debug@2.6.9
70 - deps: parseurl@~1.3.2
71 * deps: fresh@0.5.2
72 - Fix handling of modified headers with invalid dates
73 - perf: improve ETag match loop
74 - perf: improve `If-None-Match` token parsing
75 * deps: send@0.15.6
76 - Fix handling of modified headers with invalid dates
77 - deps: debug@2.6.9
78 - deps: etag@~1.8.1
79 - deps: fresh@0.5.2
80 - perf: improve `If-Match` token parsing
81 * deps: serve-static@1.12.6
82 - deps: parseurl@~1.3.2
83 - deps: send@0.15.6
84 - perf: improve slash collapsing
85
864.15.4 / 2017-08-06
87===================
88
89 * deps: debug@2.6.8
90 * deps: depd@~1.1.1
91 - Remove unnecessary `Buffer` loading
92 * deps: finalhandler@~1.0.4
93 - deps: debug@2.6.8
94 * deps: proxy-addr@~1.1.5
95 - Fix array argument being altered
96 - deps: ipaddr.js@1.4.0
97 * deps: qs@6.5.0
98 * deps: send@0.15.4
99 - deps: debug@2.6.8
100 - deps: depd@~1.1.1
101 - deps: http-errors@~1.6.2
102 * deps: serve-static@1.12.4
103 - deps: send@0.15.4
104
1054.15.3 / 2017-05-16
106===================
107
108 * Fix error when `res.set` cannot add charset to `Content-Type`
109 * deps: debug@2.6.7
110 - Fix `DEBUG_MAX_ARRAY_LENGTH`
111 - deps: ms@2.0.0
112 * deps: finalhandler@~1.0.3
113 - Fix missing `</html>` in HTML document
114 - deps: debug@2.6.7
115 * deps: proxy-addr@~1.1.4
116 - deps: ipaddr.js@1.3.0
117 * deps: send@0.15.3
118 - deps: debug@2.6.7
119 - deps: ms@2.0.0
120 * deps: serve-static@1.12.3
121 - deps: send@0.15.3
122 * deps: type-is@~1.6.15
123 - deps: mime-types@~2.1.15
124 * deps: vary@~1.1.1
125 - perf: hoist regular expression
126
1274.15.2 / 2017-03-06
128===================
129
130 * deps: qs@6.4.0
131 - Fix regression parsing keys starting with `[`
132
1334.15.1 / 2017-03-05
134===================
135
136 * deps: send@0.15.1
137 - Fix issue when `Date.parse` does not return `NaN` on invalid date
138 - Fix strict violation in broken environments
139 * deps: serve-static@1.12.1
140 - Fix issue when `Date.parse` does not return `NaN` on invalid date
141 - deps: send@0.15.1
142
1434.15.0 / 2017-03-01
144===================
145
146 * Add debug message when loading view engine
147 * Add `next("router")` to exit from router
148 * Fix case where `router.use` skipped requests routes did not
149 * Remove usage of `res._headers` private field
150 - Improves compatibility with Node.js 8 nightly
151 * Skip routing when `req.url` is not set
152 * Use `%o` in path debug to tell types apart
153 * Use `Object.create` to setup request & response prototypes
154 * Use `setprototypeof` module to replace `__proto__` setting
155 * Use `statuses` instead of `http` module for status messages
156 * deps: debug@2.6.1
157 - Allow colors in workers
158 - Deprecated `DEBUG_FD` environment variable set to `3` or higher
159 - Fix error when running under React Native
160 - Use same color for same namespace
161 - deps: ms@0.7.2
162 * deps: etag@~1.8.0
163 - Use SHA1 instead of MD5 for ETag hashing
164 - Works with FIPS 140-2 OpenSSL configuration
165 * deps: finalhandler@~1.0.0
166 - Fix exception when `err` cannot be converted to a string
167 - Fully URL-encode the pathname in the 404
168 - Only include the pathname in the 404 message
169 - Send complete HTML document
170 - Set `Content-Security-Policy: default-src 'self'` header
171 - deps: debug@2.6.1
172 * deps: fresh@0.5.0
173 - Fix false detection of `no-cache` request directive
174 - Fix incorrect result when `If-None-Match` has both `*` and ETags
175 - Fix weak `ETag` matching to match spec
176 - perf: delay reading header values until needed
177 - perf: enable strict mode
178 - perf: hoist regular expressions
179 - perf: remove duplicate conditional
180 - perf: remove unnecessary boolean coercions
181 - perf: skip checking modified time if ETag check failed
182 - perf: skip parsing `If-None-Match` when no `ETag` header
183 - perf: use `Date.parse` instead of `new Date`
184 * deps: qs@6.3.1
185 - Fix array parsing from skipping empty values
186 - Fix compacting nested arrays
187 * deps: send@0.15.0
188 - Fix false detection of `no-cache` request directive
189 - Fix incorrect result when `If-None-Match` has both `*` and ETags
190 - Fix weak `ETag` matching to match spec
191 - Remove usage of `res._headers` private field
192 - Support `If-Match` and `If-Unmodified-Since` headers
193 - Use `res.getHeaderNames()` when available
194 - Use `res.headersSent` when available
195 - deps: debug@2.6.1
196 - deps: etag@~1.8.0
197 - deps: fresh@0.5.0
198 - deps: http-errors@~1.6.1
199 * deps: serve-static@1.12.0
200 - Fix false detection of `no-cache` request directive
201 - Fix incorrect result when `If-None-Match` has both `*` and ETags
202 - Fix weak `ETag` matching to match spec
203 - Remove usage of `res._headers` private field
204 - Send complete HTML document in redirect response
205 - Set default CSP header in redirect response
206 - Support `If-Match` and `If-Unmodified-Since` headers
207 - Use `res.getHeaderNames()` when available
208 - Use `res.headersSent` when available
209 - deps: send@0.15.0
210 * perf: add fast match path for `*` route
211 * perf: improve `req.ips` performance
212
2134.14.1 / 2017-01-28
214===================
215
216 * deps: content-disposition@0.5.2
217 * deps: finalhandler@0.5.1
218 - Fix exception when `err.headers` is not an object
219 - deps: statuses@~1.3.1
220 - perf: hoist regular expressions
221 - perf: remove duplicate validation path
222 * deps: proxy-addr@~1.1.3
223 - deps: ipaddr.js@1.2.0
224 * deps: send@0.14.2
225 - deps: http-errors@~1.5.1
226 - deps: ms@0.7.2
227 - deps: statuses@~1.3.1
228 * deps: serve-static@~1.11.2
229 - deps: send@0.14.2
230 * deps: type-is@~1.6.14
231 - deps: mime-types@~2.1.13
232
2334.14.0 / 2016-06-16
234===================
235
236 * Add `acceptRanges` option to `res.sendFile`/`res.sendfile`
237 * Add `cacheControl` option to `res.sendFile`/`res.sendfile`
238 * Add `options` argument to `req.range`
239 - Includes the `combine` option
240 * Encode URL in `res.location`/`res.redirect` if not already encoded
241 * Fix some redirect handling in `res.sendFile`/`res.sendfile`
242 * Fix Windows absolute path check using forward slashes
243 * Improve error with invalid arguments to `req.get()`
244 * Improve performance for `res.json`/`res.jsonp` in most cases
245 * Improve `Range` header handling in `res.sendFile`/`res.sendfile`
246 * deps: accepts@~1.3.3
247 - Fix including type extensions in parameters in `Accept` parsing
248 - Fix parsing `Accept` parameters with quoted equals
249 - Fix parsing `Accept` parameters with quoted semicolons
250 - Many performance improvments
251 - deps: mime-types@~2.1.11
252 - deps: negotiator@0.6.1
253 * deps: content-type@~1.0.2
254 - perf: enable strict mode
255 * deps: cookie@0.3.1
256 - Add `sameSite` option
257 - Fix cookie `Max-Age` to never be a floating point number
258 - Improve error message when `encode` is not a function
259 - Improve error message when `expires` is not a `Date`
260 - Throw better error for invalid argument to parse
261 - Throw on invalid values provided to `serialize`
262 - perf: enable strict mode
263 - perf: hoist regular expression
264 - perf: use for loop in parse
265 - perf: use string concatination for serialization
266 * deps: finalhandler@0.5.0
267 - Change invalid or non-numeric status code to 500
268 - Overwrite status message to match set status code
269 - Prefer `err.statusCode` if `err.status` is invalid
270 - Set response headers from `err.headers` object
271 - Use `statuses` instead of `http` module for status messages
272 * deps: proxy-addr@~1.1.2
273 - Fix accepting various invalid netmasks
274 - Fix IPv6-mapped IPv4 validation edge cases
275 - IPv4 netmasks must be contingous
276 - IPv6 addresses cannot be used as a netmask
277 - deps: ipaddr.js@1.1.1
278 * deps: qs@6.2.0
279 - Add `decoder` option in `parse` function
280 * deps: range-parser@~1.2.0
281 - Add `combine` option to combine overlapping ranges
282 - Fix incorrectly returning -1 when there is at least one valid range
283 - perf: remove internal function
284 * deps: send@0.14.1
285 - Add `acceptRanges` option
286 - Add `cacheControl` option
287 - Attempt to combine multiple ranges into single range
288 - Correctly inherit from `Stream` class
289 - Fix `Content-Range` header in 416 responses when using `start`/`end` options
290 - Fix `Content-Range` header missing from default 416 responses
291 - Fix redirect error when `path` contains raw non-URL characters
292 - Fix redirect when `path` starts with multiple forward slashes
293 - Ignore non-byte `Range` headers
294 - deps: http-errors@~1.5.0
295 - deps: range-parser@~1.2.0
296 - deps: statuses@~1.3.0
297 - perf: remove argument reassignment
298 * deps: serve-static@~1.11.1
299 - Add `acceptRanges` option
300 - Add `cacheControl` option
301 - Attempt to combine multiple ranges into single range
302 - Fix redirect error when `req.url` contains raw non-URL characters
303 - Ignore non-byte `Range` headers
304 - Use status code 301 for redirects
305 - deps: send@0.14.1
306 * deps: type-is@~1.6.13
307 - Fix type error when given invalid type to match against
308 - deps: mime-types@~2.1.11
309 * deps: vary@~1.1.0
310 - Only accept valid field names in the `field` argument
311 * perf: use strict equality when possible
312
3134.13.4 / 2016-01-21
314===================
315
316 * deps: content-disposition@0.5.1
317 - perf: enable strict mode
318 * deps: cookie@0.1.5
319 - Throw on invalid values provided to `serialize`
320 * deps: depd@~1.1.0
321 - Support web browser loading
322 - perf: enable strict mode
323 * deps: escape-html@~1.0.3
324 - perf: enable strict mode
325 - perf: optimize string replacement
326 - perf: use faster string coercion
327 * deps: finalhandler@0.4.1
328 - deps: escape-html@~1.0.3
329 * deps: merge-descriptors@1.0.1
330 - perf: enable strict mode
331 * deps: methods@~1.1.2
332 - perf: enable strict mode
333 * deps: parseurl@~1.3.1
334 - perf: enable strict mode
335 * deps: proxy-addr@~1.0.10
336 - deps: ipaddr.js@1.0.5
337 - perf: enable strict mode
338 * deps: range-parser@~1.0.3
339 - perf: enable strict mode
340 * deps: send@0.13.1
341 - deps: depd@~1.1.0
342 - deps: destroy@~1.0.4
343 - deps: escape-html@~1.0.3
344 - deps: range-parser@~1.0.3
345 * deps: serve-static@~1.10.2
346 - deps: escape-html@~1.0.3
347 - deps: parseurl@~1.3.0
348 - deps: send@0.13.1
349
3504.13.3 / 2015-08-02
351===================
352
353 * Fix infinite loop condition using `mergeParams: true`
354 * Fix inner numeric indices incorrectly altering parent `req.params`
355
3564.13.2 / 2015-07-31
357===================
358
359 * deps: accepts@~1.2.12
360 - deps: mime-types@~2.1.4
361 * deps: array-flatten@1.1.1
362 - perf: enable strict mode
363 * deps: path-to-regexp@0.1.7
364 - Fix regression with escaped round brackets and matching groups
365 * deps: type-is@~1.6.6
366 - deps: mime-types@~2.1.4
367
3684.13.1 / 2015-07-05
369===================
370
371 * deps: accepts@~1.2.10
372 - deps: mime-types@~2.1.2
373 * deps: qs@4.0.0
374 - Fix dropping parameters like `hasOwnProperty`
375 - Fix various parsing edge cases
376 * deps: type-is@~1.6.4
377 - deps: mime-types@~2.1.2
378 - perf: enable strict mode
379 - perf: remove argument reassignment
380
3814.13.0 / 2015-06-20
382===================
383
384 * Add settings to debug output
385 * Fix `res.format` error when only `default` provided
386 * Fix issue where `next('route')` in `app.param` would incorrectly skip values
387 * Fix hiding platform issues with `decodeURIComponent`
388 - Only `URIError`s are a 400
389 * Fix using `*` before params in routes
390 * Fix using capture groups before params in routes
391 * Simplify `res.cookie` to call `res.append`
392 * Use `array-flatten` module for flattening arrays
393 * deps: accepts@~1.2.9
394 - deps: mime-types@~2.1.1
395 - perf: avoid argument reassignment & argument slice
396 - perf: avoid negotiator recursive construction
397 - perf: enable strict mode
398 - perf: remove unnecessary bitwise operator
399 * deps: cookie@0.1.3
400 - perf: deduce the scope of try-catch deopt
401 - perf: remove argument reassignments
402 * deps: escape-html@1.0.2
403 * deps: etag@~1.7.0
404 - Always include entity length in ETags for hash length extensions
405 - Generate non-Stats ETags using MD5 only (no longer CRC32)
406 - Improve stat performance by removing hashing
407 - Improve support for JXcore
408 - Remove base64 padding in ETags to shorten
409 - Support "fake" stats objects in environments without fs
410 - Use MD5 instead of MD4 in weak ETags over 1KB
411 * deps: finalhandler@0.4.0
412 - Fix a false-positive when unpiping in Node.js 0.8
413 - Support `statusCode` property on `Error` objects
414 - Use `unpipe` module for unpiping requests
415 - deps: escape-html@1.0.2
416 - deps: on-finished@~2.3.0
417 - perf: enable strict mode
418 - perf: remove argument reassignment
419 * deps: fresh@0.3.0
420 - Add weak `ETag` matching support
421 * deps: on-finished@~2.3.0
422 - Add defined behavior for HTTP `CONNECT` requests
423 - Add defined behavior for HTTP `Upgrade` requests
424 - deps: ee-first@1.1.1
425 * deps: path-to-regexp@0.1.6
426 * deps: send@0.13.0
427 - Allow Node.js HTTP server to set `Date` response header
428 - Fix incorrectly removing `Content-Location` on 304 response
429 - Improve the default redirect response headers
430 - Send appropriate headers on default error response
431 - Use `http-errors` for standard emitted errors
432 - Use `statuses` instead of `http` module for status messages
433 - deps: escape-html@1.0.2
434 - deps: etag@~1.7.0
435 - deps: fresh@0.3.0
436 - deps: on-finished@~2.3.0
437 - perf: enable strict mode
438 - perf: remove unnecessary array allocations
439 * deps: serve-static@~1.10.0
440 - Add `fallthrough` option
441 - Fix reading options from options prototype
442 - Improve the default redirect response headers
443 - Malformed URLs now `next()` instead of 400
444 - deps: escape-html@1.0.2
445 - deps: send@0.13.0
446 - perf: enable strict mode
447 - perf: remove argument reassignment
448 * deps: type-is@~1.6.3
449 - deps: mime-types@~2.1.1
450 - perf: reduce try block size
451 - perf: remove bitwise operations
452 * perf: enable strict mode
453 * perf: isolate `app.render` try block
454 * perf: remove argument reassignments in application
455 * perf: remove argument reassignments in request prototype
456 * perf: remove argument reassignments in response prototype
457 * perf: remove argument reassignments in routing
458 * perf: remove argument reassignments in `View`
459 * perf: skip attempting to decode zero length string
460 * perf: use saved reference to `http.STATUS_CODES`
461
4624.12.4 / 2015-05-17
463===================
464
465 * deps: accepts@~1.2.7
466 - deps: mime-types@~2.0.11
467 - deps: negotiator@0.5.3
468 * deps: debug@~2.2.0
469 - deps: ms@0.7.1
470 * deps: depd@~1.0.1
471 * deps: etag@~1.6.0
472 - Improve support for JXcore
473 - Support "fake" stats objects in environments without `fs`
474 * deps: finalhandler@0.3.6
475 - deps: debug@~2.2.0
476 - deps: on-finished@~2.2.1
477 * deps: on-finished@~2.2.1
478 - Fix `isFinished(req)` when data buffered
479 * deps: proxy-addr@~1.0.8
480 - deps: ipaddr.js@1.0.1
481 * deps: qs@2.4.2
482 - Fix allowing parameters like `constructor`
483 * deps: send@0.12.3
484 - deps: debug@~2.2.0
485 - deps: depd@~1.0.1
486 - deps: etag@~1.6.0
487 - deps: ms@0.7.1
488 - deps: on-finished@~2.2.1
489 * deps: serve-static@~1.9.3
490 - deps: send@0.12.3
491 * deps: type-is@~1.6.2
492 - deps: mime-types@~2.0.11
493
4944.12.3 / 2015-03-17
495===================
496
497 * deps: accepts@~1.2.5
498 - deps: mime-types@~2.0.10
499 * deps: debug@~2.1.3
500 - Fix high intensity foreground color for bold
501 - deps: ms@0.7.0
502 * deps: finalhandler@0.3.4
503 - deps: debug@~2.1.3
504 * deps: proxy-addr@~1.0.7
505 - deps: ipaddr.js@0.1.9
506 * deps: qs@2.4.1
507 - Fix error when parameter `hasOwnProperty` is present
508 * deps: send@0.12.2
509 - Throw errors early for invalid `extensions` or `index` options
510 - deps: debug@~2.1.3
511 * deps: serve-static@~1.9.2
512 - deps: send@0.12.2
513 * deps: type-is@~1.6.1
514 - deps: mime-types@~2.0.10
515
5164.12.2 / 2015-03-02
517===================
518
519 * Fix regression where `"Request aborted"` is logged using `res.sendFile`
520
5214.12.1 / 2015-03-01
522===================
523
524 * Fix constructing application with non-configurable prototype properties
525 * Fix `ECONNRESET` errors from `res.sendFile` usage
526 * Fix `req.host` when using "trust proxy" hops count
527 * Fix `req.protocol`/`req.secure` when using "trust proxy" hops count
528 * Fix wrong `code` on aborted connections from `res.sendFile`
529 * deps: merge-descriptors@1.0.0
530
5314.12.0 / 2015-02-23
532===================
533
534 * Fix `"trust proxy"` setting to inherit when app is mounted
535 * Generate `ETag`s for all request responses
536 - No longer restricted to only responses for `GET` and `HEAD` requests
537 * Use `content-type` to parse `Content-Type` headers
538 * deps: accepts@~1.2.4
539 - Fix preference sorting to be stable for long acceptable lists
540 - deps: mime-types@~2.0.9
541 - deps: negotiator@0.5.1
542 * deps: cookie-signature@1.0.6
543 * deps: send@0.12.1
544 - Always read the stat size from the file
545 - Fix mutating passed-in `options`
546 - deps: mime@1.3.4
547 * deps: serve-static@~1.9.1
548 - deps: send@0.12.1
549 * deps: type-is@~1.6.0
550 - fix argument reassignment
551 - fix false-positives in `hasBody` `Transfer-Encoding` check
552 - support wildcard for both type and subtype (`*/*`)
553 - deps: mime-types@~2.0.9
554
5554.11.2 / 2015-02-01
556===================
557
558 * Fix `res.redirect` double-calling `res.end` for `HEAD` requests
559 * deps: accepts@~1.2.3
560 - deps: mime-types@~2.0.8
561 * deps: proxy-addr@~1.0.6
562 - deps: ipaddr.js@0.1.8
563 * deps: type-is@~1.5.6
564 - deps: mime-types@~2.0.8
565
5664.11.1 / 2015-01-20
567===================
568
569 * deps: send@0.11.1
570 - Fix root path disclosure
571 * deps: serve-static@~1.8.1
572 - Fix redirect loop in Node.js 0.11.14
573 - Fix root path disclosure
574 - deps: send@0.11.1
575
5764.11.0 / 2015-01-13
577===================
578
579 * Add `res.append(field, val)` to append headers
580 * Deprecate leading `:` in `name` for `app.param(name, fn)`
581 * Deprecate `req.param()` -- use `req.params`, `req.body`, or `req.query` instead
582 * Deprecate `app.param(fn)`
583 * Fix `OPTIONS` responses to include the `HEAD` method properly
584 * Fix `res.sendFile` not always detecting aborted connection
585 * Match routes iteratively to prevent stack overflows
586 * deps: accepts@~1.2.2
587 - deps: mime-types@~2.0.7
588 - deps: negotiator@0.5.0
589 * deps: send@0.11.0
590 - deps: debug@~2.1.1
591 - deps: etag@~1.5.1
592 - deps: ms@0.7.0
593 - deps: on-finished@~2.2.0
594 * deps: serve-static@~1.8.0
595 - deps: send@0.11.0
596
5974.10.8 / 2015-01-13
598===================
599
600 * Fix crash from error within `OPTIONS` response handler
601 * deps: proxy-addr@~1.0.5
602 - deps: ipaddr.js@0.1.6
603
6044.10.7 / 2015-01-04
605===================
606
607 * Fix `Allow` header for `OPTIONS` to not contain duplicate methods
608 * Fix incorrect "Request aborted" for `res.sendFile` when `HEAD` or 304
609 * deps: debug@~2.1.1
610 * deps: finalhandler@0.3.3
611 - deps: debug@~2.1.1
612 - deps: on-finished@~2.2.0
613 * deps: methods@~1.1.1
614 * deps: on-finished@~2.2.0
615 * deps: serve-static@~1.7.2
616 - Fix potential open redirect when mounted at root
617 * deps: type-is@~1.5.5
618 - deps: mime-types@~2.0.7
619
6204.10.6 / 2014-12-12
621===================
622
623 * Fix exception in `req.fresh`/`req.stale` without response headers
624
6254.10.5 / 2014-12-10
626===================
627
628 * Fix `res.send` double-calling `res.end` for `HEAD` requests
629 * deps: accepts@~1.1.4
630 - deps: mime-types@~2.0.4
631 * deps: type-is@~1.5.4
632 - deps: mime-types@~2.0.4
633
6344.10.4 / 2014-11-24
635===================
636
637 * Fix `res.sendfile` logging standard write errors
638
6394.10.3 / 2014-11-23
640===================
641
642 * Fix `res.sendFile` logging standard write errors
643 * deps: etag@~1.5.1
644 * deps: proxy-addr@~1.0.4
645 - deps: ipaddr.js@0.1.5
646 * deps: qs@2.3.3
647 - Fix `arrayLimit` behavior
648
6494.10.2 / 2014-11-09
650===================
651
652 * Correctly invoke async router callback asynchronously
653 * deps: accepts@~1.1.3
654 - deps: mime-types@~2.0.3
655 * deps: type-is@~1.5.3
656 - deps: mime-types@~2.0.3
657
6584.10.1 / 2014-10-28
659===================
660
661 * Fix handling of URLs containing `://` in the path
662 * deps: qs@2.3.2
663 - Fix parsing of mixed objects and values
664
6654.10.0 / 2014-10-23
666===================
667
668 * Add support for `app.set('views', array)`
669 - Views are looked up in sequence in array of directories
670 * Fix `res.send(status)` to mention `res.sendStatus(status)`
671 * Fix handling of invalid empty URLs
672 * Use `content-disposition` module for `res.attachment`/`res.download`
673 - Sends standards-compliant `Content-Disposition` header
674 - Full Unicode support
675 * Use `path.resolve` in view lookup
676 * deps: debug@~2.1.0
677 - Implement `DEBUG_FD` env variable support
678 * deps: depd@~1.0.0
679 * deps: etag@~1.5.0
680 - Improve string performance
681 - Slightly improve speed for weak ETags over 1KB
682 * deps: finalhandler@0.3.2
683 - Terminate in progress response only on error
684 - Use `on-finished` to determine request status
685 - deps: debug@~2.1.0
686 - deps: on-finished@~2.1.1
687 * deps: on-finished@~2.1.1
688 - Fix handling of pipelined requests
689 * deps: qs@2.3.0
690 - Fix parsing of mixed implicit and explicit arrays
691 * deps: send@0.10.1
692 - deps: debug@~2.1.0
693 - deps: depd@~1.0.0
694 - deps: etag@~1.5.0
695 - deps: on-finished@~2.1.1
696 * deps: serve-static@~1.7.1
697 - deps: send@0.10.1
698
6994.9.8 / 2014-10-17
700==================
701
702 * Fix `res.redirect` body when redirect status specified
703 * deps: accepts@~1.1.2
704 - Fix error when media type has invalid parameter
705 - deps: negotiator@0.4.9
706
7074.9.7 / 2014-10-10
708==================
709
710 * Fix using same param name in array of paths
711
7124.9.6 / 2014-10-08
713==================
714
715 * deps: accepts@~1.1.1
716 - deps: mime-types@~2.0.2
717 - deps: negotiator@0.4.8
718 * deps: serve-static@~1.6.4
719 - Fix redirect loop when index file serving disabled
720 * deps: type-is@~1.5.2
721 - deps: mime-types@~2.0.2
722
7234.9.5 / 2014-09-24
724==================
725
726 * deps: etag@~1.4.0
727 * deps: proxy-addr@~1.0.3
728 - Use `forwarded` npm module
729 * deps: send@0.9.3
730 - deps: etag@~1.4.0
731 * deps: serve-static@~1.6.3
732 - deps: send@0.9.3
733
7344.9.4 / 2014-09-19
735==================
736
737 * deps: qs@2.2.4
738 - Fix issue with object keys starting with numbers truncated
739
7404.9.3 / 2014-09-18
741==================
742
743 * deps: proxy-addr@~1.0.2
744 - Fix a global leak when multiple subnets are trusted
745 - deps: ipaddr.js@0.1.3
746
7474.9.2 / 2014-09-17
748==================
749
750 * Fix regression for empty string `path` in `app.use`
751 * Fix `router.use` to accept array of middleware without path
752 * Improve error message for bad `app.use` arguments
753
7544.9.1 / 2014-09-16
755==================
756
757 * Fix `app.use` to accept array of middleware without path
758 * deps: depd@0.4.5
759 * deps: etag@~1.3.1
760 * deps: send@0.9.2
761 - deps: depd@0.4.5
762 - deps: etag@~1.3.1
763 - deps: range-parser@~1.0.2
764 * deps: serve-static@~1.6.2
765 - deps: send@0.9.2
766
7674.9.0 / 2014-09-08
768==================
769
770 * Add `res.sendStatus`
771 * Invoke callback for sendfile when client aborts
772 - Applies to `res.sendFile`, `res.sendfile`, and `res.download`
773 - `err` will be populated with request aborted error
774 * Support IP address host in `req.subdomains`
775 * Use `etag` to generate `ETag` headers
776 * deps: accepts@~1.1.0
777 - update `mime-types`
778 * deps: cookie-signature@1.0.5
779 * deps: debug@~2.0.0
780 * deps: finalhandler@0.2.0
781 - Set `X-Content-Type-Options: nosniff` header
782 - deps: debug@~2.0.0
783 * deps: fresh@0.2.4
784 * deps: media-typer@0.3.0
785 - Throw error when parameter format invalid on parse
786 * deps: qs@2.2.3
787 - Fix issue where first empty value in array is discarded
788 * deps: range-parser@~1.0.2
789 * deps: send@0.9.1
790 - Add `lastModified` option
791 - Use `etag` to generate `ETag` header
792 - deps: debug@~2.0.0
793 - deps: fresh@0.2.4
794 * deps: serve-static@~1.6.1
795 - Add `lastModified` option
796 - deps: send@0.9.1
797 * deps: type-is@~1.5.1
798 - fix `hasbody` to be true for `content-length: 0`
799 - deps: media-typer@0.3.0
800 - deps: mime-types@~2.0.1
801 * deps: vary@~1.0.0
802 - Accept valid `Vary` header string as `field`
803
8044.8.8 / 2014-09-04
805==================
806
807 * deps: send@0.8.5
808 - Fix a path traversal issue when using `root`
809 - Fix malicious path detection for empty string path
810 * deps: serve-static@~1.5.4
811 - deps: send@0.8.5
812
8134.8.7 / 2014-08-29
814==================
815
816 * deps: qs@2.2.2
817 - Remove unnecessary cloning
818
8194.8.6 / 2014-08-27
820==================
821
822 * deps: qs@2.2.0
823 - Array parsing fix
824 - Performance improvements
825
8264.8.5 / 2014-08-18
827==================
828
829 * deps: send@0.8.3
830 - deps: destroy@1.0.3
831 - deps: on-finished@2.1.0
832 * deps: serve-static@~1.5.3
833 - deps: send@0.8.3
834
8354.8.4 / 2014-08-14
836==================
837
838 * deps: qs@1.2.2
839 * deps: send@0.8.2
840 - Work around `fd` leak in Node.js 0.10 for `fs.ReadStream`
841 * deps: serve-static@~1.5.2
842 - deps: send@0.8.2
843
8444.8.3 / 2014-08-10
845==================
846
847 * deps: parseurl@~1.3.0
848 * deps: qs@1.2.1
849 * deps: serve-static@~1.5.1
850 - Fix parsing of weird `req.originalUrl` values
851 - deps: parseurl@~1.3.0
852 - deps: utils-merge@1.0.0
853
8544.8.2 / 2014-08-07
855==================
856
857 * deps: qs@1.2.0
858 - Fix parsing array of objects
859
8604.8.1 / 2014-08-06
861==================
862
863 * fix incorrect deprecation warnings on `res.download`
864 * deps: qs@1.1.0
865 - Accept urlencoded square brackets
866 - Accept empty values in implicit array notation
867
8684.8.0 / 2014-08-05
869==================
870
871 * add `res.sendFile`
872 - accepts a file system path instead of a URL
873 - requires an absolute path or `root` option specified
874 * deprecate `res.sendfile` -- use `res.sendFile` instead
875 * support mounted app as any argument to `app.use()`
876 * deps: qs@1.0.2
877 - Complete rewrite
878 - Limits array length to 20
879 - Limits object depth to 5
880 - Limits parameters to 1,000
881 * deps: send@0.8.1
882 - Add `extensions` option
883 * deps: serve-static@~1.5.0
884 - Add `extensions` option
885 - deps: send@0.8.1
886
8874.7.4 / 2014-08-04
888==================
889
890 * fix `res.sendfile` regression for serving directory index files
891 * deps: send@0.7.4
892 - Fix incorrect 403 on Windows and Node.js 0.11
893 - Fix serving index files without root dir
894 * deps: serve-static@~1.4.4
895 - deps: send@0.7.4
896
8974.7.3 / 2014-08-04
898==================
899
900 * deps: send@0.7.3
901 - Fix incorrect 403 on Windows and Node.js 0.11
902 * deps: serve-static@~1.4.3
903 - Fix incorrect 403 on Windows and Node.js 0.11
904 - deps: send@0.7.3
905
9064.7.2 / 2014-07-27
907==================
908
909 * deps: depd@0.4.4
910 - Work-around v8 generating empty stack traces
911 * deps: send@0.7.2
912 - deps: depd@0.4.4
913 * deps: serve-static@~1.4.2
914
9154.7.1 / 2014-07-26
916==================
917
918 * deps: depd@0.4.3
919 - Fix exception when global `Error.stackTraceLimit` is too low
920 * deps: send@0.7.1
921 - deps: depd@0.4.3
922 * deps: serve-static@~1.4.1
923
9244.7.0 / 2014-07-25
925==================
926
927 * fix `req.protocol` for proxy-direct connections
928 * configurable query parser with `app.set('query parser', parser)`
929 - `app.set('query parser', 'extended')` parse with "qs" module
930 - `app.set('query parser', 'simple')` parse with "querystring" core module
931 - `app.set('query parser', false)` disable query string parsing
932 - `app.set('query parser', true)` enable simple parsing
933 * deprecate `res.json(status, obj)` -- use `res.status(status).json(obj)` instead
934 * deprecate `res.jsonp(status, obj)` -- use `res.status(status).jsonp(obj)` instead
935 * deprecate `res.send(status, body)` -- use `res.status(status).send(body)` instead
936 * deps: debug@1.0.4
937 * deps: depd@0.4.2
938 - Add `TRACE_DEPRECATION` environment variable
939 - Remove non-standard grey color from color output
940 - Support `--no-deprecation` argument
941 - Support `--trace-deprecation` argument
942 * deps: finalhandler@0.1.0
943 - Respond after request fully read
944 - deps: debug@1.0.4
945 * deps: parseurl@~1.2.0
946 - Cache URLs based on original value
947 - Remove no-longer-needed URL mis-parse work-around
948 - Simplify the "fast-path" `RegExp`
949 * deps: send@0.7.0
950 - Add `dotfiles` option
951 - Cap `maxAge` value to 1 year
952 - deps: debug@1.0.4
953 - deps: depd@0.4.2
954 * deps: serve-static@~1.4.0
955 - deps: parseurl@~1.2.0
956 - deps: send@0.7.0
957 * perf: prevent multiple `Buffer` creation in `res.send`
958
9594.6.1 / 2014-07-12
960==================
961
962 * fix `subapp.mountpath` regression for `app.use(subapp)`
963
9644.6.0 / 2014-07-11
965==================
966
967 * accept multiple callbacks to `app.use()`
968 * add explicit "Rosetta Flash JSONP abuse" protection
969 - previous versions are not vulnerable; this is just explicit protection
970 * catch errors in multiple `req.param(name, fn)` handlers
971 * deprecate `res.redirect(url, status)` -- use `res.redirect(status, url)` instead
972 * fix `res.send(status, num)` to send `num` as json (not error)
973 * remove unnecessary escaping when `res.jsonp` returns JSON response
974 * support non-string `path` in `app.use(path, fn)`
975 - supports array of paths
976 - supports `RegExp`
977 * router: fix optimization on router exit
978 * router: refactor location of `try` blocks
979 * router: speed up standard `app.use(fn)`
980 * deps: debug@1.0.3
981 - Add support for multiple wildcards in namespaces
982 * deps: finalhandler@0.0.3
983 - deps: debug@1.0.3
984 * deps: methods@1.1.0
985 - add `CONNECT`
986 * deps: parseurl@~1.1.3
987 - faster parsing of href-only URLs
988 * deps: path-to-regexp@0.1.3
989 * deps: send@0.6.0
990 - deps: debug@1.0.3
991 * deps: serve-static@~1.3.2
992 - deps: parseurl@~1.1.3
993 - deps: send@0.6.0
994 * perf: fix arguments reassign deopt in some `res` methods
995
9964.5.1 / 2014-07-06
997==================
998
999 * fix routing regression when altering `req.method`
1000
10014.5.0 / 2014-07-04
1002==================
1003
1004 * add deprecation message to non-plural `req.accepts*`
1005 * add deprecation message to `res.send(body, status)`
1006 * add deprecation message to `res.vary()`
1007 * add `headers` option to `res.sendfile`
1008 - use to set headers on successful file transfer
1009 * add `mergeParams` option to `Router`
1010 - merges `req.params` from parent routes
1011 * add `req.hostname` -- correct name for what `req.host` returns
1012 * deprecate things with `depd` module
1013 * deprecate `req.host` -- use `req.hostname` instead
1014 * fix behavior when handling request without routes
1015 * fix handling when `route.all` is only route
1016 * invoke `router.param()` only when route matches
1017 * restore `req.params` after invoking router
1018 * use `finalhandler` for final response handling
1019 * use `media-typer` to alter content-type charset
1020 * deps: accepts@~1.0.7
1021 * deps: send@0.5.0
1022 - Accept string for `maxage` (converted by `ms`)
1023 - Include link in default redirect response
1024 * deps: serve-static@~1.3.0
1025 - Accept string for `maxAge` (converted by `ms`)
1026 - Add `setHeaders` option
1027 - Include HTML link in redirect response
1028 - deps: send@0.5.0
1029 * deps: type-is@~1.3.2
1030
10314.4.5 / 2014-06-26
1032==================
1033
1034 * deps: cookie-signature@1.0.4
1035 - fix for timing attacks
1036
10374.4.4 / 2014-06-20
1038==================
1039
1040 * fix `res.attachment` Unicode filenames in Safari
1041 * fix "trim prefix" debug message in `express:router`
1042 * deps: accepts@~1.0.5
1043 * deps: buffer-crc32@0.2.3
1044
10454.4.3 / 2014-06-11
1046==================
1047
1048 * fix persistence of modified `req.params[name]` from `app.param()`
1049 * deps: accepts@1.0.3
1050 - deps: negotiator@0.4.6
1051 * deps: debug@1.0.2
1052 * deps: send@0.4.3
1053 - Do not throw un-catchable error on file open race condition
1054 - Use `escape-html` for HTML escaping
1055 - deps: debug@1.0.2
1056 - deps: finished@1.2.2
1057 - deps: fresh@0.2.2
1058 * deps: serve-static@1.2.3
1059 - Do not throw un-catchable error on file open race condition
1060 - deps: send@0.4.3
1061
10624.4.2 / 2014-06-09
1063==================
1064
1065 * fix catching errors from top-level handlers
1066 * use `vary` module for `res.vary`
1067 * deps: debug@1.0.1
1068 * deps: proxy-addr@1.0.1
1069 * deps: send@0.4.2
1070 - fix "event emitter leak" warnings
1071 - deps: debug@1.0.1
1072 - deps: finished@1.2.1
1073 * deps: serve-static@1.2.2
1074 - fix "event emitter leak" warnings
1075 - deps: send@0.4.2
1076 * deps: type-is@1.2.1
1077
10784.4.1 / 2014-06-02
1079==================
1080
1081 * deps: methods@1.0.1
1082 * deps: send@0.4.1
1083 - Send `max-age` in `Cache-Control` in correct format
1084 * deps: serve-static@1.2.1
1085 - use `escape-html` for escaping
1086 - deps: send@0.4.1
1087
10884.4.0 / 2014-05-30
1089==================
1090
1091 * custom etag control with `app.set('etag', val)`
1092 - `app.set('etag', function(body, encoding){ return '"etag"' })` custom etag generation
1093 - `app.set('etag', 'weak')` weak tag
1094 - `app.set('etag', 'strong')` strong etag
1095 - `app.set('etag', false)` turn off
1096 - `app.set('etag', true)` standard etag
1097 * mark `res.send` ETag as weak and reduce collisions
1098 * update accepts to 1.0.2
1099 - Fix interpretation when header not in request
1100 * update send to 0.4.0
1101 - Calculate ETag with md5 for reduced collisions
1102 - Ignore stream errors after request ends
1103 - deps: debug@0.8.1
1104 * update serve-static to 1.2.0
1105 - Calculate ETag with md5 for reduced collisions
1106 - Ignore stream errors after request ends
1107 - deps: send@0.4.0
1108
11094.3.2 / 2014-05-28
1110==================
1111
1112 * fix handling of errors from `router.param()` callbacks
1113
11144.3.1 / 2014-05-23
1115==================
1116
1117 * revert "fix behavior of multiple `app.VERB` for the same path"
1118 - this caused a regression in the order of route execution
1119
11204.3.0 / 2014-05-21
1121==================
1122
1123 * add `req.baseUrl` to access the path stripped from `req.url` in routes
1124 * fix behavior of multiple `app.VERB` for the same path
1125 * fix issue routing requests among sub routers
1126 * invoke `router.param()` only when necessary instead of every match
1127 * proper proxy trust with `app.set('trust proxy', trust)`
1128 - `app.set('trust proxy', 1)` trust first hop
1129 - `app.set('trust proxy', 'loopback')` trust loopback addresses
1130 - `app.set('trust proxy', '10.0.0.1')` trust single IP
1131 - `app.set('trust proxy', '10.0.0.1/16')` trust subnet
1132 - `app.set('trust proxy', '10.0.0.1, 10.0.0.2')` trust list
1133 - `app.set('trust proxy', false)` turn off
1134 - `app.set('trust proxy', true)` trust everything
1135 * set proper `charset` in `Content-Type` for `res.send`
1136 * update type-is to 1.2.0
1137 - support suffix matching
1138
11394.2.0 / 2014-05-11
1140==================
1141
1142 * deprecate `app.del()` -- use `app.delete()` instead
1143 * deprecate `res.json(obj, status)` -- use `res.json(status, obj)` instead
1144 - the edge-case `res.json(status, num)` requires `res.status(status).json(num)`
1145 * deprecate `res.jsonp(obj, status)` -- use `res.jsonp(status, obj)` instead
1146 - the edge-case `res.jsonp(status, num)` requires `res.status(status).jsonp(num)`
1147 * fix `req.next` when inside router instance
1148 * include `ETag` header in `HEAD` requests
1149 * keep previous `Content-Type` for `res.jsonp`
1150 * support PURGE method
1151 - add `app.purge`
1152 - add `router.purge`
1153 - include PURGE in `app.all`
1154 * update debug to 0.8.0
1155 - add `enable()` method
1156 - change from stderr to stdout
1157 * update methods to 1.0.0
1158 - add PURGE
1159
11604.1.2 / 2014-05-08
1161==================
1162
1163 * fix `req.host` for IPv6 literals
1164 * fix `res.jsonp` error if callback param is object
1165
11664.1.1 / 2014-04-27
1167==================
1168
1169 * fix package.json to reflect supported node version
1170
11714.1.0 / 2014-04-24
1172==================
1173
1174 * pass options from `res.sendfile` to `send`
1175 * preserve casing of headers in `res.header` and `res.set`
1176 * support unicode file names in `res.attachment` and `res.download`
1177 * update accepts to 1.0.1
1178 - deps: negotiator@0.4.0
1179 * update cookie to 0.1.2
1180 - Fix for maxAge == 0
1181 - made compat with expires field
1182 * update send to 0.3.0
1183 - Accept API options in options object
1184 - Coerce option types
1185 - Control whether to generate etags
1186 - Default directory access to 403 when index disabled
1187 - Fix sending files with dots without root set
1188 - Include file path in etag
1189 - Make "Can't set headers after they are sent." catchable
1190 - Send full entity-body for multi range requests
1191 - Set etags to "weak"
1192 - Support "If-Range" header
1193 - Support multiple index paths
1194 - deps: mime@1.2.11
1195 * update serve-static to 1.1.0
1196 - Accept options directly to `send` module
1197 - Resolve relative paths at middleware setup
1198 - Use parseurl to parse the URL from request
1199 - deps: send@0.3.0
1200 * update type-is to 1.1.0
1201 - add non-array values support
1202 - add `multipart` as a shorthand
1203
12044.0.0 / 2014-04-09
1205==================
1206
1207 * remove:
1208 - node 0.8 support
1209 - connect and connect's patches except for charset handling
1210 - express(1) - moved to [express-generator](https://github.com/expressjs/generator)
1211 - `express.createServer()` - it has been deprecated for a long time. Use `express()`
1212 - `app.configure` - use logic in your own app code
1213 - `app.router` - is removed
1214 - `req.auth` - use `basic-auth` instead
1215 - `req.accepted*` - use `req.accepts*()` instead
1216 - `res.location` - relative URL resolution is removed
1217 - `res.charset` - include the charset in the content type when using `res.set()`
1218 - all bundled middleware except `static`
1219 * change:
1220 - `app.route` -> `app.mountpath` when mounting an express app in another express app
1221 - `json spaces` no longer enabled by default in development
1222 - `req.accepts*` -> `req.accepts*s` - i.e. `req.acceptsEncoding` -> `req.acceptsEncodings`
1223 - `req.params` is now an object instead of an array
1224 - `res.locals` is no longer a function. It is a plain js object. Treat it as such.
1225 - `res.headerSent` -> `res.headersSent` to match node.js ServerResponse object
1226 * refactor:
1227 - `req.accepts*` with [accepts](https://github.com/expressjs/accepts)
1228 - `req.is` with [type-is](https://github.com/expressjs/type-is)
1229 - [path-to-regexp](https://github.com/component/path-to-regexp)
1230 * add:
1231 - `app.router()` - returns the app Router instance
1232 - `app.route()` - Proxy to the app's `Router#route()` method to create a new route
1233 - Router & Route - public API
1234
12353.21.2 / 2015-07-31
1236===================
1237
1238 * deps: connect@2.30.2
1239 - deps: body-parser@~1.13.3
1240 - deps: compression@~1.5.2
1241 - deps: errorhandler@~1.4.2
1242 - deps: method-override@~2.3.5
1243 - deps: serve-index@~1.7.2
1244 - deps: type-is@~1.6.6
1245 - deps: vhost@~3.0.1
1246 * deps: vary@~1.0.1
1247 - Fix setting empty header from empty `field`
1248 - perf: enable strict mode
1249 - perf: remove argument reassignments
1250
12513.21.1 / 2015-07-05
1252===================
1253
1254 * deps: basic-auth@~1.0.3
1255 * deps: connect@2.30.1
1256 - deps: body-parser@~1.13.2
1257 - deps: compression@~1.5.1
1258 - deps: errorhandler@~1.4.1
1259 - deps: morgan@~1.6.1
1260 - deps: pause@0.1.0
1261 - deps: qs@4.0.0
1262 - deps: serve-index@~1.7.1
1263 - deps: type-is@~1.6.4
1264
12653.21.0 / 2015-06-18
1266===================
1267
1268 * deps: basic-auth@1.0.2
1269 - perf: enable strict mode
1270 - perf: hoist regular expression
1271 - perf: parse with regular expressions
1272 - perf: remove argument reassignment
1273 * deps: connect@2.30.0
1274 - deps: body-parser@~1.13.1
1275 - deps: bytes@2.1.0
1276 - deps: compression@~1.5.0
1277 - deps: cookie@0.1.3
1278 - deps: cookie-parser@~1.3.5
1279 - deps: csurf@~1.8.3
1280 - deps: errorhandler@~1.4.0
1281 - deps: express-session@~1.11.3
1282 - deps: finalhandler@0.4.0
1283 - deps: fresh@0.3.0
1284 - deps: morgan@~1.6.0
1285 - deps: serve-favicon@~2.3.0
1286 - deps: serve-index@~1.7.0
1287 - deps: serve-static@~1.10.0
1288 - deps: type-is@~1.6.3
1289 * deps: cookie@0.1.3
1290 - perf: deduce the scope of try-catch deopt
1291 - perf: remove argument reassignments
1292 * deps: escape-html@1.0.2
1293 * deps: etag@~1.7.0
1294 - Always include entity length in ETags for hash length extensions
1295 - Generate non-Stats ETags using MD5 only (no longer CRC32)
1296 - Improve stat performance by removing hashing
1297 - Improve support for JXcore
1298 - Remove base64 padding in ETags to shorten
1299 - Support "fake" stats objects in environments without fs
1300 - Use MD5 instead of MD4 in weak ETags over 1KB
1301 * deps: fresh@0.3.0
1302 - Add weak `ETag` matching support
1303 * deps: mkdirp@0.5.1
1304 - Work in global strict mode
1305 * deps: send@0.13.0
1306 - Allow Node.js HTTP server to set `Date` response header
1307 - Fix incorrectly removing `Content-Location` on 304 response
1308 - Improve the default redirect response headers
1309 - Send appropriate headers on default error response
1310 - Use `http-errors` for standard emitted errors
1311 - Use `statuses` instead of `http` module for status messages
1312 - deps: escape-html@1.0.2
1313 - deps: etag@~1.7.0
1314 - deps: fresh@0.3.0
1315 - deps: on-finished@~2.3.0
1316 - perf: enable strict mode
1317 - perf: remove unnecessary array allocations
1318
13193.20.3 / 2015-05-17
1320===================
1321
1322 * deps: connect@2.29.2
1323 - deps: body-parser@~1.12.4
1324 - deps: compression@~1.4.4
1325 - deps: connect-timeout@~1.6.2
1326 - deps: debug@~2.2.0
1327 - deps: depd@~1.0.1
1328 - deps: errorhandler@~1.3.6
1329 - deps: finalhandler@0.3.6
1330 - deps: method-override@~2.3.3
1331 - deps: morgan@~1.5.3
1332 - deps: qs@2.4.2
1333 - deps: response-time@~2.3.1
1334 - deps: serve-favicon@~2.2.1
1335 - deps: serve-index@~1.6.4
1336 - deps: serve-static@~1.9.3
1337 - deps: type-is@~1.6.2
1338 * deps: debug@~2.2.0
1339 - deps: ms@0.7.1
1340 * deps: depd@~1.0.1
1341 * deps: proxy-addr@~1.0.8
1342 - deps: ipaddr.js@1.0.1
1343 * deps: send@0.12.3
1344 - deps: debug@~2.2.0
1345 - deps: depd@~1.0.1
1346 - deps: etag@~1.6.0
1347 - deps: ms@0.7.1
1348 - deps: on-finished@~2.2.1
1349
13503.20.2 / 2015-03-16
1351===================
1352
1353 * deps: connect@2.29.1
1354 - deps: body-parser@~1.12.2
1355 - deps: compression@~1.4.3
1356 - deps: connect-timeout@~1.6.1
1357 - deps: debug@~2.1.3
1358 - deps: errorhandler@~1.3.5
1359 - deps: express-session@~1.10.4
1360 - deps: finalhandler@0.3.4
1361 - deps: method-override@~2.3.2
1362 - deps: morgan@~1.5.2
1363 - deps: qs@2.4.1
1364 - deps: serve-index@~1.6.3
1365 - deps: serve-static@~1.9.2
1366 - deps: type-is@~1.6.1
1367 * deps: debug@~2.1.3
1368 - Fix high intensity foreground color for bold
1369 - deps: ms@0.7.0
1370 * deps: merge-descriptors@1.0.0
1371 * deps: proxy-addr@~1.0.7
1372 - deps: ipaddr.js@0.1.9
1373 * deps: send@0.12.2
1374 - Throw errors early for invalid `extensions` or `index` options
1375 - deps: debug@~2.1.3
1376
13773.20.1 / 2015-02-28
1378===================
1379
1380 * Fix `req.host` when using "trust proxy" hops count
1381 * Fix `req.protocol`/`req.secure` when using "trust proxy" hops count
1382
13833.20.0 / 2015-02-18
1384===================
1385
1386 * Fix `"trust proxy"` setting to inherit when app is mounted
1387 * Generate `ETag`s for all request responses
1388 - No longer restricted to only responses for `GET` and `HEAD` requests
1389 * Use `content-type` to parse `Content-Type` headers
1390 * deps: connect@2.29.0
1391 - Use `content-type` to parse `Content-Type` headers
1392 - deps: body-parser@~1.12.0
1393 - deps: compression@~1.4.1
1394 - deps: connect-timeout@~1.6.0
1395 - deps: cookie-parser@~1.3.4
1396 - deps: cookie-signature@1.0.6
1397 - deps: csurf@~1.7.0
1398 - deps: errorhandler@~1.3.4
1399 - deps: express-session@~1.10.3
1400 - deps: http-errors@~1.3.1
1401 - deps: response-time@~2.3.0
1402 - deps: serve-index@~1.6.2
1403 - deps: serve-static@~1.9.1
1404 - deps: type-is@~1.6.0
1405 * deps: cookie-signature@1.0.6
1406 * deps: send@0.12.1
1407 - Always read the stat size from the file
1408 - Fix mutating passed-in `options`
1409 - deps: mime@1.3.4
1410
14113.19.2 / 2015-02-01
1412===================
1413
1414 * deps: connect@2.28.3
1415 - deps: compression@~1.3.1
1416 - deps: csurf@~1.6.6
1417 - deps: errorhandler@~1.3.3
1418 - deps: express-session@~1.10.2
1419 - deps: serve-index@~1.6.1
1420 - deps: type-is@~1.5.6
1421 * deps: proxy-addr@~1.0.6
1422 - deps: ipaddr.js@0.1.8
1423
14243.19.1 / 2015-01-20
1425===================
1426
1427 * deps: connect@2.28.2
1428 - deps: body-parser@~1.10.2
1429 - deps: serve-static@~1.8.1
1430 * deps: send@0.11.1
1431 - Fix root path disclosure
1432
14333.19.0 / 2015-01-09
1434===================
1435
1436 * Fix `OPTIONS` responses to include the `HEAD` method property
1437 * Use `readline` for prompt in `express(1)`
1438 * deps: commander@2.6.0
1439 * deps: connect@2.28.1
1440 - deps: body-parser@~1.10.1
1441 - deps: compression@~1.3.0
1442 - deps: connect-timeout@~1.5.0
1443 - deps: csurf@~1.6.4
1444 - deps: debug@~2.1.1
1445 - deps: errorhandler@~1.3.2
1446 - deps: express-session@~1.10.1
1447 - deps: finalhandler@0.3.3
1448 - deps: method-override@~2.3.1
1449 - deps: morgan@~1.5.1
1450 - deps: serve-favicon@~2.2.0
1451 - deps: serve-index@~1.6.0
1452 - deps: serve-static@~1.8.0
1453 - deps: type-is@~1.5.5
1454 * deps: debug@~2.1.1
1455 * deps: methods@~1.1.1
1456 * deps: proxy-addr@~1.0.5
1457 - deps: ipaddr.js@0.1.6
1458 * deps: send@0.11.0
1459 - deps: debug@~2.1.1
1460 - deps: etag@~1.5.1
1461 - deps: ms@0.7.0
1462 - deps: on-finished@~2.2.0
1463
14643.18.6 / 2014-12-12
1465===================
1466
1467 * Fix exception in `req.fresh`/`req.stale` without response headers
1468
14693.18.5 / 2014-12-11
1470===================
1471
1472 * deps: connect@2.27.6
1473 - deps: compression@~1.2.2
1474 - deps: express-session@~1.9.3
1475 - deps: http-errors@~1.2.8
1476 - deps: serve-index@~1.5.3
1477 - deps: type-is@~1.5.4
1478
14793.18.4 / 2014-11-23
1480===================
1481
1482 * deps: connect@2.27.4
1483 - deps: body-parser@~1.9.3
1484 - deps: compression@~1.2.1
1485 - deps: errorhandler@~1.2.3
1486 - deps: express-session@~1.9.2
1487 - deps: qs@2.3.3
1488 - deps: serve-favicon@~2.1.7
1489 - deps: serve-static@~1.5.1
1490 - deps: type-is@~1.5.3
1491 * deps: etag@~1.5.1
1492 * deps: proxy-addr@~1.0.4
1493 - deps: ipaddr.js@0.1.5
1494
14953.18.3 / 2014-11-09
1496===================
1497
1498 * deps: connect@2.27.3
1499 - Correctly invoke async callback asynchronously
1500 - deps: csurf@~1.6.3
1501
15023.18.2 / 2014-10-28
1503===================
1504
1505 * deps: connect@2.27.2
1506 - Fix handling of URLs containing `://` in the path
1507 - deps: body-parser@~1.9.2
1508 - deps: qs@2.3.2
1509
15103.18.1 / 2014-10-22
1511===================
1512
1513 * Fix internal `utils.merge` deprecation warnings
1514 * deps: connect@2.27.1
1515 - deps: body-parser@~1.9.1
1516 - deps: express-session@~1.9.1
1517 - deps: finalhandler@0.3.2
1518 - deps: morgan@~1.4.1
1519 - deps: qs@2.3.0
1520 - deps: serve-static@~1.7.1
1521 * deps: send@0.10.1
1522 - deps: on-finished@~2.1.1
1523
15243.18.0 / 2014-10-17
1525===================
1526
1527 * Use `content-disposition` module for `res.attachment`/`res.download`
1528 - Sends standards-compliant `Content-Disposition` header
1529 - Full Unicode support
1530 * Use `etag` module to generate `ETag` headers
1531 * deps: connect@2.27.0
1532 - Use `http-errors` module for creating errors
1533 - Use `utils-merge` module for merging objects
1534 - deps: body-parser@~1.9.0
1535 - deps: compression@~1.2.0
1536 - deps: connect-timeout@~1.4.0
1537 - deps: debug@~2.1.0
1538 - deps: depd@~1.0.0
1539 - deps: express-session@~1.9.0
1540 - deps: finalhandler@0.3.1
1541 - deps: method-override@~2.3.0
1542 - deps: morgan@~1.4.0
1543 - deps: response-time@~2.2.0
1544 - deps: serve-favicon@~2.1.6
1545 - deps: serve-index@~1.5.0
1546 - deps: serve-static@~1.7.0
1547 * deps: debug@~2.1.0
1548 - Implement `DEBUG_FD` env variable support
1549 * deps: depd@~1.0.0
1550 * deps: send@0.10.0
1551 - deps: debug@~2.1.0
1552 - deps: depd@~1.0.0
1553 - deps: etag@~1.5.0
1554
15553.17.8 / 2014-10-15
1556===================
1557
1558 * deps: connect@2.26.6
1559 - deps: compression@~1.1.2
1560 - deps: csurf@~1.6.2
1561 - deps: errorhandler@~1.2.2
1562
15633.17.7 / 2014-10-08
1564===================
1565
1566 * deps: connect@2.26.5
1567 - Fix accepting non-object arguments to `logger`
1568 - deps: serve-static@~1.6.4
1569
15703.17.6 / 2014-10-02
1571===================
1572
1573 * deps: connect@2.26.4
1574 - deps: morgan@~1.3.2
1575 - deps: type-is@~1.5.2
1576
15773.17.5 / 2014-09-24
1578===================
1579
1580 * deps: connect@2.26.3
1581 - deps: body-parser@~1.8.4
1582 - deps: serve-favicon@~2.1.5
1583 - deps: serve-static@~1.6.3
1584 * deps: proxy-addr@~1.0.3
1585 - Use `forwarded` npm module
1586 * deps: send@0.9.3
1587 - deps: etag@~1.4.0
1588
15893.17.4 / 2014-09-19
1590===================
1591
1592 * deps: connect@2.26.2
1593 - deps: body-parser@~1.8.3
1594 - deps: qs@2.2.4
1595
15963.17.3 / 2014-09-18
1597===================
1598
1599 * deps: proxy-addr@~1.0.2
1600 - Fix a global leak when multiple subnets are trusted
1601 - deps: ipaddr.js@0.1.3
1602
16033.17.2 / 2014-09-15
1604===================
1605
1606 * Use `crc` instead of `buffer-crc32` for speed
1607 * deps: connect@2.26.1
1608 - deps: body-parser@~1.8.2
1609 - deps: depd@0.4.5
1610 - deps: express-session@~1.8.2
1611 - deps: morgan@~1.3.1
1612 - deps: serve-favicon@~2.1.3
1613 - deps: serve-static@~1.6.2
1614 * deps: depd@0.4.5
1615 * deps: send@0.9.2
1616 - deps: depd@0.4.5
1617 - deps: etag@~1.3.1
1618 - deps: range-parser@~1.0.2
1619
16203.17.1 / 2014-09-08
1621===================
1622
1623 * Fix error in `req.subdomains` on empty host
1624
16253.17.0 / 2014-09-08
1626===================
1627
1628 * Support `X-Forwarded-Host` in `req.subdomains`
1629 * Support IP address host in `req.subdomains`
1630 * deps: connect@2.26.0
1631 - deps: body-parser@~1.8.1
1632 - deps: compression@~1.1.0
1633 - deps: connect-timeout@~1.3.0
1634 - deps: cookie-parser@~1.3.3
1635 - deps: cookie-signature@1.0.5
1636 - deps: csurf@~1.6.1
1637 - deps: debug@~2.0.0
1638 - deps: errorhandler@~1.2.0
1639 - deps: express-session@~1.8.1
1640 - deps: finalhandler@0.2.0
1641 - deps: fresh@0.2.4
1642 - deps: media-typer@0.3.0
1643 - deps: method-override@~2.2.0
1644 - deps: morgan@~1.3.0
1645 - deps: qs@2.2.3
1646 - deps: serve-favicon@~2.1.3
1647 - deps: serve-index@~1.2.1
1648 - deps: serve-static@~1.6.1
1649 - deps: type-is@~1.5.1
1650 - deps: vhost@~3.0.0
1651 * deps: cookie-signature@1.0.5
1652 * deps: debug@~2.0.0
1653 * deps: fresh@0.2.4
1654 * deps: media-typer@0.3.0
1655 - Throw error when parameter format invalid on parse
1656 * deps: range-parser@~1.0.2
1657 * deps: send@0.9.1
1658 - Add `lastModified` option
1659 - Use `etag` to generate `ETag` header
1660 - deps: debug@~2.0.0
1661 - deps: fresh@0.2.4
1662 * deps: vary@~1.0.0
1663 - Accept valid `Vary` header string as `field`
1664
16653.16.10 / 2014-09-04
1666====================
1667
1668 * deps: connect@2.25.10
1669 - deps: serve-static@~1.5.4
1670 * deps: send@0.8.5
1671 - Fix a path traversal issue when using `root`
1672 - Fix malicious path detection for empty string path
1673
16743.16.9 / 2014-08-29
1675===================
1676
1677 * deps: connect@2.25.9
1678 - deps: body-parser@~1.6.7
1679 - deps: qs@2.2.2
1680
16813.16.8 / 2014-08-27
1682===================
1683
1684 * deps: connect@2.25.8
1685 - deps: body-parser@~1.6.6
1686 - deps: csurf@~1.4.1
1687 - deps: qs@2.2.0
1688
16893.16.7 / 2014-08-18
1690===================
1691
1692 * deps: connect@2.25.7
1693 - deps: body-parser@~1.6.5
1694 - deps: express-session@~1.7.6
1695 - deps: morgan@~1.2.3
1696 - deps: serve-static@~1.5.3
1697 * deps: send@0.8.3
1698 - deps: destroy@1.0.3
1699 - deps: on-finished@2.1.0
1700
17013.16.6 / 2014-08-14
1702===================
1703
1704 * deps: connect@2.25.6
1705 - deps: body-parser@~1.6.4
1706 - deps: qs@1.2.2
1707 - deps: serve-static@~1.5.2
1708 * deps: send@0.8.2
1709 - Work around `fd` leak in Node.js 0.10 for `fs.ReadStream`
1710
17113.16.5 / 2014-08-11
1712===================
1713
1714 * deps: connect@2.25.5
1715 - Fix backwards compatibility in `logger`
1716
17173.16.4 / 2014-08-10
1718===================
1719
1720 * Fix original URL parsing in `res.location`
1721 * deps: connect@2.25.4
1722 - Fix `query` middleware breaking with argument
1723 - deps: body-parser@~1.6.3
1724 - deps: compression@~1.0.11
1725 - deps: connect-timeout@~1.2.2
1726 - deps: express-session@~1.7.5
1727 - deps: method-override@~2.1.3
1728 - deps: on-headers@~1.0.0
1729 - deps: parseurl@~1.3.0
1730 - deps: qs@1.2.1
1731 - deps: response-time@~2.0.1
1732 - deps: serve-index@~1.1.6
1733 - deps: serve-static@~1.5.1
1734 * deps: parseurl@~1.3.0
1735
17363.16.3 / 2014-08-07
1737===================
1738
1739 * deps: connect@2.25.3
1740 - deps: multiparty@3.3.2
1741
17423.16.2 / 2014-08-07
1743===================
1744
1745 * deps: connect@2.25.2
1746 - deps: body-parser@~1.6.2
1747 - deps: qs@1.2.0
1748
17493.16.1 / 2014-08-06
1750===================
1751
1752 * deps: connect@2.25.1
1753 - deps: body-parser@~1.6.1
1754 - deps: qs@1.1.0
1755
17563.16.0 / 2014-08-05
1757===================
1758
1759 * deps: connect@2.25.0
1760 - deps: body-parser@~1.6.0
1761 - deps: compression@~1.0.10
1762 - deps: csurf@~1.4.0
1763 - deps: express-session@~1.7.4
1764 - deps: qs@1.0.2
1765 - deps: serve-static@~1.5.0
1766 * deps: send@0.8.1
1767 - Add `extensions` option
1768
17693.15.3 / 2014-08-04
1770===================
1771
1772 * fix `res.sendfile` regression for serving directory index files
1773 * deps: connect@2.24.3
1774 - deps: serve-index@~1.1.5
1775 - deps: serve-static@~1.4.4
1776 * deps: send@0.7.4
1777 - Fix incorrect 403 on Windows and Node.js 0.11
1778 - Fix serving index files without root dir
1779
17803.15.2 / 2014-07-27
1781===================
1782
1783 * deps: connect@2.24.2
1784 - deps: body-parser@~1.5.2
1785 - deps: depd@0.4.4
1786 - deps: express-session@~1.7.2
1787 - deps: morgan@~1.2.2
1788 - deps: serve-static@~1.4.2
1789 * deps: depd@0.4.4
1790 - Work-around v8 generating empty stack traces
1791 * deps: send@0.7.2
1792 - deps: depd@0.4.4
1793
17943.15.1 / 2014-07-26
1795===================
1796
1797 * deps: connect@2.24.1
1798 - deps: body-parser@~1.5.1
1799 - deps: depd@0.4.3
1800 - deps: express-session@~1.7.1
1801 - deps: morgan@~1.2.1
1802 - deps: serve-index@~1.1.4
1803 - deps: serve-static@~1.4.1
1804 * deps: depd@0.4.3
1805 - Fix exception when global `Error.stackTraceLimit` is too low
1806 * deps: send@0.7.1
1807 - deps: depd@0.4.3
1808
18093.15.0 / 2014-07-22
1810===================
1811
1812 * Fix `req.protocol` for proxy-direct connections
1813 * Pass options from `res.sendfile` to `send`
1814 * deps: connect@2.24.0
1815 - deps: body-parser@~1.5.0
1816 - deps: compression@~1.0.9
1817 - deps: connect-timeout@~1.2.1
1818 - deps: debug@1.0.4
1819 - deps: depd@0.4.2
1820 - deps: express-session@~1.7.0
1821 - deps: finalhandler@0.1.0
1822 - deps: method-override@~2.1.2
1823 - deps: morgan@~1.2.0
1824 - deps: multiparty@3.3.1
1825 - deps: parseurl@~1.2.0
1826 - deps: serve-static@~1.4.0
1827 * deps: debug@1.0.4
1828 * deps: depd@0.4.2
1829 - Add `TRACE_DEPRECATION` environment variable
1830 - Remove non-standard grey color from color output
1831 - Support `--no-deprecation` argument
1832 - Support `--trace-deprecation` argument
1833 * deps: parseurl@~1.2.0
1834 - Cache URLs based on original value
1835 - Remove no-longer-needed URL mis-parse work-around
1836 - Simplify the "fast-path" `RegExp`
1837 * deps: send@0.7.0
1838 - Add `dotfiles` option
1839 - Cap `maxAge` value to 1 year
1840 - deps: debug@1.0.4
1841 - deps: depd@0.4.2
1842
18433.14.0 / 2014-07-11
1844===================
1845
1846 * add explicit "Rosetta Flash JSONP abuse" protection
1847 - previous versions are not vulnerable; this is just explicit protection
1848 * deprecate `res.redirect(url, status)` -- use `res.redirect(status, url)` instead
1849 * fix `res.send(status, num)` to send `num` as json (not error)
1850 * remove unnecessary escaping when `res.jsonp` returns JSON response
1851 * deps: basic-auth@1.0.0
1852 - support empty password
1853 - support empty username
1854 * deps: connect@2.23.0
1855 - deps: debug@1.0.3
1856 - deps: express-session@~1.6.4
1857 - deps: method-override@~2.1.0
1858 - deps: parseurl@~1.1.3
1859 - deps: serve-static@~1.3.1
1860 * deps: debug@1.0.3
1861 - Add support for multiple wildcards in namespaces
1862 * deps: methods@1.1.0
1863 - add `CONNECT`
1864 * deps: parseurl@~1.1.3
1865 - faster parsing of href-only URLs
1866
18673.13.0 / 2014-07-03
1868===================
1869
1870 * add deprecation message to `app.configure`
1871 * add deprecation message to `req.auth`
1872 * use `basic-auth` to parse `Authorization` header
1873 * deps: connect@2.22.0
1874 - deps: csurf@~1.3.0
1875 - deps: express-session@~1.6.1
1876 - deps: multiparty@3.3.0
1877 - deps: serve-static@~1.3.0
1878 * deps: send@0.5.0
1879 - Accept string for `maxage` (converted by `ms`)
1880 - Include link in default redirect response
1881
18823.12.1 / 2014-06-26
1883===================
1884
1885 * deps: connect@2.21.1
1886 - deps: cookie-parser@1.3.2
1887 - deps: cookie-signature@1.0.4
1888 - deps: express-session@~1.5.2
1889 - deps: type-is@~1.3.2
1890 * deps: cookie-signature@1.0.4
1891 - fix for timing attacks
1892
18933.12.0 / 2014-06-21
1894===================
1895
1896 * use `media-typer` to alter content-type charset
1897 * deps: connect@2.21.0
1898 - deprecate `connect(middleware)` -- use `app.use(middleware)` instead
1899 - deprecate `connect.createServer()` -- use `connect()` instead
1900 - fix `res.setHeader()` patch to work with with get -> append -> set pattern
1901 - deps: compression@~1.0.8
1902 - deps: errorhandler@~1.1.1
1903 - deps: express-session@~1.5.0
1904 - deps: serve-index@~1.1.3
1905
19063.11.0 / 2014-06-19
1907===================
1908
1909 * deprecate things with `depd` module
1910 * deps: buffer-crc32@0.2.3
1911 * deps: connect@2.20.2
1912 - deprecate `verify` option to `json` -- use `body-parser` npm module instead
1913 - deprecate `verify` option to `urlencoded` -- use `body-parser` npm module instead
1914 - deprecate things with `depd` module
1915 - use `finalhandler` for final response handling
1916 - use `media-typer` to parse `content-type` for charset
1917 - deps: body-parser@1.4.3
1918 - deps: connect-timeout@1.1.1
1919 - deps: cookie-parser@1.3.1
1920 - deps: csurf@1.2.2
1921 - deps: errorhandler@1.1.0
1922 - deps: express-session@1.4.0
1923 - deps: multiparty@3.2.9
1924 - deps: serve-index@1.1.2
1925 - deps: type-is@1.3.1
1926 - deps: vhost@2.0.0
1927
19283.10.5 / 2014-06-11
1929===================
1930
1931 * deps: connect@2.19.6
1932 - deps: body-parser@1.3.1
1933 - deps: compression@1.0.7
1934 - deps: debug@1.0.2
1935 - deps: serve-index@1.1.1
1936 - deps: serve-static@1.2.3
1937 * deps: debug@1.0.2
1938 * deps: send@0.4.3
1939 - Do not throw un-catchable error on file open race condition
1940 - Use `escape-html` for HTML escaping
1941 - deps: debug@1.0.2
1942 - deps: finished@1.2.2
1943 - deps: fresh@0.2.2
1944
19453.10.4 / 2014-06-09
1946===================
1947
1948 * deps: connect@2.19.5
1949 - fix "event emitter leak" warnings
1950 - deps: csurf@1.2.1
1951 - deps: debug@1.0.1
1952 - deps: serve-static@1.2.2
1953 - deps: type-is@1.2.1
1954 * deps: debug@1.0.1
1955 * deps: send@0.4.2
1956 - fix "event emitter leak" warnings
1957 - deps: finished@1.2.1
1958 - deps: debug@1.0.1
1959
19603.10.3 / 2014-06-05
1961===================
1962
1963 * use `vary` module for `res.vary`
1964 * deps: connect@2.19.4
1965 - deps: errorhandler@1.0.2
1966 - deps: method-override@2.0.2
1967 - deps: serve-favicon@2.0.1
1968 * deps: debug@1.0.0
1969
19703.10.2 / 2014-06-03
1971===================
1972
1973 * deps: connect@2.19.3
1974 - deps: compression@1.0.6
1975
19763.10.1 / 2014-06-03
1977===================
1978
1979 * deps: connect@2.19.2
1980 - deps: compression@1.0.4
1981 * deps: proxy-addr@1.0.1
1982
19833.10.0 / 2014-06-02
1984===================
1985
1986 * deps: connect@2.19.1
1987 - deprecate `methodOverride()` -- use `method-override` npm module instead
1988 - deps: body-parser@1.3.0
1989 - deps: method-override@2.0.1
1990 - deps: multiparty@3.2.8
1991 - deps: response-time@2.0.0
1992 - deps: serve-static@1.2.1
1993 * deps: methods@1.0.1
1994 * deps: send@0.4.1
1995 - Send `max-age` in `Cache-Control` in correct format
1996
19973.9.0 / 2014-05-30
1998==================
1999
2000 * custom etag control with `app.set('etag', val)`
2001 - `app.set('etag', function(body, encoding){ return '"etag"' })` custom etag generation
2002 - `app.set('etag', 'weak')` weak tag
2003 - `app.set('etag', 'strong')` strong etag
2004 - `app.set('etag', false)` turn off
2005 - `app.set('etag', true)` standard etag
2006 * Include ETag in HEAD requests
2007 * mark `res.send` ETag as weak and reduce collisions
2008 * update connect to 2.18.0
2009 - deps: compression@1.0.3
2010 - deps: serve-index@1.1.0
2011 - deps: serve-static@1.2.0
2012 * update send to 0.4.0
2013 - Calculate ETag with md5 for reduced collisions
2014 - Ignore stream errors after request ends
2015 - deps: debug@0.8.1
2016
20173.8.1 / 2014-05-27
2018==================
2019
2020 * update connect to 2.17.3
2021 - deps: body-parser@1.2.2
2022 - deps: express-session@1.2.1
2023 - deps: method-override@1.0.2
2024
20253.8.0 / 2014-05-21
2026==================
2027
2028 * keep previous `Content-Type` for `res.jsonp`
2029 * set proper `charset` in `Content-Type` for `res.send`
2030 * update connect to 2.17.1
2031 - fix `res.charset` appending charset when `content-type` has one
2032 - deps: express-session@1.2.0
2033 - deps: morgan@1.1.1
2034 - deps: serve-index@1.0.3
2035
20363.7.0 / 2014-05-18
2037==================
2038
2039 * proper proxy trust with `app.set('trust proxy', trust)`
2040 - `app.set('trust proxy', 1)` trust first hop
2041 - `app.set('trust proxy', 'loopback')` trust loopback addresses
2042 - `app.set('trust proxy', '10.0.0.1')` trust single IP
2043 - `app.set('trust proxy', '10.0.0.1/16')` trust subnet
2044 - `app.set('trust proxy', '10.0.0.1, 10.0.0.2')` trust list
2045 - `app.set('trust proxy', false)` turn off
2046 - `app.set('trust proxy', true)` trust everything
2047 * update connect to 2.16.2
2048 - deprecate `res.headerSent` -- use `res.headersSent`
2049 - deprecate `res.on("header")` -- use on-headers module instead
2050 - fix edge-case in `res.appendHeader` that would append in wrong order
2051 - json: use body-parser
2052 - urlencoded: use body-parser
2053 - dep: bytes@1.0.0
2054 - dep: cookie-parser@1.1.0
2055 - dep: csurf@1.2.0
2056 - dep: express-session@1.1.0
2057 - dep: method-override@1.0.1
2058
20593.6.0 / 2014-05-09
2060==================
2061
2062 * deprecate `app.del()` -- use `app.delete()` instead
2063 * deprecate `res.json(obj, status)` -- use `res.json(status, obj)` instead
2064 - the edge-case `res.json(status, num)` requires `res.status(status).json(num)`
2065 * deprecate `res.jsonp(obj, status)` -- use `res.jsonp(status, obj)` instead
2066 - the edge-case `res.jsonp(status, num)` requires `res.status(status).jsonp(num)`
2067 * support PURGE method
2068 - add `app.purge`
2069 - add `router.purge`
2070 - include PURGE in `app.all`
2071 * update connect to 2.15.0
2072 * Add `res.appendHeader`
2073 * Call error stack even when response has been sent
2074 * Patch `res.headerSent` to return Boolean
2075 * Patch `res.headersSent` for node.js 0.8
2076 * Prevent default 404 handler after response sent
2077 * dep: compression@1.0.2
2078 * dep: connect-timeout@1.1.0
2079 * dep: debug@^0.8.0
2080 * dep: errorhandler@1.0.1
2081 * dep: express-session@1.0.4
2082 * dep: morgan@1.0.1
2083 * dep: serve-favicon@2.0.0
2084 * dep: serve-index@1.0.2
2085 * update debug to 0.8.0
2086 * add `enable()` method
2087 * change from stderr to stdout
2088 * update methods to 1.0.0
2089 - add PURGE
2090 * update mkdirp to 0.5.0
2091
20923.5.3 / 2014-05-08
2093==================
2094
2095 * fix `req.host` for IPv6 literals
2096 * fix `res.jsonp` error if callback param is object
2097
20983.5.2 / 2014-04-24
2099==================
2100
2101 * update connect to 2.14.5
2102 * update cookie to 0.1.2
2103 * update mkdirp to 0.4.0
2104 * update send to 0.3.0
2105
21063.5.1 / 2014-03-25
2107==================
2108
2109 * pin less-middleware in generated app
2110
21113.5.0 / 2014-03-06
2112==================
2113
2114 * bump deps
2115
21163.4.8 / 2014-01-13
2117==================
2118
2119 * prevent incorrect automatic OPTIONS responses #1868 @dpatti
2120 * update binary and examples for jade 1.0 #1876 @yossi, #1877 @reqshark, #1892 @matheusazzi
2121 * throw 400 in case of malformed paths @rlidwka
2122
21233.4.7 / 2013-12-10
2124==================
2125
2126 * update connect
2127
21283.4.6 / 2013-12-01
2129==================
2130
2131 * update connect (raw-body)
2132
21333.4.5 / 2013-11-27
2134==================
2135
2136 * update connect
2137 * res.location: remove leading ./ #1802 @kapouer
2138 * res.redirect: fix `res.redirect('toString') #1829 @michaelficarra
2139 * res.send: always send ETag when content-length > 0
2140 * router: add Router.all() method
2141
21423.4.4 / 2013-10-29
2143==================
2144
2145 * update connect
2146 * update supertest
2147 * update methods
2148 * express(1): replace bodyParser() with urlencoded() and json() #1795 @chirag04
2149
21503.4.3 / 2013-10-23
2151==================
2152
2153 * update connect
2154
21553.4.2 / 2013-10-18
2156==================
2157
2158 * update connect
2159 * downgrade commander
2160
21613.4.1 / 2013-10-15
2162==================
2163
2164 * update connect
2165 * update commander
2166 * jsonp: check if callback is a function
2167 * router: wrap encodeURIComponent in a try/catch #1735 (@lxe)
2168 * res.format: now includes charset @1747 (@sorribas)
2169 * res.links: allow multiple calls @1746 (@sorribas)
2170
21713.4.0 / 2013-09-07
2172==================
2173
2174 * add res.vary(). Closes #1682
2175 * update connect
2176
21773.3.8 / 2013-09-02
2178==================
2179
2180 * update connect
2181
21823.3.7 / 2013-08-28
2183==================
2184
2185 * update connect
2186
21873.3.6 / 2013-08-27
2188==================
2189
2190 * Revert "remove charset from json responses. Closes #1631" (causes issues in some clients)
2191 * add: req.accepts take an argument list
2192
21933.3.4 / 2013-07-08
2194==================
2195
2196 * update send and connect
2197
21983.3.3 / 2013-07-04
2199==================
2200
2201 * update connect
2202
22033.3.2 / 2013-07-03
2204==================
2205
2206 * update connect
2207 * update send
2208 * remove .version export
2209
22103.3.1 / 2013-06-27
2211==================
2212
2213 * update connect
2214
22153.3.0 / 2013-06-26
2216==================
2217
2218 * update connect
2219 * add support for multiple X-Forwarded-Proto values. Closes #1646
2220 * change: remove charset from json responses. Closes #1631
2221 * change: return actual booleans from req.accept* functions
2222 * fix jsonp callback array throw
2223
22243.2.6 / 2013-06-02
2225==================
2226
2227 * update connect
2228
22293.2.5 / 2013-05-21
2230==================
2231
2232 * update connect
2233 * update node-cookie
2234 * add: throw a meaningful error when there is no default engine
2235 * change generation of ETags with res.send() to GET requests only. Closes #1619
2236
22373.2.4 / 2013-05-09
2238==================
2239
2240 * fix `req.subdomains` when no Host is present
2241 * fix `req.host` when no Host is present, return undefined
2242
22433.2.3 / 2013-05-07
2244==================
2245
2246 * update connect / qs
2247
22483.2.2 / 2013-05-03
2249==================
2250
2251 * update qs
2252
22533.2.1 / 2013-04-29
2254==================
2255
2256 * add app.VERB() paths array deprecation warning
2257 * update connect
2258 * update qs and remove all ~ semver crap
2259 * fix: accept number as value of Signed Cookie
2260
22613.2.0 / 2013-04-15
2262==================
2263
2264 * add "view" constructor setting to override view behaviour
2265 * add req.acceptsEncoding(name)
2266 * add req.acceptedEncodings
2267 * revert cookie signature change causing session race conditions
2268 * fix sorting of Accept values of the same quality
2269
22703.1.2 / 2013-04-12
2271==================
2272
2273 * add support for custom Accept parameters
2274 * update cookie-signature
2275
22763.1.1 / 2013-04-01
2277==================
2278
2279 * add X-Forwarded-Host support to `req.host`
2280 * fix relative redirects
2281 * update mkdirp
2282 * update buffer-crc32
2283 * remove legacy app.configure() method from app template.
2284
22853.1.0 / 2013-01-25
2286==================
2287
2288 * add support for leading "." in "view engine" setting
2289 * add array support to `res.set()`
2290 * add node 0.8.x to travis.yml
2291 * add "subdomain offset" setting for tweaking `req.subdomains`
2292 * add `res.location(url)` implementing `res.redirect()`-like setting of Location
2293 * use app.get() for x-powered-by setting for inheritance
2294 * fix colons in passwords for `req.auth`
2295
22963.0.6 / 2013-01-04
2297==================
2298
2299 * add http verb methods to Router
2300 * update connect
2301 * fix mangling of the `res.cookie()` options object
2302 * fix jsonp whitespace escape. Closes #1132
2303
23043.0.5 / 2012-12-19
2305==================
2306
2307 * add throwing when a non-function is passed to a route
2308 * fix: explicitly remove Transfer-Encoding header from 204 and 304 responses
2309 * revert "add 'etag' option"
2310
23113.0.4 / 2012-12-05
2312==================
2313
2314 * add 'etag' option to disable `res.send()` Etags
2315 * add escaping of urls in text/plain in `res.redirect()`
2316 for old browsers interpreting as html
2317 * change crc32 module for a more liberal license
2318 * update connect
2319
23203.0.3 / 2012-11-13
2321==================
2322
2323 * update connect
2324 * update cookie module
2325 * fix cookie max-age
2326
23273.0.2 / 2012-11-08
2328==================
2329
2330 * add OPTIONS to cors example. Closes #1398
2331 * fix route chaining regression. Closes #1397
2332
23333.0.1 / 2012-11-01
2334==================
2335
2336 * update connect
2337
23383.0.0 / 2012-10-23
2339==================
2340
2341 * add `make clean`
2342 * add "Basic" check to req.auth
2343 * add `req.auth` test coverage
2344 * add cb && cb(payload) to `res.jsonp()`. Closes #1374
2345 * add backwards compat for `res.redirect()` status. Closes #1336
2346 * add support for `res.json()` to retain previously defined Content-Types. Closes #1349
2347 * update connect
2348 * change `res.redirect()` to utilize a pathname-relative Location again. Closes #1382
2349 * remove non-primitive string support for `res.send()`
2350 * fix view-locals example. Closes #1370
2351 * fix route-separation example
2352
23533.0.0rc5 / 2012-09-18
2354==================
2355
2356 * update connect
2357 * add redis search example
2358 * add static-files example
2359 * add "x-powered-by" setting (`app.disable('x-powered-by')`)
2360 * add "application/octet-stream" redirect Accept test case. Closes #1317
2361
23623.0.0rc4 / 2012-08-30
2363==================
2364
2365 * add `res.jsonp()`. Closes #1307
2366 * add "verbose errors" option to error-pages example
2367 * add another route example to express(1) so people are not so confused
2368 * add redis online user activity tracking example
2369 * update connect dep
2370 * fix etag quoting. Closes #1310
2371 * fix error-pages 404 status
2372 * fix jsonp callback char restrictions
2373 * remove old OPTIONS default response
2374
23753.0.0rc3 / 2012-08-13
2376==================
2377
2378 * update connect dep
2379 * fix signed cookies to work with `connect.cookieParser()` ("s:" prefix was missing) [tnydwrds]
2380 * fix `res.render()` clobbering of "locals"
2381
23823.0.0rc2 / 2012-08-03
2383==================
2384
2385 * add CORS example
2386 * update connect dep
2387 * deprecate `.createServer()` & remove old stale examples
2388 * fix: escape `res.redirect()` link
2389 * fix vhost example
2390
23913.0.0rc1 / 2012-07-24
2392==================
2393
2394 * add more examples to view-locals
2395 * add scheme-relative redirects (`res.redirect("//foo.com")`) support
2396 * update cookie dep
2397 * update connect dep
2398 * update send dep
2399 * fix `express(1)` -h flag, use -H for hogan. Closes #1245
2400 * fix `res.sendfile()` socket error handling regression
2401
24023.0.0beta7 / 2012-07-16
2403==================
2404
2405 * update connect dep for `send()` root normalization regression
2406
24073.0.0beta6 / 2012-07-13
2408==================
2409
2410 * add `err.view` property for view errors. Closes #1226
2411 * add "jsonp callback name" setting
2412 * add support for "/foo/:bar*" non-greedy matches
2413 * change `res.sendfile()` to use `send()` module
2414 * change `res.send` to use "response-send" module
2415 * remove `app.locals.use` and `res.locals.use`, use regular middleware
2416
24173.0.0beta5 / 2012-07-03
2418==================
2419
2420 * add "make check" support
2421 * add route-map example
2422 * add `res.json(obj, status)` support back for BC
2423 * add "methods" dep, remove internal methods module
2424 * update connect dep
2425 * update auth example to utilize cores pbkdf2
2426 * updated tests to use "supertest"
2427
24283.0.0beta4 / 2012-06-25
2429==================
2430
2431 * Added `req.auth`
2432 * Added `req.range(size)`
2433 * Added `res.links(obj)`
2434 * Added `res.send(body, status)` support back for backwards compat
2435 * Added `.default()` support to `res.format()`
2436 * Added 2xx / 304 check to `req.fresh`
2437 * Revert "Added + support to the router"
2438 * Fixed `res.send()` freshness check, respect res.statusCode
2439
24403.0.0beta3 / 2012-06-15
2441==================
2442
2443 * Added hogan `--hjs` to express(1) [nullfirm]
2444 * Added another example to content-negotiation
2445 * Added `fresh` dep
2446 * Changed: `res.send()` always checks freshness
2447 * Fixed: expose connects mime module. Closes #1165
2448
24493.0.0beta2 / 2012-06-06
2450==================
2451
2452 * Added `+` support to the router
2453 * Added `req.host`
2454 * Changed `req.param()` to check route first
2455 * Update connect dep
2456
24573.0.0beta1 / 2012-06-01
2458==================
2459
2460 * Added `res.format()` callback to override default 406 behaviour
2461 * Fixed `res.redirect()` 406. Closes #1154
2462
24633.0.0alpha5 / 2012-05-30
2464==================
2465
2466 * Added `req.ip`
2467 * Added `{ signed: true }` option to `res.cookie()`
2468 * Removed `res.signedCookie()`
2469 * Changed: dont reverse `req.ips`
2470 * Fixed "trust proxy" setting check for `req.ips`
2471
24723.0.0alpha4 / 2012-05-09
2473==================
2474
2475 * Added: allow `[]` in jsonp callback. Closes #1128
2476 * Added `PORT` env var support in generated template. Closes #1118 [benatkin]
2477 * Updated: connect 2.2.2
2478
24793.0.0alpha3 / 2012-05-04
2480==================
2481
2482 * Added public `app.routes`. Closes #887
2483 * Added _view-locals_ example
2484 * Added _mvc_ example
2485 * Added `res.locals.use()`. Closes #1120
2486 * Added conditional-GET support to `res.send()`
2487 * Added: coerce `res.set()` values to strings
2488 * Changed: moved `static()` in generated apps below router
2489 * Changed: `res.send()` only set ETag when not previously set
2490 * Changed connect 2.2.1 dep
2491 * Changed: `make test` now runs unit / acceptance tests
2492 * Fixed req/res proto inheritance
2493
24943.0.0alpha2 / 2012-04-26
2495==================
2496
2497 * Added `make benchmark` back
2498 * Added `res.send()` support for `String` objects
2499 * Added client-side data exposing example
2500 * Added `res.header()` and `req.header()` aliases for BC
2501 * Added `express.createServer()` for BC
2502 * Perf: memoize parsed urls
2503 * Perf: connect 2.2.0 dep
2504 * Changed: make `expressInit()` middleware self-aware
2505 * Fixed: use app.get() for all core settings
2506 * Fixed redis session example
2507 * Fixed session example. Closes #1105
2508 * Fixed generated express dep. Closes #1078
2509
25103.0.0alpha1 / 2012-04-15
2511==================
2512
2513 * Added `app.locals.use(callback)`
2514 * Added `app.locals` object
2515 * Added `app.locals(obj)`
2516 * Added `res.locals` object
2517 * Added `res.locals(obj)`
2518 * Added `res.format()` for content-negotiation
2519 * Added `app.engine()`
2520 * Added `res.cookie()` JSON cookie support
2521 * Added "trust proxy" setting
2522 * Added `req.subdomains`
2523 * Added `req.protocol`
2524 * Added `req.secure`
2525 * Added `req.path`
2526 * Added `req.ips`
2527 * Added `req.fresh`
2528 * Added `req.stale`
2529 * Added comma-delimited / array support for `req.accepts()`
2530 * Added debug instrumentation
2531 * Added `res.set(obj)`
2532 * Added `res.set(field, value)`
2533 * Added `res.get(field)`
2534 * Added `app.get(setting)`. Closes #842
2535 * Added `req.acceptsLanguage()`
2536 * Added `req.acceptsCharset()`
2537 * Added `req.accepted`
2538 * Added `req.acceptedLanguages`
2539 * Added `req.acceptedCharsets`
2540 * Added "json replacer" setting
2541 * Added "json spaces" setting
2542 * Added X-Forwarded-Proto support to `res.redirect()`. Closes #92
2543 * Added `--less` support to express(1)
2544 * Added `express.response` prototype
2545 * Added `express.request` prototype
2546 * Added `express.application` prototype
2547 * Added `app.path()`
2548 * Added `app.render()`
2549 * Added `res.type()` to replace `res.contentType()`
2550 * Changed: `res.redirect()` to add relative support
2551 * Changed: enable "jsonp callback" by default
2552 * Changed: renamed "case sensitive routes" to "case sensitive routing"
2553 * Rewrite of all tests with mocha
2554 * Removed "root" setting
2555 * Removed `res.redirect('home')` support
2556 * Removed `req.notify()`
2557 * Removed `app.register()`
2558 * Removed `app.redirect()`
2559 * Removed `app.is()`
2560 * Removed `app.helpers()`
2561 * Removed `app.dynamicHelpers()`
2562 * Fixed `res.sendfile()` with non-GET. Closes #723
2563 * Fixed express(1) public dir for windows. Closes #866
2564
25652.5.9/ 2012-04-02
2566==================
2567
2568 * Added support for PURGE request method [pbuyle]
2569 * Fixed `express(1)` generated app `app.address()` before `listening` [mmalecki]
2570
25712.5.8 / 2012-02-08
2572==================
2573
2574 * Update mkdirp dep. Closes #991
2575
25762.5.7 / 2012-02-06
2577==================
2578
2579 * Fixed `app.all` duplicate DELETE requests [mscdex]
2580
25812.5.6 / 2012-01-13
2582==================
2583
2584 * Updated hamljs dev dep. Closes #953
2585
25862.5.5 / 2012-01-08
2587==================
2588
2589 * Fixed: set `filename` on cached templates [matthewleon]
2590
25912.5.4 / 2012-01-02
2592==================
2593
2594 * Fixed `express(1)` eol on 0.4.x. Closes #947
2595
25962.5.3 / 2011-12-30
2597==================
2598
2599 * Fixed `req.is()` when a charset is present
2600
26012.5.2 / 2011-12-10
2602==================
2603
2604 * Fixed: express(1) LF -> CRLF for windows
2605
26062.5.1 / 2011-11-17
2607==================
2608
2609 * Changed: updated connect to 1.8.x
2610 * Removed sass.js support from express(1)
2611
26122.5.0 / 2011-10-24
2613==================
2614
2615 * Added ./routes dir for generated app by default
2616 * Added npm install reminder to express(1) app gen
2617 * Added 0.5.x support
2618 * Removed `make test-cov` since it wont work with node 0.5.x
2619 * Fixed express(1) public dir for windows. Closes #866
2620
26212.4.7 / 2011-10-05
2622==================
2623
2624 * Added mkdirp to express(1). Closes #795
2625 * Added simple _json-config_ example
2626 * Added shorthand for the parsed request's pathname via `req.path`
2627 * Changed connect dep to 1.7.x to fix npm issue...
2628 * Fixed `res.redirect()` __HEAD__ support. [reported by xerox]
2629 * Fixed `req.flash()`, only escape args
2630 * Fixed absolute path checking on windows. Closes #829 [reported by andrewpmckenzie]
2631
26322.4.6 / 2011-08-22
2633==================
2634
2635 * Fixed multiple param callback regression. Closes #824 [reported by TroyGoode]
2636
26372.4.5 / 2011-08-19
2638==================
2639
2640 * Added support for routes to handle errors. Closes #809
2641 * Added `app.routes.all()`. Closes #803
2642 * Added "basepath" setting to work in conjunction with reverse proxies etc.
2643 * Refactored `Route` to use a single array of callbacks
2644 * Added support for multiple callbacks for `app.param()`. Closes #801
2645Closes #805
2646 * Changed: removed .call(self) for route callbacks
2647 * Dependency: `qs >= 0.3.1`
2648 * Fixed `res.redirect()` on windows due to `join()` usage. Closes #808
2649
26502.4.4 / 2011-08-05
2651==================
2652
2653 * Fixed `res.header()` intention of a set, even when `undefined`
2654 * Fixed `*`, value no longer required
2655 * Fixed `res.send(204)` support. Closes #771
2656
26572.4.3 / 2011-07-14
2658==================
2659
2660 * Added docs for `status` option special-case. Closes #739
2661 * Fixed `options.filename`, exposing the view path to template engines
2662
26632.4.2. / 2011-07-06
2664==================
2665
2666 * Revert "removed jsonp stripping" for XSS
2667
26682.4.1 / 2011-07-06
2669==================
2670
2671 * Added `res.json()` JSONP support. Closes #737
2672 * Added _extending-templates_ example. Closes #730
2673 * Added "strict routing" setting for trailing slashes
2674 * Added support for multiple envs in `app.configure()` calls. Closes #735
2675 * Changed: `res.send()` using `res.json()`
2676 * Changed: when cookie `path === null` don't default it
2677 * Changed; default cookie path to "home" setting. Closes #731
2678 * Removed _pids/logs_ creation from express(1)
2679
26802.4.0 / 2011-06-28
2681==================
2682
2683 * Added chainable `res.status(code)`
2684 * Added `res.json()`, an explicit version of `res.send(obj)`
2685 * Added simple web-service example
2686
26872.3.12 / 2011-06-22
2688==================
2689
2690 * \#express is now on freenode! come join!
2691 * Added `req.get(field, param)`
2692 * Added links to Japanese documentation, thanks @hideyukisaito!
2693 * Added; the `express(1)` generated app outputs the env
2694 * Added `content-negotiation` example
2695 * Dependency: connect >= 1.5.1 < 2.0.0
2696 * Fixed view layout bug. Closes #720
2697 * Fixed; ignore body on 304. Closes #701
2698
26992.3.11 / 2011-06-04
2700==================
2701
2702 * Added `npm test`
2703 * Removed generation of dummy test file from `express(1)`
2704 * Fixed; `express(1)` adds express as a dep
2705 * Fixed; prune on `prepublish`
2706
27072.3.10 / 2011-05-27
2708==================
2709
2710 * Added `req.route`, exposing the current route
2711 * Added _package.json_ generation support to `express(1)`
2712 * Fixed call to `app.param()` function for optional params. Closes #682
2713
27142.3.9 / 2011-05-25
2715==================
2716
2717 * Fixed bug-ish with `../' in `res.partial()` calls
2718
27192.3.8 / 2011-05-24
2720==================
2721
2722 * Fixed `app.options()`
2723
27242.3.7 / 2011-05-23
2725==================
2726
2727 * Added route `Collection`, ex: `app.get('/user/:id').remove();`
2728 * Added support for `app.param(fn)` to define param logic
2729 * Removed `app.param()` support for callback with return value
2730 * Removed module.parent check from express(1) generated app. Closes #670
2731 * Refactored router. Closes #639
2732
27332.3.6 / 2011-05-20
2734==================
2735
2736 * Changed; using devDependencies instead of git submodules
2737 * Fixed redis session example
2738 * Fixed markdown example
2739 * Fixed view caching, should not be enabled in development
2740
27412.3.5 / 2011-05-20
2742==================
2743
2744 * Added export `.view` as alias for `.View`
2745
27462.3.4 / 2011-05-08
2747==================
2748
2749 * Added `./examples/say`
2750 * Fixed `res.sendfile()` bug preventing the transfer of files with spaces
2751
27522.3.3 / 2011-05-03
2753==================
2754
2755 * Added "case sensitive routes" option.
2756 * Changed; split methods supported per rfc [slaskis]
2757 * Fixed route-specific middleware when using the same callback function several times
2758
27592.3.2 / 2011-04-27
2760==================
2761
2762 * Fixed view hints
2763
27642.3.1 / 2011-04-26
2765==================
2766
2767 * Added `app.match()` as `app.match.all()`
2768 * Added `app.lookup()` as `app.lookup.all()`
2769 * Added `app.remove()` for `app.remove.all()`
2770 * Added `app.remove.VERB()`
2771 * Fixed template caching collision issue. Closes #644
2772 * Moved router over from connect and started refactor
2773
27742.3.0 / 2011-04-25
2775==================
2776
2777 * Added options support to `res.clearCookie()`
2778 * Added `res.helpers()` as alias of `res.locals()`
2779 * Added; json defaults to UTF-8 with `res.send()`. Closes #632. [Daniel * Dependency `connect >= 1.4.0`
2780 * Changed; auto set Content-Type in res.attachement [Aaron Heckmann]
2781 * Renamed "cache views" to "view cache". Closes #628
2782 * Fixed caching of views when using several apps. Closes #637
2783 * Fixed gotcha invoking `app.param()` callbacks once per route middleware.
2784Closes #638
2785 * Fixed partial lookup precedence. Closes #631
2786Shaw]
2787
27882.2.2 / 2011-04-12
2789==================
2790
2791 * Added second callback support for `res.download()` connection errors
2792 * Fixed `filename` option passing to template engine
2793
27942.2.1 / 2011-04-04
2795==================
2796
2797 * Added `layout(path)` helper to change the layout within a view. Closes #610
2798 * Fixed `partial()` collection object support.
2799 Previously only anything with `.length` would work.
2800 When `.length` is present one must still be aware of holes,
2801 however now `{ collection: {foo: 'bar'}}` is valid, exposes
2802 `keyInCollection` and `keysInCollection`.
2803
2804 * Performance improved with better view caching
2805 * Removed `request` and `response` locals
2806 * Changed; errorHandler page title is now `Express` instead of `Connect`
2807
28082.2.0 / 2011-03-30
2809==================
2810
2811 * Added `app.lookup.VERB()`, ex `app.lookup.put('/user/:id')`. Closes #606
2812 * Added `app.match.VERB()`, ex `app.match.put('/user/12')`. Closes #606
2813 * Added `app.VERB(path)` as alias of `app.lookup.VERB()`.
2814 * Dependency `connect >= 1.2.0`
2815
28162.1.1 / 2011-03-29
2817==================
2818
2819 * Added; expose `err.view` object when failing to locate a view
2820 * Fixed `res.partial()` call `next(err)` when no callback is given [reported by aheckmann]
2821 * Fixed; `res.send(undefined)` responds with 204 [aheckmann]
2822
28232.1.0 / 2011-03-24
2824==================
2825
2826 * Added `<root>/_?<name>` partial lookup support. Closes #447
2827 * Added `request`, `response`, and `app` local variables
2828 * Added `settings` local variable, containing the app's settings
2829 * Added `req.flash()` exception if `req.session` is not available
2830 * Added `res.send(bool)` support (json response)
2831 * Fixed stylus example for latest version
2832 * Fixed; wrap try/catch around `res.render()`
2833
28342.0.0 / 2011-03-17
2835==================
2836
2837 * Fixed up index view path alternative.
2838 * Changed; `res.locals()` without object returns the locals
2839
28402.0.0rc3 / 2011-03-17
2841==================
2842
2843 * Added `res.locals(obj)` to compliment `res.local(key, val)`
2844 * Added `res.partial()` callback support
2845 * Fixed recursive error reporting issue in `res.render()`
2846
28472.0.0rc2 / 2011-03-17
2848==================
2849
2850 * Changed; `partial()` "locals" are now optional
2851 * Fixed `SlowBuffer` support. Closes #584 [reported by tyrda01]
2852 * Fixed .filename view engine option [reported by drudge]
2853 * Fixed blog example
2854 * Fixed `{req,res}.app` reference when mounting [Ben Weaver]
2855
28562.0.0rc / 2011-03-14
2857==================
2858
2859 * Fixed; expose `HTTPSServer` constructor
2860 * Fixed express(1) default test charset. Closes #579 [reported by secoif]
2861 * Fixed; default charset to utf-8 instead of utf8 for lame IE [reported by NickP]
2862
28632.0.0beta3 / 2011-03-09
2864==================
2865
2866 * Added support for `res.contentType()` literal
2867 The original `res.contentType('.json')`,
2868 `res.contentType('application/json')`, and `res.contentType('json')`
2869 will work now.
2870 * Added `res.render()` status option support back
2871 * Added charset option for `res.render()`
2872 * Added `.charset` support (via connect 1.0.4)
2873 * Added view resolution hints when in development and a lookup fails
2874 * Added layout lookup support relative to the page view.
2875 For example while rendering `./views/user/index.jade` if you create
2876 `./views/user/layout.jade` it will be used in favour of the root layout.
2877 * Fixed `res.redirect()`. RFC states absolute url [reported by unlink]
2878 * Fixed; default `res.send()` string charset to utf8
2879 * Removed `Partial` constructor (not currently used)
2880
28812.0.0beta2 / 2011-03-07
2882==================
2883
2884 * Added res.render() `.locals` support back to aid in migration process
2885 * Fixed flash example
2886
28872.0.0beta / 2011-03-03
2888==================
2889
2890 * Added HTTPS support
2891 * Added `res.cookie()` maxAge support
2892 * Added `req.header()` _Referrer_ / _Referer_ special-case, either works
2893 * Added mount support for `res.redirect()`, now respects the mount-point
2894 * Added `union()` util, taking place of `merge(clone())` combo
2895 * Added stylus support to express(1) generated app
2896 * Added secret to session middleware used in examples and generated app
2897 * Added `res.local(name, val)` for progressive view locals
2898 * Added default param support to `req.param(name, default)`
2899 * Added `app.disabled()` and `app.enabled()`
2900 * Added `app.register()` support for omitting leading ".", either works
2901 * Added `res.partial()`, using the same interface as `partial()` within a view. Closes #539
2902 * Added `app.param()` to map route params to async/sync logic
2903 * Added; aliased `app.helpers()` as `app.locals()`. Closes #481
2904 * Added extname with no leading "." support to `res.contentType()`
2905 * Added `cache views` setting, defaulting to enabled in "production" env
2906 * Added index file partial resolution, eg: partial('user') may try _views/user/index.jade_.
2907 * Added `req.accepts()` support for extensions
2908 * Changed; `res.download()` and `res.sendfile()` now utilize Connect's
2909 static file server `connect.static.send()`.
2910 * Changed; replaced `connect.utils.mime()` with npm _mime_ module
2911 * Changed; allow `req.query` to be pre-defined (via middleware or other parent
2912 * Changed view partial resolution, now relative to parent view
2913 * Changed view engine signature. no longer `engine.render(str, options, callback)`, now `engine.compile(str, options) -> Function`, the returned function accepts `fn(locals)`.
2914 * Fixed `req.param()` bug returning Array.prototype methods. Closes #552
2915 * Fixed; using `Stream#pipe()` instead of `sys.pump()` in `res.sendfile()`
2916 * Fixed; using _qs_ module instead of _querystring_
2917 * Fixed; strip unsafe chars from jsonp callbacks
2918 * Removed "stream threshold" setting
2919
29201.0.8 / 2011-03-01
2921==================
2922
2923 * Allow `req.query` to be pre-defined (via middleware or other parent app)
2924 * "connect": ">= 0.5.0 < 1.0.0". Closes #547
2925 * Removed the long deprecated __EXPRESS_ENV__ support
2926
29271.0.7 / 2011-02-07
2928==================
2929
2930 * Fixed `render()` setting inheritance.
2931 Mounted apps would not inherit "view engine"
2932
29331.0.6 / 2011-02-07
2934==================
2935
2936 * Fixed `view engine` setting bug when period is in dirname
2937
29381.0.5 / 2011-02-05
2939==================
2940
2941 * Added secret to generated app `session()` call
2942
29431.0.4 / 2011-02-05
2944==================
2945
2946 * Added `qs` dependency to _package.json_
2947 * Fixed namespaced `require()`s for latest connect support
2948
29491.0.3 / 2011-01-13
2950==================
2951
2952 * Remove unsafe characters from JSONP callback names [Ryan Grove]
2953
29541.0.2 / 2011-01-10
2955==================
2956
2957 * Removed nested require, using `connect.router`
2958
29591.0.1 / 2010-12-29
2960==================
2961
2962 * Fixed for middleware stacked via `createServer()`
2963 previously the `foo` middleware passed to `createServer(foo)`
2964 would not have access to Express methods such as `res.send()`
2965 or props like `req.query` etc.
2966
29671.0.0 / 2010-11-16
2968==================
2969
2970 * Added; deduce partial object names from the last segment.
2971 For example by default `partial('forum/post', postObject)` will
2972 give you the _post_ object, providing a meaningful default.
2973 * Added http status code string representation to `res.redirect()` body
2974 * Added; `res.redirect()` supporting _text/plain_ and _text/html_ via __Accept__.
2975 * Added `req.is()` to aid in content negotiation
2976 * Added partial local inheritance [suggested by masylum]. Closes #102
2977 providing access to parent template locals.
2978 * Added _-s, --session[s]_ flag to express(1) to add session related middleware
2979 * Added _--template_ flag to express(1) to specify the
2980 template engine to use.
2981 * Added _--css_ flag to express(1) to specify the
2982 stylesheet engine to use (or just plain css by default).
2983 * Added `app.all()` support [thanks aheckmann]
2984 * Added partial direct object support.
2985 You may now `partial('user', user)` providing the "user" local,
2986 vs previously `partial('user', { object: user })`.
2987 * Added _route-separation_ example since many people question ways
2988 to do this with CommonJS modules. Also view the _blog_ example for
2989 an alternative.
2990 * Performance; caching view path derived partial object names
2991 * Fixed partial local inheritance precedence. [reported by Nick Poulden] Closes #454
2992 * Fixed jsonp support; _text/javascript_ as per mailinglist discussion
2993
29941.0.0rc4 / 2010-10-14
2995==================
2996
2997 * Added _NODE_ENV_ support, _EXPRESS_ENV_ is deprecated and will be removed in 1.0.0
2998 * Added route-middleware support (very helpful, see the [docs](http://expressjs.com/guide.html#Route-Middleware))
2999 * Added _jsonp callback_ setting to enable/disable jsonp autowrapping [Dav Glass]
3000 * Added callback query check on response.send to autowrap JSON objects for simple webservice implementations [Dav Glass]
3001 * Added `partial()` support for array-like collections. Closes #434
3002 * Added support for swappable querystring parsers
3003 * Added session usage docs. Closes #443
3004 * Added dynamic helper caching. Closes #439 [suggested by maritz]
3005 * Added authentication example
3006 * Added basic Range support to `res.sendfile()` (and `res.download()` etc)
3007 * Changed; `express(1)` generated app using 2 spaces instead of 4
3008 * Default env to "development" again [aheckmann]
3009 * Removed _context_ option is no more, use "scope"
3010 * Fixed; exposing _./support_ libs to examples so they can run without installs
3011 * Fixed mvc example
3012
30131.0.0rc3 / 2010-09-20
3014==================
3015
3016 * Added confirmation for `express(1)` app generation. Closes #391
3017 * Added extending of flash formatters via `app.flashFormatters`
3018 * Added flash formatter support. Closes #411
3019 * Added streaming support to `res.sendfile()` using `sys.pump()` when >= "stream threshold"
3020 * Added _stream threshold_ setting for `res.sendfile()`
3021 * Added `res.send()` __HEAD__ support
3022 * Added `res.clearCookie()`
3023 * Added `res.cookie()`
3024 * Added `res.render()` headers option
3025 * Added `res.redirect()` response bodies
3026 * Added `res.render()` status option support. Closes #425 [thanks aheckmann]
3027 * Fixed `res.sendfile()` responding with 403 on malicious path
3028 * Fixed `res.download()` bug; when an error occurs remove _Content-Disposition_
3029 * Fixed; mounted apps settings now inherit from parent app [aheckmann]
3030 * Fixed; stripping Content-Length / Content-Type when 204
3031 * Fixed `res.send()` 204. Closes #419
3032 * Fixed multiple _Set-Cookie_ headers via `res.header()`. Closes #402
3033 * Fixed bug messing with error handlers when `listenFD()` is called instead of `listen()`. [thanks guillermo]
3034
3035
30361.0.0rc2 / 2010-08-17
3037==================
3038
3039 * Added `app.register()` for template engine mapping. Closes #390
3040 * Added `res.render()` callback support as second argument (no options)
3041 * Added callback support to `res.download()`
3042 * Added callback support for `res.sendfile()`
3043 * Added support for middleware access via `express.middlewareName()` vs `connect.middlewareName()`
3044 * Added "partials" setting to docs
3045 * Added default expresso tests to `express(1)` generated app. Closes #384
3046 * Fixed `res.sendfile()` error handling, defer via `next()`
3047 * Fixed `res.render()` callback when a layout is used [thanks guillermo]
3048 * Fixed; `make install` creating ~/.node_libraries when not present
3049 * Fixed issue preventing error handlers from being defined anywhere. Closes #387
3050
30511.0.0rc / 2010-07-28
3052==================
3053
3054 * Added mounted hook. Closes #369
3055 * Added connect dependency to _package.json_
3056
3057 * Removed "reload views" setting and support code
3058 development env never caches, production always caches.
3059
3060 * Removed _param_ in route callbacks, signature is now
3061 simply (req, res, next), previously (req, res, params, next).
3062 Use _req.params_ for path captures, _req.query_ for GET params.
3063
3064 * Fixed "home" setting
3065 * Fixed middleware/router precedence issue. Closes #366
3066 * Fixed; _configure()_ callbacks called immediately. Closes #368
3067
30681.0.0beta2 / 2010-07-23
3069==================
3070
3071 * Added more examples
3072 * Added; exporting `Server` constructor
3073 * Added `Server#helpers()` for view locals
3074 * Added `Server#dynamicHelpers()` for dynamic view locals. Closes #349
3075 * Added support for absolute view paths
3076 * Added; _home_ setting defaults to `Server#route` for mounted apps. Closes #363
3077 * Added Guillermo Rauch to the contributor list
3078 * Added support for "as" for non-collection partials. Closes #341
3079 * Fixed _install.sh_, ensuring _~/.node_libraries_ exists. Closes #362 [thanks jf]
3080 * Fixed `res.render()` exceptions, now passed to `next()` when no callback is given [thanks guillermo]
3081 * Fixed instanceof `Array` checks, now `Array.isArray()`
3082 * Fixed express(1) expansion of public dirs. Closes #348
3083 * Fixed middleware precedence. Closes #345
3084 * Fixed view watcher, now async [thanks aheckmann]
3085
30861.0.0beta / 2010-07-15
3087==================
3088
3089 * Re-write
3090 - much faster
3091 - much lighter
3092 - Check [ExpressJS.com](http://expressjs.com) for migration guide and updated docs
3093
30940.14.0 / 2010-06-15
3095==================
3096
3097 * Utilize relative requires
3098 * Added Static bufferSize option [aheckmann]
3099 * Fixed caching of view and partial subdirectories [aheckmann]
3100 * Fixed mime.type() comments now that ".ext" is not supported
3101 * Updated haml submodule
3102 * Updated class submodule
3103 * Removed bin/express
3104
31050.13.0 / 2010-06-01
3106==================
3107
3108 * Added node v0.1.97 compatibility
3109 * Added support for deleting cookies via Request#cookie('key', null)
3110 * Updated haml submodule
3111 * Fixed not-found page, now using using charset utf-8
3112 * Fixed show-exceptions page, now using using charset utf-8
3113 * Fixed view support due to fs.readFile Buffers
3114 * Changed; mime.type() no longer accepts ".type" due to node extname() changes
3115
31160.12.0 / 2010-05-22
3117==================
3118
3119 * Added node v0.1.96 compatibility
3120 * Added view `helpers` export which act as additional local variables
3121 * Updated haml submodule
3122 * Changed ETag; removed inode, modified time only
3123 * Fixed LF to CRLF for setting multiple cookies
3124 * Fixed cookie complation; values are now urlencoded
3125 * Fixed cookies parsing; accepts quoted values and url escaped cookies
3126
31270.11.0 / 2010-05-06
3128==================
3129
3130 * Added support for layouts using different engines
3131 - this.render('page.html.haml', { layout: 'super-cool-layout.html.ejs' })
3132 - this.render('page.html.haml', { layout: 'foo' }) // assumes 'foo.html.haml'
3133 - this.render('page.html.haml', { layout: false }) // no layout
3134 * Updated ext submodule
3135 * Updated haml submodule
3136 * Fixed EJS partial support by passing along the context. Issue #307
3137
31380.10.1 / 2010-05-03
3139==================
3140
3141 * Fixed binary uploads.
3142
31430.10.0 / 2010-04-30
3144==================
3145
3146 * Added charset support via Request#charset (automatically assigned to 'UTF-8' when respond()'s
3147 encoding is set to 'utf8' or 'utf-8'.
3148 * Added "encoding" option to Request#render(). Closes #299
3149 * Added "dump exceptions" setting, which is enabled by default.
3150 * Added simple ejs template engine support
3151 * Added error response support for text/plain, application/json. Closes #297
3152 * Added callback function param to Request#error()
3153 * Added Request#sendHead()
3154 * Added Request#stream()
3155 * Added support for Request#respond(304, null) for empty response bodies
3156 * Added ETag support to Request#sendfile()
3157 * Added options to Request#sendfile(), passed to fs.createReadStream()
3158 * Added filename arg to Request#download()
3159 * Performance enhanced due to pre-reversing plugins so that plugins.reverse() is not called on each request
3160 * Performance enhanced by preventing several calls to toLowerCase() in Router#match()
3161 * Changed; Request#sendfile() now streams
3162 * Changed; Renamed Request#halt() to Request#respond(). Closes #289
3163 * Changed; Using sys.inspect() instead of JSON.encode() for error output
3164 * Changed; run() returns the http.Server instance. Closes #298
3165 * Changed; Defaulting Server#host to null (INADDR_ANY)
3166 * Changed; Logger "common" format scale of 0.4f
3167 * Removed Logger "request" format
3168 * Fixed; Catching ENOENT in view caching, preventing error when "views/partials" is not found
3169 * Fixed several issues with http client
3170 * Fixed Logger Content-Length output
3171 * Fixed bug preventing Opera from retaining the generated session id. Closes #292
3172
31730.9.0 / 2010-04-14
3174==================
3175
3176 * Added DSL level error() route support
3177 * Added DSL level notFound() route support
3178 * Added Request#error()
3179 * Added Request#notFound()
3180 * Added Request#render() callback function. Closes #258
3181 * Added "max upload size" setting
3182 * Added "magic" variables to collection partials (\_\_index\_\_, \_\_length\_\_, \_\_isFirst\_\_, \_\_isLast\_\_). Closes #254
3183 * Added [haml.js](http://github.com/visionmedia/haml.js) submodule; removed haml-js
3184 * Added callback function support to Request#halt() as 3rd/4th arg
3185 * Added preprocessing of route param wildcards using param(). Closes #251
3186 * Added view partial support (with collections etc)
3187 * Fixed bug preventing falsey params (such as ?page=0). Closes #286
3188 * Fixed setting of multiple cookies. Closes #199
3189 * Changed; view naming convention is now NAME.TYPE.ENGINE (for example page.html.haml)
3190 * Changed; session cookie is now httpOnly
3191 * Changed; Request is no longer global
3192 * Changed; Event is no longer global
3193 * Changed; "sys" module is no longer global
3194 * Changed; moved Request#download to Static plugin where it belongs
3195 * Changed; Request instance created before body parsing. Closes #262
3196 * Changed; Pre-caching views in memory when "cache view contents" is enabled. Closes #253
3197 * Changed; Pre-caching view partials in memory when "cache view partials" is enabled
3198 * Updated support to node --version 0.1.90
3199 * Updated dependencies
3200 * Removed set("session cookie") in favour of use(Session, { cookie: { ... }})
3201 * Removed utils.mixin(); use Object#mergeDeep()
3202
32030.8.0 / 2010-03-19
3204==================
3205
3206 * Added coffeescript example app. Closes #242
3207 * Changed; cache api now async friendly. Closes #240
3208 * Removed deprecated 'express/static' support. Use 'express/plugins/static'
3209
32100.7.6 / 2010-03-19
3211==================
3212
3213 * Added Request#isXHR. Closes #229
3214 * Added `make install` (for the executable)
3215 * Added `express` executable for setting up simple app templates
3216 * Added "GET /public/*" to Static plugin, defaulting to <root>/public
3217 * Added Static plugin
3218 * Fixed; Request#render() only calls cache.get() once
3219 * Fixed; Namespacing View caches with "view:"
3220 * Fixed; Namespacing Static caches with "static:"
3221 * Fixed; Both example apps now use the Static plugin
3222 * Fixed set("views"). Closes #239
3223 * Fixed missing space for combined log format
3224 * Deprecated Request#sendfile() and 'express/static'
3225 * Removed Server#running
3226
32270.7.5 / 2010-03-16
3228==================
3229
3230 * Added Request#flash() support without args, now returns all flashes
3231 * Updated ext submodule
3232
32330.7.4 / 2010-03-16
3234==================
3235
3236 * Fixed session reaper
3237 * Changed; class.js replacing js-oo Class implementation (quite a bit faster, no browser cruft)
3238
32390.7.3 / 2010-03-16
3240==================
3241
3242 * Added package.json
3243 * Fixed requiring of haml / sass due to kiwi removal
3244
32450.7.2 / 2010-03-16
3246==================
3247
3248 * Fixed GIT submodules (HAH!)
3249
32500.7.1 / 2010-03-16
3251==================
3252
3253 * Changed; Express now using submodules again until a PM is adopted
3254 * Changed; chat example using millisecond conversions from ext
3255
32560.7.0 / 2010-03-15
3257==================
3258
3259 * Added Request#pass() support (finds the next matching route, or the given path)
3260 * Added Logger plugin (default "common" format replaces CommonLogger)
3261 * Removed Profiler plugin
3262 * Removed CommonLogger plugin
3263
32640.6.0 / 2010-03-11
3265==================
3266
3267 * Added seed.yml for kiwi package management support
3268 * Added HTTP client query string support when method is GET. Closes #205
3269
3270 * Added support for arbitrary view engines.
3271 For example "foo.engine.html" will now require('engine'),
3272 the exports from this module are cached after the first require().
3273
3274 * Added async plugin support
3275
3276 * Removed usage of RESTful route funcs as http client
3277 get() etc, use http.get() and friends
3278
3279 * Removed custom exceptions
3280
32810.5.0 / 2010-03-10
3282==================
3283
3284 * Added ext dependency (library of js extensions)
3285 * Removed extname() / basename() utils. Use path module
3286 * Removed toArray() util. Use arguments.values
3287 * Removed escapeRegexp() util. Use RegExp.escape()
3288 * Removed process.mixin() dependency. Use utils.mixin()
3289 * Removed Collection
3290 * Removed ElementCollection
3291 * Shameless self promotion of ebook "Advanced JavaScript" (http://dev-mag.com) ;)
3292
32930.4.0 / 2010-02-11
3294==================
3295
3296 * Added flash() example to sample upload app
3297 * Added high level restful http client module (express/http)
3298 * Changed; RESTful route functions double as HTTP clients. Closes #69
3299 * Changed; throwing error when routes are added at runtime
3300 * Changed; defaulting render() context to the current Request. Closes #197
3301 * Updated haml submodule
3302
33030.3.0 / 2010-02-11
3304==================
3305
3306 * Updated haml / sass submodules. Closes #200
3307 * Added flash message support. Closes #64
3308 * Added accepts() now allows multiple args. fixes #117
3309 * Added support for plugins to halt. Closes #189
3310 * Added alternate layout support. Closes #119
3311 * Removed Route#run(). Closes #188
3312 * Fixed broken specs due to use(Cookie) missing
3313
33140.2.1 / 2010-02-05
3315==================
3316
3317 * Added "plot" format option for Profiler (for gnuplot processing)
3318 * Added request number to Profiler plugin
3319 * Fixed binary encoding for multi-part file uploads, was previously defaulting to UTF8
3320 * Fixed issue with routes not firing when not files are present. Closes #184
3321 * Fixed process.Promise -> events.Promise
3322
33230.2.0 / 2010-02-03
3324==================
3325
3326 * Added parseParam() support for name[] etc. (allows for file inputs with "multiple" attr) Closes #180
3327 * Added Both Cache and Session option "reapInterval" may be "reapEvery". Closes #174
3328 * Added expiration support to cache api with reaper. Closes #133
3329 * Added cache Store.Memory#reap()
3330 * Added Cache; cache api now uses first class Cache instances
3331 * Added abstract session Store. Closes #172
3332 * Changed; cache Memory.Store#get() utilizing Collection
3333 * Renamed MemoryStore -> Store.Memory
3334 * Fixed use() of the same plugin several time will always use latest options. Closes #176
3335
33360.1.0 / 2010-02-03
3337==================
3338
3339 * Changed; Hooks (before / after) pass request as arg as well as evaluated in their context
3340 * Updated node support to 0.1.27 Closes #169
3341 * Updated dirname(__filename) -> __dirname
3342 * Updated libxmljs support to v0.2.0
3343 * Added session support with memory store / reaping
3344 * Added quick uid() helper
3345 * Added multi-part upload support
3346 * Added Sass.js support / submodule
3347 * Added production env caching view contents and static files
3348 * Added static file caching. Closes #136
3349 * Added cache plugin with memory stores
3350 * Added support to StaticFile so that it works with non-textual files.
3351 * Removed dirname() helper
3352 * Removed several globals (now their modules must be required)
3353
33540.0.2 / 2010-01-10
3355==================
3356
3357 * Added view benchmarks; currently haml vs ejs
3358 * Added Request#attachment() specs. Closes #116
3359 * Added use of node's parseQuery() util. Closes #123
3360 * Added `make init` for submodules
3361 * Updated Haml
3362 * Updated sample chat app to show messages on load
3363 * Updated libxmljs parseString -> parseHtmlString
3364 * Fixed `make init` to work with older versions of git
3365 * Fixed specs can now run independent specs for those who cant build deps. Closes #127
3366 * Fixed issues introduced by the node url module changes. Closes 126.
3367 * Fixed two assertions failing due to Collection#keys() returning strings
3368 * Fixed faulty Collection#toArray() spec due to keys() returning strings
3369 * Fixed `make test` now builds libxmljs.node before testing
3370
33710.0.1 / 2010-01-03
3372==================
3373
3374 * Initial release