Skip to content

Commit 703e152

Browse files
committed
chore(uuid): replace node-uuid with uuid
BREAKING CHANGE: drop node v0.10 support
1 parent 60dd5d0 commit 703e152

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ machine:
22
node:
33
version: 4.4.4
44
environment:
5-
NODE_VERSIONS: 0.10 0.12 4 5 6 7
5+
NODE_VERSIONS: 0.12 4 5 6 7
66
RELEASE_REPONAME: trace-nodejs
77
RELEASE_BRANCH: master
88

lib/agent/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var EventEmitter = require('events').EventEmitter
22

33
var debug = require('debug')('risingstack/trace')
4-
var uuid = require('node-uuid')
4+
var uuid = require('uuid')
55
var cls = require('continuation-local-storage')
66
var microtime = require('../optionalDependencies/microtime')
77

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
"lodash.get": "4.4.2",
5858
"lodash.isnumber": "3.0.3",
5959
"lodash.uniq": "4.5.0",
60-
"node-uuid": "1.4.7",
6160
"qs": "6.3.0",
6261
"semver": "5.3.0",
63-
"sync-request": "3.0.1"
62+
"sync-request": "3.0.1",
63+
"uuid": "^3.0.1"
6464
},
6565
"optionalDependencies": {
6666
"microtime": "2.1.2",

0 commit comments

Comments
 (0)