Skip to content

Commit 990f1f1

Browse files
authored
Merge branch 'main' into feat-bucket-ip-filter
2 parents 9fc6627 + 888d89c commit 990f1f1

42 files changed

Lines changed: 242 additions & 134 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

dialogflow-cx/test/detect-intent-sentiment-analysis-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe('detect intent with sentiment analysis', () => {
2929

3030
it('should detect negative sentiment score of user query', async () => {
3131
const output = exec(
32-
`${cmd} ${projectId} ${location} ${agentId} 'I am not happy' ${languageCode}`
32+
`${cmd} ${projectId} ${location} ${agentId} 'I had an accident and I lost my new car' ${languageCode}`
3333
);
3434
assert.include(output, 'negative');
3535
});

dialogflow-cx/test/list_testcase-results.test.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ describe('Test filtering results', async () => {
2929
const projectId =
3030
process.env.AGENT_PROJECT_ID || (await agentClient.getProjectId());
3131

32-
it('should return filtered test results', async () => {
32+
it('should return filtered test results', function () {
33+
if (!agentId || !testId) {
34+
this.skip();
35+
}
3336
const output = exec(`${cmd} ${projectId} ${agentId} ${testId} ${location}`);
3437
assert.include(output, testId);
3538
});

document-ai/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "Apache-2.0",
55
"author": "Google LLC",
66
"engines": {
7-
"node": ">=16.0.0"
7+
"node": ">=20.0.0"
88
},
99
"files": [
1010
"*.js"
@@ -15,12 +15,12 @@
1515
"dependencies": {
1616
"@google-cloud/documentai": "^8.0.0",
1717
"@google-cloud/storage": "^7.0.0",
18-
"p-queue": "^8.0.0"
18+
"p-queue": "^6.6.2"
1919
},
2020
"devDependencies": {
2121
"c8": "^10.0.0",
2222
"chai": "^4.5.0",
2323
"mocha": "^10.0.0",
24-
"uuid": "^10.0.0"
24+
"uuid": "^11.1.1"
2525
}
2626
}

eventarc/generic/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1111
},
1212
"engines": {
13-
"node": ">= 12.0.0"
13+
"node": ">=20.0.0"
1414
},
1515
"scripts": {
1616
"start": "node index.js",
@@ -26,6 +26,6 @@
2626
"mocha": "^10.0.0",
2727
"sinon": "^18.0.0",
2828
"supertest": "^7.0.0",
29-
"uuid": "^10.0.0"
29+
"uuid": "^11.1.1"
3030
}
3131
}

functions/firebase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"proxyquire": "^2.1.0",
1717
"sinon": "^18.0.0",
1818
"supertest": "^7.0.0",
19-
"uuid": "^10.0.0"
19+
"uuid": "^11.1.1"
2020
},
2121
"dependencies": {
2222
"@google-cloud/firestore": "^7.0.0"

functions/helloworld/helloGCS/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"moment": "^2.24.0",
2929
"promise-retry": "^2.0.0",
3030
"sinon": "^18.0.0",
31-
"uuid": "^10.0.0",
31+
"uuid": "^11.1.1",
3232
"wait-port": "^1.0.4"
3333
}
3434
}

functions/helloworld/helloPubSub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"moment": "^2.29.4",
2929
"promise-retry": "^2.0.0",
3030
"sinon": "^18.0.0",
31-
"uuid": "^10.0.0",
31+
"uuid": "^11.1.1",
3232
"wait-port": "^1.0.4"
3333
}
3434
}

functions/helloworld/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"promise-retry": "^2.0.0",
2626
"sinon": "^18.0.0",
2727
"supertest": "^7.0.0",
28-
"uuid": "^10.0.0",
28+
"uuid": "^11.1.1",
2929
"wait-port": "^1.0.4"
3030
}
3131
}

functions/v2/autoLabelInstance/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"p-retry": "^6.0.0",
2626
"sinon": "^18.0.0",
2727
"supertest": "^7.0.0",
28-
"uuid": "^10.0.0"
28+
"uuid": "^11.1.1"
2929
}
3030
}

functions/v2/helloPubSub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
"mocha": "^10.0.0",
2323
"sinon": "^18.0.0",
2424
"supertest": "^7.0.0",
25-
"uuid": "^10.0.0"
25+
"uuid": "^11.1.1"
2626
}
2727
}

0 commit comments

Comments
 (0)