We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b1912b commit 790bc8bCopy full SHA for 790bc8b
secret-manager/package.json
@@ -20,6 +20,6 @@
20
"c8": "^7.0.0",
21
"chai": "^4.2.0",
22
"mocha": "^7.0.0",
23
- "uuid": "^3.3.3"
+ "uuid": "^8.0.0"
24
}
25
secret-manager/test/secretmanager.test.js
@@ -16,13 +16,13 @@
16
17
const {assert} = require('chai');
18
const cp = require('child_process');
19
-const uuidv4 = require('uuid/v4');
+const {v4} = require('uuid');
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');
const client = new SecretManagerServiceClient();
const projectId = process.env.GCLOUD_PROJECT;
-const secretId = uuidv4();
+const secretId = v4();
26
const payload = 'my super secret data';
27
const iamUser = 'user:[email protected]';
28
0 commit comments