forked from expressjs/express
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
307 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
- "0.11" | ||
matrix: | ||
allow_failures: | ||
- node_js: "0.11" | ||
fast_finish: true | ||
- "0.12" | ||
sudo: false | ||
script: "npm run-script test-travis" | ||
after_script: "npm install [email protected] && cat ./coverage/lcov.info | coveralls" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
unreleased | ||
========== | ||
|
||
* Fix `"trust proxy"` setting to inherit when app is mounted | ||
* Generate `ETag`s for all request responses | ||
- No longer restricted to only responses for `GET` and `HEAD` requests | ||
* Use `content-type` to parse `Content-Type` headers | ||
* deps: [email protected] | ||
* deps: [email protected] | ||
- Always read the stat size from the file | ||
- Fix mutating passed-in `options` | ||
- deps: [email protected] | ||
|
||
4.11.2 / 2015-02-01 | ||
=================== | ||
|
||
|
@@ -678,6 +691,34 @@ | |
- `app.route()` - Proxy to the app's `Router#route()` method to create a new route | ||
- Router & Route - public API | ||
|
||
3.20.0 / 2015-02-18 | ||
=================== | ||
|
||
* Fix `"trust proxy"` setting to inherit when app is mounted | ||
* Generate `ETag`s for all request responses | ||
- No longer restricted to only responses for `GET` and `HEAD` requests | ||
* Use `content-type` to parse `Content-Type` headers | ||
* deps: [email protected] | ||
- Use `content-type` to parse `Content-Type` headers | ||
- deps: body-parser@~1.12.0 | ||
- deps: compression@~1.4.1 | ||
- deps: connect-timeout@~1.6.0 | ||
- deps: cookie-parser@~1.3.4 | ||
- deps: [email protected] | ||
- deps: csurf@~1.7.0 | ||
- deps: errorhandler@~1.3.4 | ||
- deps: express-session@~1.10.3 | ||
- deps: http-errors@~1.3.1 | ||
- deps: response-time@~2.3.0 | ||
- deps: serve-index@~1.6.2 | ||
- deps: serve-static@~1.9.1 | ||
- deps: type-is@~1.6.0 | ||
* deps: [email protected] | ||
* deps: [email protected] | ||
- Always read the stat size from the file | ||
- Fix mutating passed-in `options` | ||
- deps: [email protected] | ||
|
||
3.19.2 / 2015-02-01 | ||
=================== | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
(The MIT License) | ||
|
||
Copyright (c) 2009-2014 TJ Holowaychuk <[email protected]> | ||
Copyright (c) 2013-2014 Roman Shtylman <[email protected]> | ||
Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.