Skip to content

Commit

Permalink
FIX deprecated node-uuid@1.4.7 (#913)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuozumijp authored and jsdevel committed Jan 19, 2017
1 parent 54d20e8 commit 00ec5f1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ node_js:
- 0.10
- 0.12
- 4.0
- iojs
- 6.9.4
- 7.4.0
env:
- CXX=g++-4.8
addons:
Expand Down
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var HttpClient = require('./http'),
findPrefix = require('./utils').findPrefix,
_ = require('lodash'),
concatStream = require('concat-stream'),
uuid = require('node-uuid');
uuid = require('uuid');

var Client = function(wsdl, endpoint, options) {
events.EventEmitter.call(this);
Expand Down
2 changes: 1 addition & 1 deletion lib/security/WSSecurityCert.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var fs = require('fs');
var path = require('path');
var ejs = require('ejs');
var SignedXml = require('xml-crypto').SignedXml;
var uuid = require('node-uuid');
var uuid = require('uuid');
var wsseSecurityHeaderTemplate = ejs.compile(fs.readFileSync(path.join(__dirname, 'templates', 'wsse-security-header.ejs')).toString());
var wsseSecurityTokenTemplate = ejs.compile(fs.readFileSync(path.join(__dirname, 'templates', 'wsse-security-token.ejs')).toString());

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"ejs": "~2.5.5",
"finalhandler": "^0.5.0",
"lodash": "^3.10.1",
"node-uuid": "~1.4.3",
"optional": "^0.1.3",
"request": ">=2.9.0",
"sax": ">=0.6",
"selectn": "^0.9.6",
"serve-static": "^1.11.1",
"strip-bom": "~0.3.1",
"uuid": "^3.0.1",
"xml-crypto": "~0.8.0"
},
"optionalDependencies": {
Expand All @@ -37,7 +37,7 @@
"toc": "./node_modules/.bin/doctoc Readme.md --github --maxlevel 3",
"pretest": "jshint index.js lib test",
"cover": "istanbul cover _mocha -- --timeout 10000 test/*-test.js test/security/*.js",
"coveralls": "cat ./coverage/lcov.info | coveralls -v",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
"test": "mocha --timeout 10000 test/*-test.js test/security/*.js"
},
"keywords": [
Expand Down

0 comments on commit 00ec5f1

Please # to comment.