Comparing version 3.2.0 to 3.3.0
122
History.md
@@ -0,1 +1,11 @@ | ||
3.3.0 / 2014-10-17 | ||
================== | ||
* deps: debug@~2.1.0 | ||
- Implement `DEBUG_FD` env variable support | ||
* deps: finalhandler@0.3.1 | ||
- Terminate in progress response only on error | ||
- Use `on-finished` to determine request status | ||
- deps: debug@~2.1.0 | ||
3.2.0 / 2014-09-08 | ||
@@ -67,2 +77,114 @@ ================== | ||
2.27.0 / 2014-10-16 | ||
=================== | ||
* Use `http-errors` module for creating errors | ||
* Use `utils-merge` module for merging objects | ||
* deps: body-parser@~1.9.0 | ||
- include the charset in "unsupported charset" error message | ||
- include the encoding in "unsupported content encoding" error message | ||
- deps: depd@~1.0.0 | ||
* deps: compression@~1.2.0 | ||
- deps: debug@~2.1.0 | ||
* deps: connect-timeout@~1.4.0 | ||
- Create errors with `http-errors` | ||
- deps: debug@~2.1.0 | ||
* deps: debug@~2.1.0 | ||
- Implement `DEBUG_FD` env variable support | ||
* deps: depd@~1.0.0 | ||
* deps: express-session@~1.9.0 | ||
- deps: debug@~2.1.0 | ||
- deps: depd@~1.0.0 | ||
* deps: finalhandler@0.3.1 | ||
- Terminate in progress response only on error | ||
- Use `on-finished` to determine request status | ||
- deps: debug@~2.1.0 | ||
* deps: method-override@~2.3.0 | ||
- deps: debug@~2.1.0 | ||
* deps: morgan@~1.4.0 | ||
- Add `debug` messages | ||
- deps: depd@~1.0.0 | ||
* deps: response-time@~2.2.0 | ||
- Add `header` option for custom header name | ||
- Add `suffix` option | ||
- Change `digits` argument to an `options` argument | ||
- deps: depd@~1.0.0 | ||
* deps: serve-favicon@~2.1.6 | ||
- deps: etag@~1.5.0 | ||
* deps: serve-index@~1.5.0 | ||
- Add `dir` argument to `filter` function | ||
- Add icon for mkv files | ||
- Create errors with `http-errors` | ||
- Fix incorrect 403 on Windows and Node.js 0.11 | ||
- Lookup icon by mime type for greater icon support | ||
- Support using tokens multiple times | ||
- deps: accepts@~1.1.2 | ||
- deps: debug@~2.1.0 | ||
- deps: mime-types@~2.0.2 | ||
* deps: serve-static@~1.7.0 | ||
- deps: send@0.10.0 | ||
2.26.6 / 2014-10-15 | ||
=================== | ||
* deps: compression@~1.1.2 | ||
- deps: accepts@~1.1.2 | ||
- deps: compressible@~2.0.1 | ||
* deps: csurf@~1.6.2 | ||
- bump http-errors | ||
- fix cookie name when using `cookie: true` | ||
* deps: errorhandler@~1.2.2 | ||
- deps: accepts@~1.1.2 | ||
2.26.5 / 2014-10-08 | ||
=================== | ||
* Fix accepting non-object arguments to `logger` | ||
* deps: serve-static@~1.6.4 | ||
- Fix redirect loop when index file serving disabled | ||
2.26.4 / 2014-10-02 | ||
=================== | ||
* deps: morgan@~1.3.2 | ||
- Fix `req.ip` integration when `immediate: false` | ||
* deps: type-is@~1.5.2 | ||
- deps: mime-types@~2.0.2 | ||
2.26.3 / 2014-09-24 | ||
=================== | ||
* deps: body-parser@~1.8.4 | ||
- fix content encoding to be case-insensitive | ||
* deps: serve-favicon@~2.1.5 | ||
- deps: etag@~1.4.0 | ||
* deps: serve-static@~1.6.3 | ||
- deps: send@0.9.3 | ||
2.26.2 / 2014-09-19 | ||
=================== | ||
* deps: body-parser@~1.8.3 | ||
- deps: qs@2.2.4 | ||
* deps: qs@2.2.4 | ||
- Fix issue with object keys starting with numbers truncated | ||
2.26.1 / 2014-09-15 | ||
=================== | ||
* deps: body-parser@~1.8.2 | ||
- deps: depd@0.4.5 | ||
* deps: depd@0.4.5 | ||
* deps: express-session@~1.8.2 | ||
- Use `crc` instead of `buffer-crc32` for speed | ||
- deps: depd@0.4.5 | ||
* deps: morgan@~1.3.1 | ||
- Remove un-used `bytes` dependency | ||
- deps: depd@0.4.5 | ||
* deps: serve-favicon@~2.1.4 | ||
- Fix content headers being sent in 304 response | ||
- deps: etag@~1.3.1 | ||
* deps: serve-static@~1.6.2 | ||
- deps: send@0.9.2 | ||
2.26.0 / 2014-09-08 | ||
@@ -69,0 +191,0 @@ =================== |
@@ -84,4 +84,4 @@ /*! | ||
var stack = this.stack | ||
, search = 1 + req.url.indexOf('?') | ||
, pathlength = search ? search - 1 : req.url.length | ||
, searchIndex = req.url.indexOf('?') | ||
, pathlength = searchIndex !== -1 ? searchIndex : req.url.length | ||
, fqdn = 1 + req.url.substr(0, pathlength).indexOf('://') | ||
@@ -88,0 +88,0 @@ , protohost = fqdn ? req.url.substr(0, req.url.indexOf('/', 2 + fqdn)) : '' |
{ | ||
"name": "connect", | ||
"description": "High performance middleware framework", | ||
"version": "3.2.0", | ||
"version": "3.3.0", | ||
"author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)", | ||
@@ -20,4 +20,4 @@ "contributors": [ | ||
"dependencies": { | ||
"debug": "~2.0.0", | ||
"finalhandler": "0.2.0", | ||
"debug": "~2.1.0", | ||
"finalhandler": "0.3.1", | ||
"parseurl": "~1.3.0", | ||
@@ -30,3 +30,3 @@ "utils-merge": "1.0.0" | ||
"should": "~4.0.0", | ||
"supertest": "~0.13.0" | ||
"supertest": "~0.14.0" | ||
}, | ||
@@ -33,0 +33,0 @@ "license": "MIT", |
@@ -63,3 +63,3 @@ # Connect | ||
- [cookie-session](https://github.com/expressjs/cookie-session) - previously `cookieSession` | ||
- [csurf](https://github.com/expressjs/csurf) - previousy `csrf` | ||
- [csurf](https://github.com/expressjs/csurf) - previously `csrf` | ||
- [errorhandler](https://github.com/expressjs/errorhandler) - previously `error-handler` | ||
@@ -71,3 +71,3 @@ - [express-session](https://github.com/expressjs/session) - previously `session` | ||
- [serve-favicon](https://github.com/expressjs/serve-favicon) - previously `favicon` | ||
- [serve-index](https://github.com/expressjs/serve-index) - previousy `directory` | ||
- [serve-index](https://github.com/expressjs/serve-index) - previously `directory` | ||
- [serve-static](https://github.com/expressjs/serve-static) - previously `static` | ||
@@ -74,0 +74,0 @@ - [vhost](https://github.com/expressjs/vhost) - previously `vhost` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
70494
+ Addeddebug@2.1.3(transitive)
+ Addedee-first@1.1.0(transitive)
+ Addedfinalhandler@0.3.1(transitive)
+ Addedms@0.7.0(transitive)
+ Addedon-finished@2.1.1(transitive)
- Removeddebug@2.0.0(transitive)
- Removedfinalhandler@0.2.0(transitive)
- Removedms@0.6.2(transitive)
Updateddebug@~2.1.0
Updatedfinalhandler@0.3.1