summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-05-24 14:41:43 -0700
committerisaacs <i@izs.me>2013-05-24 14:41:43 -0700
commit074e823a81f2b1a5c954b0d6dfc5e10a4bed96ab (patch)
treecaaccfb50a25cf339eb6880c917c9d26614066b3 /deps/npm/node_modules
parent1314c4aeeb96f59b010ca8fef2e8e86bbc1f398c (diff)
downloadnode-074e823a81f2b1a5c954b0d6dfc5e10a4bed96ab.tar.gz
npm: Upgrade to 1.2.23
Diffstat (limited to 'deps/npm/node_modules')
-rw-r--r--deps/npm/node_modules/npm-registry-client/lib/request.js5
-rw-r--r--deps/npm/node_modules/npm-registry-client/package.json10
2 files changed, 7 insertions, 8 deletions
diff --git a/deps/npm/node_modules/npm-registry-client/lib/request.js b/deps/npm/node_modules/npm-registry-client/lib/request.js
index 49e7a19d7..9b72bc457 100644
--- a/deps/npm/node_modules/npm-registry-client/lib/request.js
+++ b/deps/npm/node_modules/npm-registry-client/lib/request.js
@@ -222,7 +222,10 @@ function requestDone (method, where, cb) {
return function (er, response, data) {
if (er) return cb(er)
- this.log.http(response.statusCode, url.parse(where).href)
+ var urlObj = url.parse(where)
+ if (urlObj.auth)
+ urlObj.auth = '***'
+ this.log.http(response.statusCode, url.format(urlObj))
var parsed
diff --git a/deps/npm/node_modules/npm-registry-client/package.json b/deps/npm/node_modules/npm-registry-client/package.json
index eb2fac925..8a62919c5 100644
--- a/deps/npm/node_modules/npm-registry-client/package.json
+++ b/deps/npm/node_modules/npm-registry-client/package.json
@@ -6,7 +6,7 @@
},
"name": "npm-registry-client",
"description": "Client for the npm registry",
- "version": "0.2.23",
+ "version": "0.2.24",
"repository": {
"url": "git://github.com/isaacs/npm-registry-client"
},
@@ -38,10 +38,6 @@
"bugs": {
"url": "https://github.com/isaacs/npm-registry-client/issues"
},
- "_id": "npm-registry-client@0.2.23",
- "dist": {
- "shasum": "a320ab2b1d048b4f7b88e40bd86974ca322b4c24"
- },
- "_from": "npm-registry-client@0.2.23",
- "_resolved": "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-0.2.23.tgz"
+ "_id": "npm-registry-client@0.2.24",
+ "_from": "npm-registry-client@~0.2.22"
}