Skip to content

Commit cbb5fbc

Browse files
committed
[dist] Version bump. 0.4.0
1 parent 6c42f04 commit cbb5fbc

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## ChangeLog for: node-http-proxy
22

3+
## Version 0.4.0 - 3/20/2011
4+
- Update for node.js 0.4.0 (indexzero)
5+
- Remove pool dependency in favor of http.Agent (indexzero)
6+
- Store buffered data using `.buffer()` instead of on the HttpProxy instance (indexzero)
7+
- Change the ProxyTable to be a lookup table instead of actively proxying (indexzero)
8+
- Allow for pure host-only matching in ProxyTable (indexzero)
9+
- Use winston for logging (indexzero)
10+
- Improve tests with async setup and more coverage (indexzero)
11+
- Improve code documentation (indexzero)
12+
313
### Version 0.3.1 - 11/22/2010
414
- Added node-http-proxy binary script (indexzero)
515
- Added experimental WebSocket support (indutny)

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
22
"name": "http-proxy",
33
"description": "A full-featured http reverse proxy for node.js",
4-
"version": "0.3.1",
4+
"version": "0.4.0",
55
"author": "Charlie Robbins <[email protected]>",
66
"contributors": [
77
{ "name": "Mikeal Rogers", "email": "[email protected]" },
8-
{ "name": "Marak Squires", "email": "[email protected]" }
8+
{ "name": "Marak Squires", "email": "[email protected]" },
9+
{ "name": "Fedor Indutny", "email": "[email protected]" }
910
],
1011
"repository": {
11-
"type": "git",
12-
"url": "http://github.com/nodejitsu/node-http-proxy.git"
12+
"type": "git",
13+
"url": "http://github.com/nodejitsu/node-http-proxy.git"
1314
},
1415
"keywords": ["reverse", "proxy", "http"],
1516
"dependencies": {
1617
"colors": ">= 0.3.0",
17-
"optimist": ">= 0.0.6",
18-
"pool": ">= 0.4.1",
19-
"request": ">= 0.10.0",
20-
"vows": ">= 0.5.2"
18+
"optimist": ">= 0.1.6",
19+
"request": ">= 1.9.0",
20+
"vows": ">= 0.5.8"
2121
},
2222
"main": "./lib/node-http-proxy",
2323
"bin": { "node-http-proxy": "./bin/node-http-proxy" },
2424
"scripts": { "test": "vows test/*-test.js --spec" },
25-
"engines": { "node": ">= 0.3.0" }
25+
"engines": { "node": ">= 0.4.3" }
2626
}

0 commit comments

Comments
 (0)