Skip to content

Commit 6b9bc66

Browse files
prepare 3.3.3 release (#47)
1 parent a4c7783 commit 6b9bc66

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

package-lock.json

Lines changed: 15 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"dependencies": {
7474
"base64-js": "^1.3.0",
7575
"fast-deep-equal": "^2.0.1",
76-
"uuid": "^3.3.2"
76+
"uuid": "^8.0.0"
7777
},
7878
"repository": {
7979
"type": "git",

src/EventSender.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as errors from './errors';
22
import * as utils from './utils';
3-
import uuidv1 from 'uuid/v1';
3+
const { v1: uuidv1 } = require('uuid');
44

55
const MAX_URL_LENGTH = 2000;
66

src/UserValidator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import uuidv1 from 'uuid/v1';
1+
const { v1: uuidv1 } = require('uuid');
22

33
import * as errors from './errors';
44
import * as messages from './messages';

src/diagnosticEvents.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const uuidv1 = require('uuid/v1');
1+
const { v1: uuidv1 } = require('uuid');
22
// Note that in the diagnostic events spec, these IDs are to be generated with UUID v4. However,
33
// in JS we were already using v1 for unique user keys, so to avoid bringing in two packages we
44
// will use v1 here as well.

0 commit comments

Comments
 (0)