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.1. Fix package.json
This commit is contained in:
parent
cbb5fbccd0
commit
0d1a3fe995
@ -1,5 +1,8 @@
|
|||||||
## ChangeLog for: node-http-proxy
|
## ChangeLog for: node-http-proxy
|
||||||
|
|
||||||
|
## Version 0.4.1 - 3/20/2011
|
||||||
|
- Include missing dependency in package.json (indexzero)
|
||||||
|
|
||||||
## Version 0.4.0 - 3/20/2011
|
## Version 0.4.0 - 3/20/2011
|
||||||
- Update for node.js 0.4.0 (indexzero)
|
- Update for node.js 0.4.0 (indexzero)
|
||||||
- Remove pool dependency in favor of http.Agent (indexzero)
|
- Remove pool dependency in favor of http.Agent (indexzero)
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
# node-http-proxy - v0.4.0
|
# node-http-proxy - v0.4.1
|
||||||
|
|
||||||
<img src = "http://i.imgur.com/dSSUX.png"/>
|
<img src = "http://i.imgur.com/dSSUX.png"/>
|
||||||
|
|
||||||
|
|||||||
@ -30,7 +30,7 @@
|
|||||||
<span class="nx">events</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">'events'</span><span class="p">),</span>
|
<span class="nx">events</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">'events'</span><span class="p">),</span>
|
||||||
<span class="nx">winston</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">'winston'</span><span class="p">),</span>
|
<span class="nx">winston</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">'winston'</span><span class="p">),</span>
|
||||||
<span class="nx">ProxyTable</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">'./proxy-table'</span><span class="p">).</span><span class="nx">ProxyTable</span><span class="p">,</span>
|
<span class="nx">ProxyTable</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">'./proxy-table'</span><span class="p">).</span><span class="nx">ProxyTable</span><span class="p">,</span>
|
||||||
<span class="nx">maxSockets</span> <span class="o">=</span> <span class="mi">100</span><span class="p">;</span></pre></div> </td> </tr> <tr id="section-2"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-2">¶</a> </div> <h3>Version 0.4.0</h3> </td> <td class="code"> <div class="highlight"><pre><span class="nx">exports</span><span class="p">.</span><span class="nx">version</span> <span class="o">=</span> <span class="p">[</span><span class="mi">0</span><span class="p">,</span> <span class="mi">4</span><span class="p">,</span> <span class="mi">0</span><span class="p">];</span></pre></div> </td> </tr> <tr id="section-3"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-3">¶</a> </div> <h3>function _getAgent (host, port)</h3>
|
<span class="nx">maxSockets</span> <span class="o">=</span> <span class="mi">100</span><span class="p">;</span></pre></div> </td> </tr> <tr id="section-2"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-2">¶</a> </div> <h3>Version 0.4.1</h3> </td> <td class="code"> <div class="highlight"><pre><span class="nx">exports</span><span class="p">.</span><span class="nx">version</span> <span class="o">=</span> <span class="p">[</span><span class="mi">0</span><span class="p">,</span> <span class="mi">4</span><span class="p">,</span> <span class="mi">1</span><span class="p">];</span></pre></div> </td> </tr> <tr id="section-3"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-3">¶</a> </div> <h3>function _getAgent (host, port)</h3>
|
||||||
|
|
||||||
<h4>@host {string} Host of the agent to get</h4>
|
<h4>@host {string} Host of the agent to get</h4>
|
||||||
|
|
||||||
|
|||||||
@ -33,9 +33,9 @@ var util = require('util'),
|
|||||||
maxSockets = 100;
|
maxSockets = 100;
|
||||||
|
|
||||||
//
|
//
|
||||||
// ### Version 0.4.0
|
// ### Version 0.4.1
|
||||||
//
|
//
|
||||||
exports.version = [0, 4, 0];
|
exports.version = [0, 4, 1];
|
||||||
|
|
||||||
//
|
//
|
||||||
// ### function _getAgent (host, port)
|
// ### function _getAgent (host, port)
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"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.4.0",
|
"version": "0.4.1",
|
||||||
"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" },
|
||||||
@ -17,7 +17,8 @@
|
|||||||
"colors": ">= 0.3.0",
|
"colors": ">= 0.3.0",
|
||||||
"optimist": ">= 0.1.6",
|
"optimist": ">= 0.1.6",
|
||||||
"request": ">= 1.9.0",
|
"request": ">= 1.9.0",
|
||||||
"vows": ">= 0.5.8"
|
"vows": ">= 0.5.8",
|
||||||
|
"winston": ">= 0.2.5"
|
||||||
},
|
},
|
||||||
"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" },
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user