mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +00:00
[dist] Version bump. 0.4.0
This commit is contained in:
parent
6c42f04524
commit
cbb5fbccd0
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,5 +1,15 @@
|
||||
## ChangeLog for: node-http-proxy
|
||||
|
||||
## Version 0.4.0 - 3/20/2011
|
||||
- Update for node.js 0.4.0 (indexzero)
|
||||
- Remove pool dependency in favor of http.Agent (indexzero)
|
||||
- Store buffered data using `.buffer()` instead of on the HttpProxy instance (indexzero)
|
||||
- Change the ProxyTable to be a lookup table instead of actively proxying (indexzero)
|
||||
- Allow for pure host-only matching in ProxyTable (indexzero)
|
||||
- Use winston for logging (indexzero)
|
||||
- Improve tests with async setup and more coverage (indexzero)
|
||||
- Improve code documentation (indexzero)
|
||||
|
||||
### Version 0.3.1 - 11/22/2010
|
||||
- Added node-http-proxy binary script (indexzero)
|
||||
- Added experimental WebSocket support (indutny)
|
||||
|
||||
18
package.json
18
package.json
@ -1,26 +1,26 @@
|
||||
{
|
||||
"name": "http-proxy",
|
||||
"description": "A full-featured http reverse proxy for node.js",
|
||||
"version": "0.3.1",
|
||||
"version": "0.4.0",
|
||||
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
|
||||
"contributors": [
|
||||
{ "name": "Mikeal Rogers", "email": "mikeal.rogers@gmail.com" },
|
||||
{ "name": "Marak Squires", "email": "marak.squires@gmail.com" }
|
||||
{ "name": "Marak Squires", "email": "marak.squires@gmail.com" },
|
||||
{ "name": "Fedor Indutny", "email": "fedor.indutny@gmail.com" }
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "http://github.com/nodejitsu/node-http-proxy.git"
|
||||
"type": "git",
|
||||
"url": "http://github.com/nodejitsu/node-http-proxy.git"
|
||||
},
|
||||
"keywords": ["reverse", "proxy", "http"],
|
||||
"dependencies": {
|
||||
"colors": ">= 0.3.0",
|
||||
"optimist": ">= 0.0.6",
|
||||
"pool": ">= 0.4.1",
|
||||
"request": ">= 0.10.0",
|
||||
"vows": ">= 0.5.2"
|
||||
"optimist": ">= 0.1.6",
|
||||
"request": ">= 1.9.0",
|
||||
"vows": ">= 0.5.8"
|
||||
},
|
||||
"main": "./lib/node-http-proxy",
|
||||
"bin": { "node-http-proxy": "./bin/node-http-proxy" },
|
||||
"scripts": { "test": "vows test/*-test.js --spec" },
|
||||
"engines": { "node": ">= 0.3.0" }
|
||||
"engines": { "node": ">= 0.4.3" }
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user