Merge pull request #3777 from thelounge/renovate/uuid-7.x

Update dependency uuid to v7
This commit is contained in:
Pavel Djundik 2020-02-25 10:23:38 +02:00 committed by GitHub
commit 381cfb7099
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions

View file

@ -64,7 +64,7 @@
"socket.io": "2.3.0",
"tlds": "1.207.0",
"ua-parser-js": "0.7.21",
"uuid": "3.4.0",
"uuid": "7.0.0",
"web-push": "3.4.3",
"yarn": "1.22.0"
},

View file

@ -9,7 +9,7 @@ const Msg = require("./models/msg");
const Network = require("./models/network");
const Helper = require("./helper");
const UAParser = require("ua-parser-js");
const uuidv4 = require("uuid/v4");
const {v4: uuidv4} = require("uuid");
const escapeRegExp = require("lodash/escapeRegExp");
const constants = require("../client/js/constants.js");
const inputs = require("./plugins/inputs");

View file

@ -1,7 +1,7 @@
"use strict";
const _ = require("lodash");
const uuidv4 = require("uuid/v4");
const {v4: uuidv4} = require("uuid");
const IrcFramework = require("irc-framework");
const Chan = require("./chan");
const Msg = require("./msg");

View file

@ -2,7 +2,7 @@
const Helper = require("../helper");
const busboy = require("busboy");
const uuidv4 = require("uuid/v4");
const {v4: uuidv4} = require("uuid");
const path = require("path");
const fsextra = require("fs-extra");
const fs = require("fs");

View file

@ -9504,10 +9504,10 @@ utils-merge@1.0.1:
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
uuid@3.4.0:
version "3.4.0"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
uuid@7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.0.tgz#1833d4b9ce50b732bfaa271f9cb74e974d303c79"
integrity sha512-LNUrNsXdI/fUsypJbWM8Jt4DgQdFAZh41p9C7WE9Cn+CULOEkoG2lgQyH68v3wnIy5K3fN4jdSt270K6IFA3MQ==
uuid@^3.3.2, uuid@^3.3.3:
version "3.3.3"