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

Bump uuid from 3.4.0 to 8.3.2 in /web/wats #6684

Merged
merged 2 commits into from Mar 23, 2021
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
2 changes: 1 addition & 1 deletion web/wats/helpers/fly.js
@@ -1,7 +1,7 @@
'use strict';

const { exec, spawn } = require('child-process-promise');
const uuidv4 = require('uuid/v4');
const { v4: uuidv4 } = require('uuid');
const tmp = require('tmp-promise');

class Fly {
Expand Down
2 changes: 1 addition & 1 deletion web/wats/helpers/suite.js
@@ -1,6 +1,6 @@
const Fly = require('./fly');
const Web = require('./web');
const uuidv4 = require('uuid/v4');
const { v4: uuidv4 } = require('uuid');

// silence warning caused by starting many puppeteer
process.setMaxListeners(Infinity);
Expand Down
2 changes: 1 addition & 1 deletion web/wats/helpers/web.js
Expand Up @@ -2,7 +2,7 @@

const puppeteer = require('puppeteer');
const { exec } = require('child-process-promise');
const uuidv4 = require('uuid/v4');
const { v4: uuidv4 } = require('uuid');

class Web {
constructor(url, username, password) {
Expand Down
2 changes: 1 addition & 1 deletion web/wats/package.json
Expand Up @@ -9,7 +9,7 @@
"color": "^3.1.2",
"puppeteer": "^8.0.0",
"tmp-promise": "^3.0.2",
"uuid": "^3.3.2"
"uuid": "^8.3.2"
},
"devDependencies": {},
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions web/wats/yarn.lock
Expand Up @@ -2666,10 +2666,10 @@ util-deprecate@^1.0.1:
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=

uuid@^3.3.2:
version "3.4.0"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
uuid@^8.3.2:
version "8.3.2"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==

validate-npm-package-license@^3.0.1:
version "3.0.4"
Expand Down