Merge pull request #3777 from thelounge/renovate/uuid-7.x
Update dependency uuid to v7
This commit is contained in:
commit
381cfb7099
@ -64,7 +64,7 @@
|
|||||||
"socket.io": "2.3.0",
|
"socket.io": "2.3.0",
|
||||||
"tlds": "1.207.0",
|
"tlds": "1.207.0",
|
||||||
"ua-parser-js": "0.7.21",
|
"ua-parser-js": "0.7.21",
|
||||||
"uuid": "3.4.0",
|
"uuid": "7.0.0",
|
||||||
"web-push": "3.4.3",
|
"web-push": "3.4.3",
|
||||||
"yarn": "1.22.0"
|
"yarn": "1.22.0"
|
||||||
},
|
},
|
||||||
|
@ -9,7 +9,7 @@ const Msg = require("./models/msg");
|
|||||||
const Network = require("./models/network");
|
const Network = require("./models/network");
|
||||||
const Helper = require("./helper");
|
const Helper = require("./helper");
|
||||||
const UAParser = require("ua-parser-js");
|
const UAParser = require("ua-parser-js");
|
||||||
const uuidv4 = require("uuid/v4");
|
const {v4: uuidv4} = require("uuid");
|
||||||
const escapeRegExp = require("lodash/escapeRegExp");
|
const escapeRegExp = require("lodash/escapeRegExp");
|
||||||
const constants = require("../client/js/constants.js");
|
const constants = require("../client/js/constants.js");
|
||||||
const inputs = require("./plugins/inputs");
|
const inputs = require("./plugins/inputs");
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
const _ = require("lodash");
|
const _ = require("lodash");
|
||||||
const uuidv4 = require("uuid/v4");
|
const {v4: uuidv4} = require("uuid");
|
||||||
const IrcFramework = require("irc-framework");
|
const IrcFramework = require("irc-framework");
|
||||||
const Chan = require("./chan");
|
const Chan = require("./chan");
|
||||||
const Msg = require("./msg");
|
const Msg = require("./msg");
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
const Helper = require("../helper");
|
const Helper = require("../helper");
|
||||||
const busboy = require("busboy");
|
const busboy = require("busboy");
|
||||||
const uuidv4 = require("uuid/v4");
|
const {v4: uuidv4} = require("uuid");
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
const fsextra = require("fs-extra");
|
const fsextra = require("fs-extra");
|
||||||
const fs = require("fs");
|
const fs = require("fs");
|
||||||
|
@ -9504,10 +9504,10 @@ utils-merge@1.0.1:
|
|||||||
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
|
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
|
||||||
integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
|
integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
|
||||||
|
|
||||||
uuid@3.4.0:
|
uuid@7.0.0:
|
||||||
version "3.4.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
|
resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.0.tgz#1833d4b9ce50b732bfaa271f9cb74e974d303c79"
|
||||||
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
|
integrity sha512-LNUrNsXdI/fUsypJbWM8Jt4DgQdFAZh41p9C7WE9Cn+CULOEkoG2lgQyH68v3wnIy5K3fN4jdSt270K6IFA3MQ==
|
||||||
|
|
||||||
uuid@^3.3.2, uuid@^3.3.3:
|
uuid@^3.3.2, uuid@^3.3.3:
|
||||||
version "3.3.3"
|
version "3.3.3"
|
||||||
|
Loading…
Reference in New Issue
Block a user