[dist] Version bump. 0.4.0

This commit is contained in:
indexzero 2011-03-20 13:32:09 -05:00
parent 6c42f04524
commit cbb5fbccd0
2 changed files with 19 additions and 9 deletions

View File

@ -1,5 +1,15 @@
## ChangeLog for: node-http-proxy ## 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 ### Version 0.3.1 - 11/22/2010
- Added node-http-proxy binary script (indexzero) - Added node-http-proxy binary script (indexzero)
- Added experimental WebSocket support (indutny) - Added experimental WebSocket support (indutny)

View File

@ -1,11 +1,12 @@
{ {
"name": "http-proxy", "name": "http-proxy",
"description": "A full-featured http reverse proxy for node.js", "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>", "author": "Charlie Robbins <charlie.robbins@gmail.com>",
"contributors": [ "contributors": [
{ "name": "Mikeal Rogers", "email": "mikeal.rogers@gmail.com" }, { "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": { "repository": {
"type": "git", "type": "git",
@ -14,13 +15,12 @@
"keywords": ["reverse", "proxy", "http"], "keywords": ["reverse", "proxy", "http"],
"dependencies": { "dependencies": {
"colors": ">= 0.3.0", "colors": ">= 0.3.0",
"optimist": ">= 0.0.6", "optimist": ">= 0.1.6",
"pool": ">= 0.4.1", "request": ">= 1.9.0",
"request": ">= 0.10.0", "vows": ">= 0.5.8"
"vows": ">= 0.5.2"
}, },
"main": "./lib/node-http-proxy", "main": "./lib/node-http-proxy",
"bin": { "node-http-proxy": "./bin/node-http-proxy" }, "bin": { "node-http-proxy": "./bin/node-http-proxy" },
"scripts": { "test": "vows test/*-test.js --spec" }, "scripts": { "test": "vows test/*-test.js --spec" },
"engines": { "node": ">= 0.3.0" } "engines": { "node": ">= 0.4.3" }
} }