Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency uuid to version .x 🌟 #8002

Merged
merged 3 commits into from Jul 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/server/lib/automation/index.js
@@ -1,5 +1,5 @@
const _ = require('lodash')
const uuid = require('uuid')
const { v4: uuidv4 } = require('uuid')
const Promise = require('bluebird')
const Cookies = require('./cookies')
const Screenshot = require('./screenshot')
Expand Down Expand Up @@ -43,7 +43,7 @@ module.exports = {

const requestAutomationResponse = (message, data, fn) => {
return new Promise((resolve, reject) => {
const id = uuid.v4()
const id = uuidv4()

requests[id] = function (obj) {
// normalize the error from automation responses
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Expand Up @@ -115,7 +115,7 @@
"underscore": "1.9.1",
"underscore.string": "3.3.5",
"url-parse": "1.4.7",
"uuid": "3.4.0",
"uuid": "7.0.3",
"which": "2.0.2",
"widest-line": "3.1.0",
"winston": "2.4.4"
Expand Down
7 changes: 6 additions & 1 deletion yarn.lock
Expand Up @@ -25246,7 +25246,12 @@ uuid@3.3.2:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==

uuid@3.4.0, uuid@^3.0.0, uuid@^3.0.1, uuid@^3.1.0, uuid@^3.3.2, uuid@^3.3.3:
uuid@7.0.3:
version "7.0.3"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b"
integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==

uuid@^3.0.0, uuid@^3.0.1, uuid@^3.1.0, uuid@^3.3.2, uuid@^3.3.3:
version "3.4.0"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
Expand Down