diff --git a/CHANGELOG.md b/CHANGELOG.md index e2fcd52a9..0717c969e 100644 --- a/CHANGELOG.md +++ b/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) diff --git a/package.json b/package.json index 8b5eec42f..040a09592 100644 --- a/package.json +++ b/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 ", "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" } } \ No newline at end of file