Skip to content

Commit

Permalink
Merge pull request #6684 from concourse/dependabot/npm_and_yarn/web/w…
Browse files Browse the repository at this point in the history
…ats/uuid-8.3.2

Bump uuid from 3.4.0 to 8.3.2 in /web/wats
  • Loading branch information
chenbh committed Mar 23, 2021
2 parents bde0371 + d18009e commit 6cc41aa
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
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 @@ -2680,10 +2680,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

0 comments on commit 6cc41aa

Please sign in to comment.